[Koha-cvs] koha/C4 Context.pm [dev_week]

paul poulain paul at koha-fr.org
Fri Aug 4 17:24:07 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	paul poulain <tipaul>	06/08/04 15:24:07

Modified files:
	C4             : Context.pm 

Log message:
	1st commit on dev_week :
	
	the cql.properties & ccl.properties are in $KOHA/zebraplugin/etc directories.
	zebraplugin was missing.
	
	it would  probably be better if the directory were in a koha conf preference.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Context.pm?cvsroot=koha&only_with_tag=dev_week&r1=1.18.2.5.2.10&r2=1.18.2.5.2.11

Patches:
Index: Context.pm
===================================================================
RCS file: /sources/koha/koha/C4/Context.pm,v
retrieving revision 1.18.2.5.2.10
retrieving revision 1.18.2.5.2.11
diff -u -b -r1.18.2.5.2.10 -r1.18.2.5.2.11
--- Context.pm	21 Jul 2006 17:50:51 -0000	1.18.2.5.2.10
+++ Context.pm	4 Aug 2006 15:24:06 -0000	1.18.2.5.2.11
@@ -15,7 +15,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Context.pm,v 1.18.2.5.2.10 2006/07/21 17:50:51 kados Exp $
+# $Id: Context.pm,v 1.18.2.5.2.11 2006/08/04 15:24:06 tipaul Exp $
 package C4::Context;
 use strict;
 use DBI;
@@ -25,7 +25,7 @@
 	qw($context),
 	qw(@context_stack);
 
-$VERSION = do { my @v = '$Revision: 1.18.2.5.2.10 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.18.2.5.2.11 $' =~ /\d+/g;
 		shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
 
 =head1 NAME
@@ -435,8 +435,8 @@
 		$Zconn=new ZOOM::Connection($context->config("hostname"),$port,databaseName=>$context->{"config"}->{$server},
 		preferredRecordSyntax => "USmarc",elementSetName=> "F");
 
-        $Zconn->option(cqlfile=> $context->{"config"}->{"intranetdir"}."/etc/cql.properties");
-        $Zconn->option(cclfile=> $context->{"config"}->{"intranetdir"}."/etc/ccl.properties");
+        $Zconn->option(cqlfile=> $context->{"config"}->{"intranetdir"}."/zebraplugin/etc/cql.properties");
+        $Zconn->option(cclfile=> $context->{"config"}->{"intranetdir"}."/zebraplugin/etc/ccl.properties");
 	};
 	if ($@){
 ###Uncomment the lines below if you want to automatically restart your zebra if its stop
@@ -814,6 +814,14 @@
 
 =cut
 # $Log: Context.pm,v $
+# Revision 1.18.2.5.2.11  2006/08/04 15:24:06  tipaul
+# 1st commit on dev_week :
+#
+# the cql.properties & ccl.properties are in $KOHA/zebraplugin/etc directories.
+# zebraplugin was missing.
+#
+# it would  probably be better if the directory were in a koha conf preference.
+#
 # Revision 1.18.2.5.2.10  2006/07/21 17:50:51  kados
 # moving the *.properties files to intranetdir/etc dir
 #





More information about the Koha-cvs mailing list