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

(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 2454-2460 CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u Link Here
2454
  `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2454
  `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2455
  `sru_fields` mediumtext default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2455
  `sru_fields` mediumtext default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2456
  `add_xslt` mediumtext default NULL, -- zero or more paths to XSLT files to be processed on the search results
2456
  `add_xslt` mediumtext default NULL, -- zero or more paths to XSLT files to be processed on the search results
2457
  `attributes` VARCHAR(255) default NULL, -- additionnal attributes passed to PQF queries
2457
  `attributes` VARCHAR(255) default NULL, -- additional attributes passed to PQF queries
2458
  PRIMARY KEY  (`id`)
2458
  PRIMARY KEY  (`id`)
2459
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2459
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2460
2460
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt (-3 / +3 lines)
Lines 65-71 Link Here
65
    $(document).ready(function() {
65
    $(document).ready(function() {
66
        $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
66
        $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
67
            "aoColumnDefs": [
67
            "aoColumnDefs": [
68
                { "aTargets": [2,3,4,7,8,9,10,11], "bSortable": false, "bSearchable": false },
68
                { "aTargets": [-1], "bSortable": false, "bSearchable": false },
69
            ],
69
            ],
70
            "sPaginationType": "four_button"
70
            "sPaginationType": "four_button"
71
        }));
71
        }));
Lines 143-151 Link Here
143
        </li>
143
        </li>
144
        <li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank %]" />
144
        <li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank %]" />
145
        </li>
145
        </li>
146
        [% IF (server.servertype||type) == 'zed' %]
146
        <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 %]" />
147
        <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 %]" />
147
        </li>
148
        </li>
148
149
        [% END %]
149
150
150
        <li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label>
151
        <li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label>
151
        <select name="syntax" id="syntax">
152
        <select name="syntax" id="syntax">
152
- 

Return to bug 11297