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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (-1 / +1 lines)
Lines 8-14 Link Here
8
            [% IF ( intranetbookbag ) %]
8
            [% IF ( intranetbookbag ) %]
9
            <li><a href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
9
            <li><a href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
10
            [% END %]
10
            [% END %]
11
            [% IntranetNav %]
11
            [% IntranetNav.raw %]
12
            <li class="dropdown">
12
            <li class="dropdown">
13
                <a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
13
                <a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
14
                <ul class="dropdown-menu">
14
                <ul class="dropdown-menu">
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc (-2 / +2 lines)
Lines 1-10 Link Here
1
<script type="text/javascript">
1
<script type="text/javascript">
2
[% IF ( Koha.Preference('IntranetSlipPrinterJS') ) %]
2
[% IF ( Koha.Preference('IntranetSlipPrinterJS') ) %]
3
    [% Koha.Preference('IntranetSlipPrinterJS') %]
3
    [% Koha.Preference('IntranetSlipPrinterJS').raw %]
4
[% ELSE %]
4
[% ELSE %]
5
    function printThenClose() {
5
    function printThenClose() {
6
        window.print();
6
        window.print();
7
        setTimeout('window.close()', 1);
7
        setTimeout('window.close()', 1);
8
    }
8
    }
9
[% END %]
9
[% END %]
10
</script>
10
</script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-1 / +1 lines)
Lines 160-166 Link Here
160
            [% IF ( IntranetmainUserblock ) %]
160
            [% IF ( IntranetmainUserblock ) %]
161
                <div class="yui-g" id="area-userblock">
161
                <div class="yui-g" id="area-userblock">
162
                    <div class="user-info">
162
                    <div class="user-info">
163
                        [% IntranetmainUserblock %]
163
                        [% IntranetmainUserblock.raw %]
164
                    </div>
164
                    </div>
165
                </div>
165
                </div>
166
            [% END %]
