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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc (-15 / +1 lines)
Lines 3-14 Link Here
3
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
3
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
4
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/bootstrap/bootstrap.min.css" />
4
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/bootstrap/bootstrap.min.css" />
5
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
5
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
6
[% SET intranetstylesheet='staff-global.css' UNLESS intranetstylesheet %]
6
[% INCLUDE intranetstylesheet.inc %]
7
[% IF (intranetstylesheet.match('^https?:|^\/')) %]
8
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
9
[% ELSE %]
10
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetstylesheet %]" />
11
[% END %]
12
[% IF ( bidi ) %]
7
[% IF ( bidi ) %]
13
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
8
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
14
[% END %]
9
[% END %]
Lines 28-42 Link Here
28
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/wizard.css" />
23
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/wizard.css" />
29
[% END %]
24
[% END %]
30
25
31
<!-- local colors -->
32
[% IF ( intranetcolorstylesheet ) %]
33
    [% IF (intranetcolorstylesheet.match('^https?:|^\/')) %]
34
        <link rel="stylesheet" type="text/css" href="[% intranetcolorstylesheet %]" />
35
    [% ELSE %]
36
        <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
37
    [% END %]
38
[% END %]
39
40
<!-- yui js --> 
26
<!-- yui js --> 
41
<script type="text/javascript" src="[% yuipath %]/utilities/utilities.js"></script> 
27
<script type="text/javascript" src="[% yuipath %]/utilities/utilities.js"></script> 
42
<script type="text/javascript" src="[% yuipath %]/button/button-min.js"></script> 
28
<script type="text/javascript" src="[% yuipath %]/button/button-min.js"></script> 
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/help-top.inc (-9 / +1 lines)
Lines 4-24 Link Here
4
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
4
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
5
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
5
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui.css" />
6
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
6
<link rel="stylesheet" type="text/css" media="print" href="[% themelang %]/css/print.css" />
7
[% IF ( intranetstylesheet ) %]
7
[% INCLUDE intranetstylesheet.inc %]
8
<link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
9
[% ELSE %]
10
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
11
[% END %]
12
[% IF ( bidi ) %]
8
[% IF ( bidi ) %]
13
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
9
   <link rel="stylesheet" type="text/css" href="[% themelang %]/css/right-to-left.css" />
14
[% END %]
10
[% END %]
15
<script type="text/javascript" src="[% interface %]/lib/jquery/jquery.js"></script>
11
<script type="text/javascript" src="[% interface %]/lib/jquery/jquery.js"></script>
16
<script type="text/javascript" src="[% interface %]/lib/jquery/jquery-ui.js"></script>
12
<script type="text/javascript" src="[% interface %]/lib/jquery/jquery-ui.js"></script>
17
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.hotkeys.min.js"></script>
13
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.hotkeys.min.js"></script>
18
<!-- local colors -->
19
[% IF ( intranetcolorstylesheet ) %]
20
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
21
[% END %]
22
<!-- yui js --> 
14
<!-- yui js --> 
23
<script type="text/javascript" src="[% yuipath %]/utilities/utilities.js"></script> 
15
<script type="text/javascript" src="[% yuipath %]/utilities/utilities.js"></script> 
24
<script type="text/javascript" src="[% yuipath %]/button/button-min.js"></script> 
16
<script type="text/javascript" src="[% yuipath %]/button/button-min.js"></script> 
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/intranetstylesheet.inc (+15 lines)
Line 0 Link Here
1
[% SET intranetstylesheet='staff-global.css' UNLESS intranetstylesheet %]
2
[% IF (intranetstylesheet.match('^https?:|^\/')) %]
3
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
4
[% ELSE %]
5
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetstylesheet %]" />
6
[% END %]
7
8
<!-- local colors -->
9
[% IF ( intranetcolorstylesheet ) %]
10
    [% IF (intranetcolorstylesheet.match('^https?:|^\/')) %]
11
        <link rel="stylesheet" type="text/css" href="[% intranetcolorstylesheet %]" />
12
    [% ELSE %]
13
        <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
14
    [% END %]
15
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/edithelp.tt (-9 / +1 lines)
Lines 21-34 tinyMCE.init({ Link Here
21
});
21
});
22
//]]>
22
//]]>
23
</script>
23
</script>
24
[% IF ( intranetstylesheet ) %]
24
[% INCLUDE intranetstylesheet.inc %]
25
    <link rel="stylesheet" type="text/css" href="[% intranetstylesheet %]" />
26
[% ELSE %]
27
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/staff-global.css" />
28
[% END %]
29
[% IF ( intranetcolorstylesheet ) %]
30
    <link rel="stylesheet" type="text/css" href="[% themelang %]/css/[% intranetcolorstylesheet %]" />
31
[% END %]
32
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
25
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/help.css" />
33
</head>
26
</head>
34
<body id="help">
27
<body id="help">
35
- 

Return to bug 10052