@@ -, +, @@ --- .../mysql/atomicupdate/bug_15485_xslt_for_lists.sql | 21 +++++++++++++++++++++ installer/data/mysql/sysprefs.sql | 2 ++ .../prog/en/modules/admin/preferences/opac.pref | 5 +++++ .../en/modules/admin/preferences/staff_client.pref | 5 +++++ 4 files changed, 33 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_15485_xslt_for_lists.sql --- a/installer/data/mysql/atomicupdate/bug_15485_xslt_for_lists.sql +++ a/installer/data/mysql/atomicupdate/bug_15485_xslt_for_lists.sql @@ -0,0 +1,21 @@ +INSERT IGNORE INTO systempreferences ( variable, value, options, explanation,type ) +VALUES ('OPACXSLTListsDisplay','','','Enable XSLT stylesheet control over lists pages display on OPAC','Free'); +INSERT IGNORE INTO systempreferences ( variable, value, options, explanation,type ) +VALUES ('XSLTListsDisplay','','','Enable XSLT stylesheet control over lists pages display on intranet','Free'); + +-- $DBversion = '16.06.00.XXX'; +-- if ( CheckVersion($DBversion) ) { +-- $dbh->do(q{ +-- INSERT IGNORE INTO systempreferences ( variable, value, options, explanation,type ) +-- VALUES ('OPACXSLTListsDisplay','','','Enable XSLT stylesheet control over lists pages display on OPAC','Free') +-- }); + +-- $dbh->do(q{ +-- INSERT IGNORE INTO systempreferences ( variable, value, options, explanation,type ) +-- VALUES ('XSLTListsDisplay','','','Enable XSLT stylesheet control over lists pages display on intranet','Free') + +-- }); + +-- print "Upgrade to $DBversion done (Bug 12528 - Enable staff to deny message setting access to patrons on the OPAC)\n"; +-- SetVersion($DBversion); +-- } --- a/installer/data/mysql/sysprefs.sql +++ a/installer/data/mysql/sysprefs.sql @@ -359,6 +359,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('opacuserlogin','1',NULL,'Enable or disable display of user login features','YesNo'), ('OPACViewOthersSuggestions','0',NULL,'If ON, allows all suggestions to be displayed in the OPAC','YesNo'), ('OPACXSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on OPAC','Free'), +('OPACXSLTListsDisplay','','','Enable XSLT stylesheet control over lists pages display on OPAC','Free'), ('OPACXSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on OPAC','Free'), ('OpenLibraryCovers','0',NULL,'If ON Openlibrary book covers will be show','YesNo'), ('OpenLibrarySearch','0',NULL,'If Yes Open Library search results will show in OPAC','YesNo'), @@ -533,6 +534,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('XISBN','0','','Use with FRBRizeEditions. If ON, Koha will use the OCLC xISBN web service in the Editions tab on the detail pages. See: http://www.worldcat.org/affiliate/webservices/xisbn/app.jsp','YesNo'), ('XISBNDailyLimit','999','','The xISBN Web service is free for non-commercial use when usage does not exceed 1000 requests per day','Integer'), ('XSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on intranet','Free'), +('XSLTListsDisplay','default','','Enable XSLT stylesheet control over lists pages display on intranet','Free'), ('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'), ('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'), ('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo') --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref @@ -80,6 +80,11 @@ OPAC: no: Show - lost items on search and detail pages. - + - 'Display lists in the OPAC using XSLT stylesheet at: ' + - pref: OPACXSLTListsDisplay + class: file + - '
Options:{langcode} will be replaced with current interface language' + - - 'Display OPAC results using XSLT stylesheet at: ' - pref: OPACXSLTResultsDisplay class: file --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_client.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_client.pref @@ -56,6 +56,11 @@ Staff Client: class: url - for the Staff Client's favicon. (This should be a complete URL, starting with http://.) - + - 'Display lists in the staff client using XSLT stylesheet at: ' + - pref: XSLTListsDisplay + class: file + - '
Options:{langcode} will be replaced with current interface language' + - - 'Display results in the staff client using XSLT stylesheet at: ' - pref: XSLTResultsDisplay class: file --