23007ddd1f9ed75cb54f66f08267953e03eb673f
[freeside.git] / rt / share / html / Elements / Header
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 % if ( $Popup ) {
49 <& /elements/header-popup.html, {
50               'title_noescape' => $Title,
51               'head'      => $head,
52               'etc'       => $etc,
53               'nobr'      => 1,
54               #'nocss'     => 1,
55               'no_jquery' => $JavaScript,
56           }
57 &>
58 % } else {
59 <& /elements/header.html, {
60               'title_noescape' => $Title,
61               'head'      => $head,
62               'etc'       => $etc,
63               'nobr'      => 1,
64               'nocss'     => 1,
65               'no_jquery' => $JavaScript,
66           }
67 &>
68 % }
69 <%INIT>
70 #for "Site CSS from theme editor" below
71 $r->headers_out->{'Pragma'} = 'no-cache';
72 $r->headers_out->{'Cache-control'} = 'no-cache';
73
74 my $id = $m->request_comp->path;
75 $id =~ s|^/||g;
76 $id =~ s|/|-|g;
77 $id =~ s|\.html$||g;
78 $id =~ s|index$||g
79     if $id ne 'index';
80 $id =~ s|-$||g;
81
82 my $style = $session{'CurrentUser'}
83           ? $session{'CurrentUser'}->Stylesheet
84           : RT->Config->Get('WebDefaultStylesheet');
85
86 my @css_files;
87 if ( RT->Config->Get('DevelMode') ) {
88     @css_files = map { "/static/css/$_" } "$style/main.css", RT->Config->Get('CSSFiles');
89 }
90 else {
91     my $key =
92       RT::Interface::Web::SquishedCSS( $style )->Key;
93     @css_files = "/NoAuth/css/$style/squished-$key.css";
94 }
95
96 # We use BodyClass in its $ARGS form so that callbacks have a chance to
97 # massage it
98 push @{$ARGS{'BodyClass'}}, lc $style;
99
100 if (RT->Config->Get("UseSideBySideLayout", $session{'CurrentUser'})) {
101     push @{$ARGS{'BodyClass'}}, 'sidebyside';
102 }
103
104 my $head = '';
105
106 if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) {
107   my $URL = $m->notes->{RefreshURL}; $URL = $URL ? ";URL=$URL" : "";
108   $head .= qq( <meta http-equiv="refresh" content="$1$URL" /> );
109 }
110
111 my $WebPath = RT->Config->Get('WebPath');
112 my $WebImagesURL = RT->Config->Get('WebImagesURL');
113 my $squished = RT->Config->Get('DevelMode') ? '' : '-squished';
114
115 if ( $JavaScript ) {
116   $head .= $m->scomp('/Elements/JavascriptConfig');
117 }
118
119 for my $cssfile ( @css_files ) {
120   $head .= qq(<link rel="stylesheet" href="$WebPath$cssfile" type="text/css" media="all" />\n);
121 }
122
123 for (keys %{$LinkRel || {}}) {
124   $head .= qq(<link rel="$_" href="$WebPath) . $LinkRel->{$_} . '" />';
125 }
126 $head .= qq(<link rel="shortcut icon" href="${WebImagesURL}favicon.png" type="image/png" />\n);
127
128 if ( $RSSAutoDiscovery ) {
129     $head .= qq(<link rel="alternate" href="$RSSAutoDiscovery" type="application/rss+xml" title="RSS RT Search" />);
130 }
131
132 if ($JavaScript) {
133     $head .= $m->scomp('/Elements/HeaderJavascript', focus => $Focus, onload => $onload, RichText => $RichText );
134
135 $head .= q[
136 <script type="text/javascript">
137 jQuery(document).ready(function(){
138     jQuery.fn.supersubs.defaults = {
139         maxWidth: 30,
140         extraWidth: 2
141     };
142
143     jQuery("#app-nav.toplevel").addClass('sf-menu sf-js-enabled sf-shadow').supersubs().superfish({ speed: 'fast' });
144     jQuery("#page-menu.toplevel").addClass('sf-menu sf-js-enabled').supersubs().superfish({ dropShadows: false, speed: 'fast' }).supposition();
145 });
146 </script>
147 ];
148
149 }
150
151 # $m->callback( %ARGS, CallbackName => 'Head' );
152 $head .= $m->scomp( '/Elements/Callback', _CallbackName => 'Head', %ARGS );
153
154 #XXX $head .= <& /Elements/Framekiller &>;
155
156 my $etc = ' class="'. join( '',@{$ARGS{'BodyClass'}}). '" ';
157 $etc .= qq[ id="comp-$id"] if $id;
158
159 </%INIT>
160 <%ARGS>
161 #$Focus => 'focus'
162 $Focus => ''
163 $Title =>  'RT'
164 $Refresh => 0
165 $ShowBar => 1
166 $URL => undef
167 $RSSAutoDiscovery => undef
168 $onload => undef
169 $LinkRel => undef
170 $SkipDoctype => 0
171 $RichText => 1
172 $BodyClass => undef
173 $JavaScript => 1
174 $Popup => 0
175 </%ARGS>