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

(-)a/installer/data/mysql/atomicupdate/bug-30036.pl (-1 / +1 lines)
Lines 9-15 return { Link Here
9
9
10
        $dbh->do(q{
10
        $dbh->do(q{
11
            INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
11
            INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
12
            VALUES ('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page display on opac','Free')
12
            VALUES ('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free')
13
        });
13
        });
14
    },
14
    },
15
};
15
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 70-76 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
70
('AuthorityMergeLimit','50',NULL,'Maximum number of biblio records updated immediately when an authority record has been modified.','integer'),
70
('AuthorityMergeLimit','50',NULL,'Maximum number of biblio records updated immediately when an authority record has been modified.','integer'),
71
('AuthorityMergeMode','loose','loose|strict','Authority merge mode','Choice'),
71
('AuthorityMergeMode','loose','loose|strict','Authority merge mode','Choice'),
72
('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'),
72
('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'),
73
('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page display on opac','Free'),
73
('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free'),
74
('AuthorityXSLTResultsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free'),
74
('AuthorityXSLTResultsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free'),
75
('AuthSuccessLog','0',NULL,'If enabled, log successful authentications','YesNo'),
75
('AuthSuccessLog','0',NULL,'If enabled, log successful authentications','YesNo'),
76
('autoBarcode','OFF','incremental|annual|hbyymmincr|EAN13|OFF','Used to autogenerate a barcode: incremental will be of the form 1, 2, 3; annual of the form 2007-0001, 2007-0002; hbyymmincr of the form HB08010001 where HB=Home Branch','Choice'),
76
('autoBarcode','OFF','incremental|annual|hbyymmincr|EAN13|OFF','Used to autogenerate a barcode: incremental will be of the form 1, 2, 3; annual of the form 2007-0001, 2007-0002; hbyymmincr of the form HB08010001 where HB=Home Branch','Choice'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (+5 lines)
Lines 101-106 OPAC: Link Here
101
            - pref: OPACXSLTDetailsDisplay
101
            - pref: OPACXSLTDetailsDisplay
102
              class: file
102
              class: file
103
            - '<br />Options:<ul><li>Enter "<a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="default">default</a>" for the default stylesheet</li><li>Put a path to define an xslt file</li><li>Put a URL for an external specific stylesheet.</li></ul>If you have multiple stylesheets for different languages the placeholder {langcode} will be replaced with current interface language.'
103
            - '<br />Options:<ul><li>Enter "<a href="#" class="set_syspref" data-syspref="OPACXSLTDetailsDisplay" data-value="default">default</a>" for the default stylesheet</li><li>Put a path to define an xslt file</li><li>Put a URL for an external specific stylesheet.</li></ul>If you have multiple stylesheets for different languages the placeholder {langcode} will be replaced with current interface language.'
104
        -
105
            - 'Display authority results in the OPAC using the XSLT stylesheet at: '
106
            - pref: AuthorityXSLTOpacResultsDisplay
107
              class: file
108
            - '<br />Options:<ul><li>Enter a path to a custom XSLT file.</li><li>Enter a URL for an external stylesheet.</li></ul>If you have multiple stylesheets for: <ul><li>different languages: use the placeholder {langcode} - this will be replaced with the current interface language</li><li>authority types: use the placeholder {authtypecode} - this will be replaced with the authority type code'
104
        -
109
        -
105
            - pref: OpacNoItemTypeImages
110
            - pref: OpacNoItemTypeImages
106
              default: 0
111
              default: 0
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref (-7 / +1 lines)
Lines 1-10 Link Here
1
Staff interface:
1
gStaff interface:
2
    Appearance:
2
    Appearance:
3
        -
4
            - 'Display authority results in the OPAC using the XSLT stylesheet at: '
5
            - pref: AuthorityXSLTOpacResultsDisplay
6
              class: file
7
            - '<br />Options:<ul><li>Enter a path to a custom XSLT file.</li><li>Enter a URL for an external stylesheet.</li></ul>If you have multiple stylesheets for: <ul><li>different languages: use the placeholder {langcode} - this will be replaced with the current interface language</li><li>authority types: use the placeholder {authtypecode} - this will be replaced with the authority type code'
8
        -
3
        -
9
            - 'Display authority results in the staff interface using XSLT stylesheet at: '
4
            - 'Display authority results in the staff interface using XSLT stylesheet at: '
10
            - pref: AuthorityXSLTResultsDisplay
5
            - pref: AuthorityXSLTResultsDisplay
11
- 

Return to bug 30036