Josef Moravec
7f6f98e00c
Test plan: 0) Apply the patch 1) Install all affected languages: de-DE, es-ES, fr-CA and pl-PL 2) Remove and recreate Koha database 3) Go through web installer in English and don't forgot to load sample Z39.50 servers 4) Go to Administration -> Z39.50/SRU Servers and confirm the sample servers are here, but columbia.edu is not here 5) Repeat 2-4 for other languages: de-DE, es-ES, fr-CA and pl-PL Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
11 lines
730 B
SQL
11 lines
730 B
SQL
INSERT INTO z3950servers
|
|
(host, port, db, userid, password, servername, checked, rank, syntax, encoding,recordtype) VALUES
|
|
('lx2.loc.gov',210,'LCDB','','','LIBRARY OF CONGRESS',1,1,'USMARC','utf8','biblio'),
|
|
('lx2.loc.gov',210,'NAF','','','LIBRARY OF CONGRESS NAMES',1,1,'USMARC','utf8','authority'),
|
|
('lx2.loc.gov',210,'SAF','','','LIBRARY OF CONGRESS SUBJECTS',1,2,'USMARC','utf8','authority');
|
|
|
|
#Insert SRU server
|
|
INSERT INTO z3950servers
|
|
(host, port, db, servername, syntax, encoding, servertype, sru_fields)
|
|
VALUES
|
|
('lx2.loc.gov',210,'LCDB','LIBRARY OF CONGRESS SRU','USMARC','utf8','sru','title=dc.title,isbn=bath.isbn,srchany=cql.anywhere,author=dc.author,issn=bath.issn,subject=dc.subject,stdid=bath.standardIdentifier');
|