From: dbs Date: Wed, 4 Mar 2009 03:00:35 +0000 (+0000) Subject: Add ‡biblios.net as one of the default Z39.50 targets X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9a032c912028ee3cdc62c40295c42604c235dba8;p=evergreen%2Ftadl.git Add ‡biblios.net as one of the default Z39.50 targets git-svn-id: svn://svn.open-ils.org/ILS/trunk@12393 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/examples/opensrf.xml.example b/Open-ILS/examples/opensrf.xml.example index ea485d2de9..2fb162e89b 100644 --- a/Open-ILS/examples/opensrf.xml.example +++ b/Open-ILS/examples/opensrf.xml.example @@ -136,8 +136,33 @@ vim:et:ts=4:sw=4: - oclc + biblios + + + ‡biblios.net + z3950.biblios.net + 210 + bibliographic + + FI + + + + usmarc + + + 121 + 76 + 91 + 10036 + <code>4</code><format>6</format> + 81 + 10186 + 311 + 10011 + + diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 8e9188b435..4f08da96ff 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -744,7 +744,9 @@ INSERT INTO config.i18n_locale (code,marc_code,name,description) INSERT INTO config.z3950_source (name, label, host, port, db, auth) VALUES ('loc', oils_i18n_gettext('loc', 'Library of Congress', 'czs', 'label'), 'z3950.loc.gov', 7090, 'Voyager', FALSE); INSERT INTO config.z3950_source (name, label, host, port, db, auth) - VALUES ('oclc', oils_i18n_gettext('loc', 'OCLC', 'czs', 'label'), 'zcat.oclc.org', 210, 'OLUCWorldCat', TRUE); + VALUES ('oclc', oils_i18n_gettext('oclc', 'OCLC', 'czs', 'label'), 'zcat.oclc.org', 210, 'OLUCWorldCat', TRUE); +INSERT INTO config.z3950_source (name, label, host, port, db, auth) + VALUES ('biblios', oils_i18n_gettext('‡biblios.net', 'czs', 'label'), 'z3950.biblios.net', 210, 'bibliographic', FALSE); INSERT INTO config.z3950_attr (id, source, name, label, code, format) VALUES (1, 'loc','tcn', oils_i18n_gettext(1, 'Title Control Number', 'cza', 'label'), 12, 1);