koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/updater updatedatabase,1.103,1.104


From: Waylon Robertson
Subject: [Koha-cvs] CVS: koha/updater updatedatabase,1.103,1.104
Date: Wed, 01 Jun 2005 14:35:08 -0700

Update of /cvsroot/koha/koha/updater
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3674

Modified Files:
        updatedatabase 
Log Message:
New Feature: catalogsearch() has a new parameter, $sqlstring. A developer puts 
into it whatever they want to tack onto the end of the where statement. See 
usage in opac-search.pl

Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -r1.103 -r1.104
*** updatedatabase      4 May 2005 09:04:52 -0000       1.103
--- updatedatabase      1 Jun 2005 21:35:05 -0000       1.104
***************
*** 13,17 ****
  
  # NOTE:  If you do something more than once in here, make it table driven.
! 
  use strict;
  
--- 13,17 ----
  
  # NOTE:  If you do something more than once in here, make it table driven.
! use lib "/usr/koha200pre2/modules";
  use strict;
  
***************
*** 369,372 ****
--- 369,387 ----
                                                        KEY biblionumber 
(biblionumber)
                                                )",
+     categorytable       => "(categorycode char(5) NOT NULL default '',
+                              description text default '',
+                              itemtypecodes text default '',
+                              PRIMARY KEY (categorycode)
+                             )",
+     subcategorytable       => "(subcategorycode char(5) NOT NULL default '',
+                              description text default '',
+                              itemtypecodes text default '',
+                              PRIMARY KEY (subcategorycode)
+                             )",
+     mediatypetable       => "(mediatypecode char(5) NOT NULL default '',
+                              description text default '',
+                              itemtypecodes text default '',
+                              PRIMARY KEY (mediatypecode)
+                             )",
  );
  
***************
*** 1433,1436 ****
--- 1448,1454 ----
  
  # $Log$
+ # Revision 1.104  2005/06/01 21:35:05  genjimoto
+ # New Feature: catalogsearch() has a new parameter, $sqlstring. A developer 
puts into it whatever they want to tack onto the end of the where statement. 
See usage in opac-search.pl
+ #
  # Revision 1.103  2005/05/04 09:04:52  tipaul
  # synch'ing 2.2 and head




reply via email to

[Prev in Thread] Current Thread [Next in Thread]