Bugzilla – Attachment 13251 Details for
Bug 9009
Add separate user js and css for SCO module
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9009 - Add separate user js and css of SCO module
Bug-9009---Add-separate-user-js-and-css-of-SCO-mod.patch (text/plain), 4.70 KB, created by
Kyle M Hall (khall)
on 2012-11-05 17:22:29 UTC
(
hide
)
Description:
Bug 9009 - Add separate user js and css of SCO module
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2012-11-05 17:22:29 UTC
Size:
4.70 KB
patch
obsolete
>From 78cfce1363592711e52c9fb0819f2e4849da7765 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 5 Nov 2012 12:22:24 -0500 >Subject: [PATCH] Bug 9009 - Add separate user js and css of SCO module >Content-Type: text/plain; charset="utf-8" > >--- > installer/data/mysql/updatedatabase.pl | 8 ++++++++ > koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt | 3 +++ > koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tt | 2 ++ > .../opac-tmpl/prog/en/modules/sco/sco-main.tt | 3 ++- > opac/sco/help.pl | 5 +++++ > opac/sco/sco-main.pl | 5 +++++ > 6 files changed, 25 insertions(+), 1 deletions(-) > >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index 7ab48ee..8aaff79 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -6020,6 +6020,14 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { > SetVersion ($DBversion); > } > >+$DBversion = "3.09.00.XXX"; >+if (C4::Context->preference("Version") < TransformToNum($DBversion)) { >+ $dbh->do("INSERT INTO systempreferences ( variable, value, explanation, type ) VALUES ( 'SCOUserCSS', '', 'Add CSS to be included in the SCO module in an embedded <style> tag.', 'free' )"); >+ $dbh->do("INSERT INTO systempreferences ( variable, value, explanation, type ) VALUES ( 'SCOUserJS', '', 'Define custom javascript for inclusion in the SCO module', 'free' )"); >+ print "Upgrade to $DBversion done (Disable obsolete NoZebra and QueryRemoveStopwords sysprefs)\n"; >+ SetVersion ($DBversion); >+} >+ > =head1 FUNCTIONS > > =head2 TableExists($table) >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt b/koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt >index 32b4f56..26c870e 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/sco/help.tt >@@ -6,6 +6,9 @@ > <link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" /> > <link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" /> > <link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" /> >+[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %] >+ >+[% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS %]</script>[% END %] > </head> > <body> > <div id="doc" class="yui-t7"> >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tt b/koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tt >index 8178412..7e363d2 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tt >@@ -26,6 +26,8 @@ function closeNow() > } > </script> > >+[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS %]</style>[% END %] >+[% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS %]</script>[% END %] > > </head> > >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt >index 66cace5..0366df9 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/sco/sco-main.tt >@@ -95,12 +95,13 @@ $(document).ready(function() { > > </script> > [% IF ( opacuserjs ) %]<script type="text/javascript">[% opacuserjs %]</script>[% END %] >- >+[% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS %]</script>[% END %] > > <link rel="stylesheet" type="text/css" href="[% yuipath %]/reset-fonts-grids.css" /> > <link rel="stylesheet" type="text/css" href="[% yuipath %]/skin.css" /> > <link rel="stylesheet" type="text/css" href="[% themelang %]/css/sco.css" /> > [% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS %]</style>[% END %] >+[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS %]</style>[% END %] > > </head> > <body onload="dofocus();"> >diff --git a/opac/sco/help.pl b/opac/sco/help.pl >index b3f4398..abcb396 100755 >--- a/opac/sco/help.pl >+++ b/opac/sco/help.pl >@@ -52,5 +52,10 @@ if (C4::Context->preference('SelfCheckHelpMessage')) { > $template->param(SelfCheckHelpMessage => C4::Context->preference('SelfCheckHelpMessage')); > } > >+$template->param( >+ SCOUserJS => C4::Context->preference('SCOUserJS'), >+ SCOUserCSS => C4::Context->preference('SCOUserCSS'), >+); >+ > output_html_with_http_headers $query, $cookie, $template->output; > >diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl >index 26a8774..58ac2c6 100755 >--- a/opac/sco/sco-main.pl >+++ b/opac/sco/sco-main.pl >@@ -263,4 +263,9 @@ if ($borrower->{cardnumber}) { > ); > } > >+$template->param( >+ SCOUserJS => C4::Context->preference('SCOUserJS'), >+ SCOUserCSS => C4::Context->preference('SCOUserCSS'), >+); >+ > output_html_with_http_headers $query, $cookie, $template->output; >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9009
:
13251
|
13252
|
13253
|
13254
|
13255
|
13871
|
13889
|
13890
|
14288