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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc (-3 / +5 lines)
Lines 1-6 Link Here
1
[% USE raw %]
2
[% USE Asset %]
1
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
3
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | html %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
4
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | html %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
3
<link rel="stylesheet" type="text/css" href="[% interface | html %]/lib/jquery/jquery-ui-1.11.4.min.css" />
5
[% Asset.css("lib/jquery/jquery-ui-1.11.4.min.css") | $raw %]
4
<link rel="stylesheet" type="text/css" href="[% interface | html %]/lib/bootstrap/bootstrap.min.css" />
6
[% Asset.css("lib/bootstrap/bootstrap.min.css") | $raw %]
5
<link rel="stylesheet" type="text/css" href="[% interface | html %]/[% theme | html %]/css/installer.css" />
7
[% Asset.css("css/installer.css")  | $raw %]
6
<style id="antiClickjack">body{display:none !important;}</style>
8
<style id="antiClickjack">body{display:none !important;}</style>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-intranet-bottom.inc (-5 / +6 lines)
Lines 1-9 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
        <script src="[% interface | html %]/lib/jquery/jquery-2.2.3.min.js"></script>
2
[% USE Asset %]
3
        <script src="[% interface | html %]/lib/jquery/jquery-migrate-1.3.0.min.js"></script>
3
        [% Asset.js("lib/jquery/jquery-2.2.3.min.js") | $raw %]
4
        <script src="[% interface | html %]/lib/jquery/jquery-ui-1.11.4.min.js"></script>
4
        [% Asset.js("lib/jquery/jquery-migrate-1.3.0.min.js") | $raw %]
5
        <script src="[% interface | html %]/lib/bootstrap/bootstrap.min.js"></script>
5
        [% Asset.js("lib/jquery/jquery-ui-1.11.4.min.js") | $raw %]
6
        <script src="[% interface | html %]/lib/jquery/plugins/jquery.validate.min.js"></script>
6
        [% Asset.js("lib/bootstrap/bootstrap.min.js") | $raw %]
7
        [% Asset.js("lib/jquery/plugins/jquery.validate.min.js") | $raw %]
7
        <script>
8
        <script>
8
            function _(s) { return s } // dummy function for gettext
9
            function _(s) { return s } // dummy function for gettext
9
            [%# Prevent XFS attacks -%]
10
            [%# Prevent XFS attacks -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/select2.inc (-1 / +1 lines)
Lines 1-6 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
<script src="[% interface | html %]/lib/select2/js/select2.min.js"></script>
3
[% Asset.js("lib/select2/js/select2.min.js") | $raw %]
4
[% Asset.css("lib/select2/css/select2.min.css") | $raw %]
4
[% Asset.css("lib/select2/css/select2.min.css") | $raw %]
5
[% Asset.css("css/select2.css") | $raw %]
5
[% Asset.css("css/select2.css") | $raw %]
6
<script>
6
<script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt (-2 / +3 lines)
Lines 1-4 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE raw %]
3
[% USE Asset %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Web installer &rsaquo; Create Koha administrator patron</title>
5
<title>Koha &rsaquo; Web installer &rsaquo; Create Koha administrator patron</title>
4
[% INCLUDE 'installer-doc-head-close.inc' %]
6
[% INCLUDE 'installer-doc-head-close.inc' %]
Lines 113-119 Link Here
113
[% MACRO jsinclude BLOCK %]
115
[% MACRO jsinclude BLOCK %]
114
    [% INCLUDE 'validator-strings.inc' %]
116
    [% INCLUDE 'validator-strings.inc' %]
115
    [% INCLUDE 'installer-strings.inc' %]
117
    [% INCLUDE 'installer-strings.inc' %]
116
    <script src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script>
118
    [% Asset.js("js/onboarding.js") | $raw %]
117
    [% PROCESS 'password_check.inc' %]
119
    [% PROCESS 'password_check.inc' %]
118
    [% PROCESS 'add_password_check' new_password => 'password' %]
120
    [% PROCESS 'add_password_check' new_password => 'password' %]
119
[% END %]
121
[% END %]
120
- 

Return to bug 22451