From 171f7ed912cc383bd1091bfbade8ec83205629b7 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 20 May 2008 11:09:16 -0500 Subject: [PATCH] various bugfixes for MARC21 Z39.50 targets [1] Added MARC-8 as an encoding choice on the target administration page. [2] Fixed TMPL coding errors. [3] Set the correct encoding (as it happens, 'MARC-8') for all of the English sample Z39.50 targets. Documentation note: due to this patch and the ones from Frederic, screenshots of the page for editing a Z39.50 target should be redone. Signed-off-by: Joshua Ferraro --- .../mysql/en/optional/sample_z3950_servers.sql | 12 +-- .../prog/en/modules/admin/z3950servers.tmpl | 119 +++++++++++---------- 2 files changed, 68 insertions(+), 63 deletions(-) diff --git a/installer/data/mysql/en/optional/sample_z3950_servers.sql b/installer/data/mysql/en/optional/sample_z3950_servers.sql index ad3b03daf3..58e440070b 100644 --- a/installer/data/mysql/en/optional/sample_z3950_servers.sql +++ b/installer/data/mysql/en/optional/sample_z3950_servers.sql @@ -1,7 +1,7 @@ INSERT INTO `z3950servers` -(`host`, `port`, `db`, `userid`, `password`, `name`, `id`, `checked`, `rank`, `syntax`) VALUES -('z3950.loc.gov',7090,'Voyager','','','LIBRARY OF CONGRESS',1,1,1,'USMARC'), -('bobcat.nyu.edu',210,'advance','','','NEW YORK UNIVERSITY LIBRARIES',5,0,0,'USMARC'), -('clio-db.cc.columbia.edu',7090,'voyager','','','COLUMBIA UNIVERSITY',6,0,0,'USMARC'), -('catnyp.nypl.org',210,'innopac','','','NEW YORK PUBLIC LIBRARY',7,0,0,'USMARC'), -('siris-libraries.si.edu',210,'Default','','','SMITHSONIAN INSTITUTION LIBRARIES',10,0,0,'USMARC'); +(`host`, `port`, `db`, `userid`, `password`, `name`, `id`, `checked`, `rank`, `syntax`, `encoding`) VALUES +('z3950.loc.gov',7090,'Voyager','','','LIBRARY OF CONGRESS',1,1,1,'USMARC','MARC-8'), +('bobcat.nyu.edu',210,'advance','','','NEW YORK UNIVERSITY LIBRARIES',5,0,0,'USMARC','MARC-8'), +('clio-db.cc.columbia.edu',7090,'voyager','','','COLUMBIA UNIVERSITY',6,0,0,'USMARC','MARC-8'), +('catnyp.nypl.org',210,'innopac','','','NEW YORK PUBLIC LIBRARY',7,0,0,'USMARC','MARC-8'), +('siris-libraries.si.edu',210,'Default','','','SMITHSONIAN INSTITUTION LIBRARIES',10,0,0,'USMARC','MARC-8'); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tmpl index cb8c6da19e..ed9dc9e156 100755 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tmpl @@ -114,106 +114,111 @@
  • -- 2.11.4.GIT