166
            [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead-sco.inc (-1 / +1 lines)
Lines 27-33 Link Here
27
        <div class="container-fluid">
27
        <div class="container-fluid">
28
            <div class="row-fluid">
28
            <div class="row-fluid">
29
                <div id="opacheader">
29
                <div id="opacheader">
30
                    [% opacheader %]
30
                    [% opacheader.raw %]
31
                </div>
31
                </div>
32
            </div>
32
            </div>
33
        </div>
33
        </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (-3 / +3 lines)
Lines 148-154 Link Here
148
            <div class="container-fluid">
148
            <div class="container-fluid">
149
                <div class="row-fluid">
149
                <div class="row-fluid">
150
                    <div id="opacheader">
150
                    <div id="opacheader">
151
                        [% opacheader %]
151
                        [% opacheader.raw %]
152
                    </div>
152
                    </div>
153
                </div>
153
                </div>
154
            </div>
154
            </div>
Lines 282-288 Link Here
282
282
283
                            </form>
283
                            </form>
284
                        [% ELSE # / Koha.Preference('OpacCustomSearch') == '' %]
284
                        [% ELSE # / Koha.Preference('OpacCustomSearch') == '' %]
285
                            [% Koha.Preference('OpacCustomSearch') %]
285
                            [% Koha.Preference('OpacCustomSearch').raw %]
286
                        [% END # / Koha.Preference('OpacCustomSearch') == '' %]
286
                        [% END # / Koha.Preference('OpacCustomSearch') == '' %]
287
                        </div> <!-- / .mastheadsearch -->
287
                        </div> <!-- / .mastheadsearch -->
288
                    [% END # / UNLESS advsearch %]
288
                    [% END # / UNLESS advsearch %]
Lines 341-347 Link Here
341
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
341
                        <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
342
                    [% IF Koha.Preference( 'NoLoginInstructions' ) %]
342
                    [% IF Koha.Preference( 'NoLoginInstructions' ) %]
343
                        <div id="nologininstructions-modal">
343
                        <div id="nologininstructions-modal">
344
                            [% Koha.Preference( 'NoLoginInstructions' ) %]
344
                            [% Koha.Preference( 'NoLoginInstructions' ).raw %]
345
                        </div>
345
                        </div>
346
                    [% END %]
346
                    [% END %]
347
                        [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="mpatronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
347
                        [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="mpatronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/navigation.inc (-2 / +2 lines)
Lines 1-5 Link Here
1
<div id="opacnav">[% OpacNav %]</div>
1
<div id="opacnav">[% OpacNav.raw %]</div>
2
[% IF IsPatronPage %]
2
[% IF IsPatronPage %]
3
    <div id="usermenu">[% INCLUDE usermenu.inc %]</div>
3
    <div id="usermenu">[% INCLUDE usermenu.inc %]</div>
4
[% END %]
4
[% END %]
5
<div id="opacnavbottom">[% OpacNavBottom %]</div>
5
<div id="opacnavbottom">[% OpacNavBottom.raw %]</div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-1 / +1 lines)
Lines 5-11 Link Here
5
            <div class="row-fluid">
5
            <div class="row-fluid">
6
                <div class="span12">
6
                <div class="span12">
7
                    <div id="opaccredits" class="noprint">
7
                    <div id="opaccredits" class="noprint">
8
                        [% opaccredits %]
8
                        [% opaccredits.raw %]
9
                    </div>
9
                    </div>
10
                </div>
10
                </div>
11
            </div>
11
            </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc (-1 / +1 lines)
Lines 68-74 Link Here
68
                    <a id="furthersearches" class="dropdown-toggle" data-toggle="dropdown" href="#">More searches <b class="caret"></b></a>
68
                    <a id="furthersearches" class="dropdown-toggle" data-toggle="dropdown" href="#">More searches <b class="caret"></b></a>
69
                        <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="furthersearches">
69
                        <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="furthersearches">
70
                            <li><a href="#" class="menu-inactive">Search for this title in:</a></li>
70
                            <li><a href="#" class="menu-inactive">Search for this title in:</a></li>
71
                            [% OPACSearchForTitleIn %]
71
                            [% OPACSearchForTitleIn.raw %]
72
                        </ul>
72
                        </ul>
73
                </div>
73
                </div>
74
            </div>
74
            </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc (-1 / +1 lines)
Lines 64-70 Link Here
64
64
65
    [% IF ( OPACResultsSidebar ) %]
65
    [% IF ( OPACResultsSidebar ) %]
66
        <div id="opacresultssidebar">
66
        <div id="opacresultssidebar">
67
            [% OPACResultsSidebar %]
67
            [% OPACResultsSidebar.raw %]
68
        </div>
68
        </div>
69
    [% END %]
69
    [% END %]
70
[% END # / IF opacfacets && facets_loop %]
70
[% END # / IF opacfacets && facets_loop %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/maintenance.tt (-1 / +1 lines)
Lines 20-26 Link Here
20
</head>
20
</head>
21
<body id="opac_maintenance" class="opac">
21
<body id="opac_maintenance" class="opac">
22
    [% IF ( opacheader ) %]
22
    [% IF ( opacheader ) %]
23
        [% opacheader %]
23
        [% opacheader.raw %]
24
    [% END %]
24
    [% END %]
25
    <div class="container-fluid">
25
    <div class="container-fluid">
26
        <div class="row-fluid">
26
        <div class="row-fluid">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt (-1 / +1 lines)
Lines 152-158 Link Here
152
                                <input type="submit" value="Log in" class="btn" />
152
                                <input type="submit" value="Log in" class="btn" />
153
                                <div id="nologininstructions">
153
                                <div id="nologininstructions">
154
                                    [% IF Koha.Preference('NoLoginInstructions') %]
154
                                    [% IF Koha.Preference('NoLoginInstructions') %]
155
                                        [% Koha.Preference('NoLoginInstructions') %]
155
                                        [% Koha.Preference('NoLoginInstructions').raw %]
156
                                    [% ELSE %]
156
                                    [% ELSE %]
157
                                        <h5>Don't have a password yet?</h5><p> If you don't have a password yet, stop by the circulation desk the next time you're in the library. We'll happily set one up for you.</p>
157
                                        <h5>Don't have a password yet?</h5><p> If you don't have a password yet, stop by the circulation desk the next time you're in the library. We'll happily set one up for you.</p>
158
                                        <h5>Don't have a library card?</h5><p> If you don't have a library card, stop by your local library to sign up.</p>
158
                                        <h5>Don't have a library card?</h5><p> If you don't have a library card, stop by your local library to sign up.</p>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-blocked.tt (-1 / +1 lines)
Lines 19-25 Link Here
19
                    <p>You are not authorized to view this record.</p>
19
                    <p>You are not authorized to view this record.</p>
20
                    [% IF ( OpacSuppressionMessage ) %]
20
                    [% IF ( OpacSuppressionMessage ) %]
21
                        <div id="opacsuppressionmessage">
21
                        <div id="opacsuppressionmessage">
22
                            [% OpacSuppressionMessage %]
22
                            [% OpacSuppressionMessage.raw %]
23
                        </div>
23
                        </div>
24
                    [% END %]
24
                    [% END %]
25
                </div>
25
                </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-3 / +3 lines)
Lines 64-70 Link Here
64
            </div>
64
            </div>
65
        [% END %]
65
        [% END %]
66
66
67
        [% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock">[% OpacMainUserBlock %]</div>[% END %]
67
        [% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock">[% OpacMainUserBlock.raw %]</div>[% END %]
68
        </div> <!-- / .span 7/9 -->
68
        </div> <!-- / .span 7/9 -->
69
69
70
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
70
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
Lines 86-92 Link Here
86
                                    </fieldset>
86
                                    </fieldset>
87
                                [% IF Koha.Preference( 'NoLoginInstructions' ) %]
87
                                [% IF Koha.Preference( 'NoLoginInstructions' ) %]
88
                                    <div id="nologininstructions-main">
88
                                    <div id="nologininstructions-main">
89
                                        [% Koha.Preference( 'NoLoginInstructions' ) %]
89
                                        [% Koha.Preference( 'NoLoginInstructions' ).raw %]
90
                                    </div>
90
                                    </div>
91
                                [% END %]
91
                                [% END %]
92
                                </form>
92
                                </form>
Lines 99-105 Link Here
99
                [% END # /opacuserlogin %]
99
                [% END # /opacuserlogin %]
100
                [% IF ( OpacNavRight ) %]
100
                [% IF ( OpacNavRight ) %]
101
                    <div id="opacnavright">
101
                    <div id="opacnavright">
102
                        [% OpacNavRight %]
102
                        [% OpacNavRight.raw %]
103
                    </div>
103
                    </div>
104
                [% END # /OpacNavRight %]
104
                [% END # /OpacNavRight %]
105
            </div> <!-- / .span3 -->
105
            </div> <!-- / .span3 -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt (-1 / +1 lines)
Lines 150-156 Link Here
150
                                                    [% END %]
150
                                                    [% END %]
151
                                                </td>
151
                                                </td>
152
                                                [% IF OPACMySummaryHTML %]
152
                                                [% IF OPACMySummaryHTML %]
153
                                                    <td>[% issue.MySummaryHTML %]</td>
153
                                                    <td>[% issue.MySummaryHTML.raw %]</td>
154
                                                [% END %]
154
                                                [% END %]
155
                                                </tr>
155
                                                </tr>
156
                                            [% END # / FOREACH issue %]
156
                                            [% END # / FOREACH issue %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt (-2 / +2 lines)
Lines 52-58 Link Here
52
52
53
                        <p id="patron-instructions">For your convenience, the login box on this page has been pre-filled with this data. Please log in[% IF OpacPasswordChange %] and change your password[% END %].</p>
53
                        <p id="patron-instructions">For your convenience, the login box on this page has been pre-filled with this data. Please log in[% IF OpacPasswordChange %] and change your password[% END %].</p>
54
54
55
                        <div id="PatronSelfRegistrationAdditionalInstructions">[% PatronSelfRegistrationAdditionalInstructions %]</div>
55
                        <div id="PatronSelfRegistrationAdditionalInstructions">[% PatronSelfRegistrationAdditionalInstructions.raw %]</div>
56
                    </div>
56
                    </div>
57
57
58
                </div> <!-- / .span7/9 -->
58
                </div> <!-- / .span7/9 -->
Lines 84-90 Link Here
84
                            [% END # /opacuserlogin %]
84
                            [% END # /opacuserlogin %]
85
                            [% IF ( OpacNavRight ) %]
85
                            [% IF ( OpacNavRight ) %]
86
                                <div id="opacnavright">
86
                                <div id="opacnavright">
87
                                    [% OpacNavRight %]
87
                                    [% OpacNavRight.raw %]
88
                                </div>
88
                                </div>
89
                            [% END # /OpacNavRight %]
89
                            [% END # /OpacNavRight %]
90
                        </div> <!-- / .span3 -->
90
                        </div> <!-- / .span3 -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-restrictedpage.tt (-1 / +1 lines)
Lines 38-44 Link Here
38
                    [% IF Koha.Preference('RestrictedPageTitle') %]
38
                    [% IF Koha.Preference('RestrictedPageTitle') %]
39
                        <h1>[% Koha.Preference('RestrictedPageTitle') %]</h1>
39
                        <h1>[% Koha.Preference('RestrictedPageTitle') %]</h1>
40
                    [% END %]
40
                    [% END %]
41
                    [% Koha.Preference('RestrictedPageContent') %]
41
                    [% Koha.Preference('RestrictedPageContent').raw %]
42
                </div>
42
                </div>
43
            </div> <!-- / .span10 -->
43
            </div> <!-- / .span10 -->
44
        </div> <!-- / .row-fluid -->
44
        </div> <!-- / .row-fluid -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-1 / +1 lines)
Lines 53-59 Link Here
53
                        [% END %]
53
                        [% END %]
54
                        [% IF ( OPACNoResultsFound ) %]
54
                        [% IF ( OPACNoResultsFound ) %]
55
                            <div id="noresultsfound">
55
                            <div id="noresultsfound">
56
                                [% OPACNoResultsFound %]
56
                                [% OPACNoResultsFound.raw %]
57
                            </div>
57
                            </div>
58
                        [% END %]
58
                        [% END %]
59
                    </div> <!-- / .span12 -->
59
                    </div> <!-- / .span12 -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 98-105 Link Here
98
                        </div>
98
                        </div>
99
                    [% END # / IF patron_flagged %]
99
                    [% END # / IF patron_flagged %]
100
100
101
                    [% SET OPACMySummaryNote = Koha.Preference('OPACMySummaryNote') %]
101
                    [% IF OPACMySummaryNote %][% Koha.Preference('OPACMySummaryNote').raw %][% END %]
102
                    [% IF OPACMySummaryNote %][% OPACMySummaryNote %][% END %]
103
102
104
                    <div id="opac-user-views" class="toptabs">
103
                    <div id="opac-user-views" class="toptabs">
105
                        <ul>
104
                        <ul>
Lines 252-258 Link Here
252
                                                    </td>
251
                                                    </td>
253
                                                [% END %]
252
                                                [% END %]
254
                                                [% IF ( OPACMySummaryHTML ) %]
253
                                                [% IF ( OPACMySummaryHTML ) %]
255
                                                    <td class="links">[% ISSUE.MySummaryHTML %]</td>
254
                                                    <td class="links">[% ISSUE.MySummaryHTML.raw %]</td>
256
                                                [% END %]
255
                                                [% END %]
257
                                            </tr>
256
                                            </tr>
258
                                        [% END # /FOREACH ISSUES %]
257
                                        [% END # /FOREACH ISSUES %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt (-3 / +3 lines)
Lines 8-14 Link Here
8
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui.css" />
8
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui.css" />
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/sco.css" />
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/sco.css" />
10
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS.raw %]</style>[% END %]
10
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS.raw %]</style>[% END %]
11
[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS %]</style>[% END %]
11
[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS.raw %]</style>[% END %]
12
<!--[if lt IE 9]>
12
<!--[if lt IE 9]>
13
    <script src="[% interface %]/[% theme %]/lib/respond.min.js"></script>
13
    <script src="[% interface %]/[% theme %]/lib/respond.min.js"></script>
14
<![endif]-->
14
<![endif]-->
Lines 28-34 Link Here
28
28
29
[% IF ( SelfCheckHelpMessage ) %]
29
[% IF ( SelfCheckHelpMessage ) %]
30
<div id="selfcheckhelpmessage">
30
<div id="selfcheckhelpmessage">
31
[% SelfCheckHelpMessage %]
31
[% SelfCheckHelpMessage.raw %]
32
</div>
32
</div>
33
[% END %]
33
[% END %]
34
34
Lines 61-65 The Submit button only needs to be clicked if you enter the barcode manually.</p Link Here
61
61
62
[% INCLUDE 'opac-bottom.inc' %]
62
[% INCLUDE 'opac-bottom.inc' %]
63
[% BLOCK jsinclude %]
63
[% BLOCK jsinclude %]
64
[% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS %]</script>[% END %]
64
[% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS.raw %]</script>[% END %]
65
[% END %]
65
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-3 / +2 lines)
Lines 9-15 Link Here
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui.css" />
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/lib/jquery/jquery-ui.css" />
10
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/sco.css" />
10
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/sco.css" />
11
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS.raw %]</style>[% END %]
11
[% IF ( OPACUserCSS ) %]<style type="text/css">[% OPACUserCSS.raw %]</style>[% END %]
12
[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS %]</style>[% END %]
12
[% IF ( SCOUserCSS ) %]<style type="text/css">[% SCOUserCSS.raw %]</style>[% END %]
13
<!--[if lt IE 9]>
13
<!--[if lt IE 9]>
14
    <script src="[% interface %]/[% theme %]/lib/respond.min.js"></script>
14
    <script src="[% interface %]/[% theme %]/lib/respond.min.js"></script>
15
<![endif]-->
15
<![endif]-->
Lines 381-385 Link Here
381
    //]]>
381
    //]]>
382
    </script>
382
    </script>
383
383
384
    [% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS %]</script>[% END %]
384
    [% IF ( SCOUserJS ) %]<script type="text/javascript">[% SCOUserJS.raw %]</script>[% END %]
385
[% END %]
385
[% END %]
386
- 

Return to bug 13618