View | Details | Raw Unified | Return to bug 11297
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 2320-2326 CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u Link Here
2320
  `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2320
  `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2321
  `sru_fields` mediumtext default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2321
  `sru_fields` mediumtext default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2322
  `add_xslt` mediumtext default NULL, -- zero or more paths to XSLT files to be processed on the search results
2322
  `add_xslt` mediumtext default NULL, -- zero or more paths to XSLT files to be processed on the search results
2323
  `attributes` VARCHAR(255) default NULL, -- additionnal attributes passed to PQF queries
2323
  `attributes` VARCHAR(255) default NULL, -- additional attributes passed to PQF queries
2324
  PRIMARY KEY  (`id`)
2324
  PRIMARY KEY  (`id`)
2325
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2325
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2326
2326
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt (-3 / +3 lines)
Lines 71-77 Link Here
71
    $(document).ready(function() {
71
    $(document).ready(function() {
72
        $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
72
        $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
73
            "aoColumnDefs": [
73
            "aoColumnDefs": [
74
                { "aTargets": [2,3,4,7,8,9,10,11], "bSortable": false, "bSearchable": false },
74
                { "aTargets": [-1], "bSortable": false, "bSearchable": false },
75
            ],
75
            ],
76
            "sPaginationType": "four_button"
76
            "sPaginationType": "four_button"
77
        }));
77
        }));
Lines 152-160 Link Here
152
        </li>
152
        </li>
153
        <li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank %]" />
153
        <li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank %]" />
154
        </li>
154
        </li>
155
        [% IF (server.servertype||type) == 'zed' %]
155
        <li><label for="attributes">Attributes (additional PQF attributes added to each query): </label><input type="text" name="attributes" id="attributes" size="30" value="[% server.attributes %]" />
156
        <li><label for="attributes">Attributes (additional PQF attributes added to each query): </label><input type="text" name="attributes" id="attributes" size="30" value="[% server.attributes %]" />
156
        </li>
157
        </li>
157
158
        [% END %]
158
159
159
        <li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label>
160
        <li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label>
160
        <select name="syntax" id="syntax">
161
        <select name="syntax" id="syntax">
161
- 

Return to bug 11297