[Koha-cvs] CVS: koha/updater updatedatabase,1.24,1.25

Paul POULAIN tipaul at users.sourceforge.net
Tue Nov 12 17:44:40 CET 2002


Update of /cvsroot/koha/koha/updater
In directory usw-pr-cvs1:/tmp/cvs-serv7215/updater

Modified Files:
	updatedatabase 
Log Message:
road to 1.3.2 :
* many bugfixes
* adding value_builder : you can map a subfield in the marc_subfield_structure to a sub stored in "value_builder" directory. In this directory you can create screen used to build values with any method. In this commit is a 1st draft of the builder for 100$a unimarc french subfield, which is composed of 35 digits, with 12 differents values (only the 4th first are provided for instance)



Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** updatedatabase	30 Oct 2002 14:00:23 -0000	1.24
--- updatedatabase	12 Nov 2002 16:44:38 -0000	1.25
***************
*** 100,109 ****
  								ip char(18) NOT NULL default '',
  								url text NOT NULL default ''  )",
! 	bibliothesaurus=> "( code BIGINT not null AUTO_INCREMENT,
! 						freelib CHAR (255) not null ,
! 						stdlib CHAR (255) not null ,
! 						type CHAR (80) not null ,
! 						PRIMARY KEY (code),
! 						INDEX (freelib),index(stdlib),index(type) )",
  	marc_biblio => "(
  						bibid bigint(20) unsigned NOT NULL auto_increment,
--- 100,116 ----
  								ip char(18) NOT NULL default '',
  								url text NOT NULL default ''  )",
! 	bibliothesaurus=> "( CREATE TABLE bibliothesaurus (
! 							id bigint(20) NOT NULL auto_increment,
! 							freelib char(255) NOT NULL default '',
! 							stdlib char(255) NOT NULL default '',
! 							category char(10) NOT NULL default '',
! 							level tinyint(4) NOT NULL default '1',
! 							hierarchy char(80) NOT NULL default '',
! 							PRIMARY KEY  (id),
! 							KEY freelib (freelib),
! 							KEY stdlib (stdlib),
! 							KEY category (category),
! 							KEY hierarchy (hierarchy)
! 							)",
  	marc_biblio => "(
  						bibid bigint(20) unsigned NOT NULL auto_increment,
***************
*** 131,134 ****
--- 138,143 ----
  						tab tinyint(1),
  						authorised_value char(10) default NULL,
+ 						thesaurus_category char(10) default NULL,
+ 						value_builder char(80) NOT NULL default '',
  						PRIMARY KEY  (tagfield,tagsubfield),
  						KEY kohafield (kohafield),
***************
*** 230,234 ****
  		'template' => ['default','template default name'],
  		'autoBarcode' => ['0','1 or else. If 1, Barcode is auto-calculated'],
! 		'insecure' => ['no','if YES, no auth at all is needed. Be careful if you set this to yes !']
  		  );
  
--- 239,244 ----
  		'template' => ['default','template default name'],
  		'autoBarcode' => ['0','1 or else. If 1, Barcode is auto-calculated'],
! 		'insecure' => ['no','if YES, no auth at all is needed. Be careful if you set this to yes !'],
! 		'authoritysep' => ['--','the separator used in authority/thesaurus. Usually --']
  		  );
  
***************
*** 422,425 ****
--- 432,440 ----
  
  # $Log$
+ # Revision 1.25  2002/11/12 16:44:38  tipaul
+ # road to 1.3.2 :
+ # * many bugfixes
+ # * adding value_builder : you can map a subfield in the marc_subfield_structure to a sub stored in "value_builder" directory. In this directory you can create screen used to build values with any method. In this commit is a 1st draft of the builder for 100$a unimarc french subfield, which is composed of 35 digits, with 12 differents values (only the 4th first are provided for instance)
+ #
  # Revision 1.24  2002/10/30 14:00:23  arensb
  # (bug fix): Fixed typo.





More information about the Koha-cvs mailing list