]> git.uio.no Git - usit-rt.git/blob - share/html/Elements/Header
4b0c2b885d6d8b12ad4fcb0db185aa3902e11193
[usit-rt.git] / share / html / Elements / Header
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2012 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 %# index.html gets two doctypes unless we can skip it here
49 % unless ($SkipDoctype) {
50 <!DOCTYPE html>
51 % }
52
53 <html lang="en">
54   <head>
55     <title><%$Title%></title>
56
57     <& /Elements/Framekiller &>
58
59 % if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) {
60 %   my $URL = $m->notes->{LogoutURL}; $URL = $URL ? ";URL=$URL" : "";
61     <meta http-equiv="refresh" content="<% "$1$URL" %>" />
62 % }
63
64 <link rel="shortcut icon" href="<%RT->Config->Get('WebImagesURL')%>favicon.png" type="image/png" />
65 % for my $cssfile ( @css_files ) {
66 <link rel="stylesheet" href="<%RT->Config->Get('WebPath')%>/NoAuth/css/<% $cssfile %>" type="text/css" media="all" />
67 % }
68 <link rel="stylesheet" href="<%RT->Config->Get('WebPath')%>/NoAuth/css/print.css" type="text/css" media="print" />
69
70 % for (keys %{$LinkRel || {}}) {
71     <link rel="<% $_ %>" href="<% RT->Config->Get('WebPath') . $LinkRel->{$_} %>" />
72 % }
73
74 % if ( $RSSAutoDiscovery ) {
75     <link rel="alternate" href="<%$RSSAutoDiscovery%>" type="application/rss+xml" title="RSS RT Search" />
76 % }
77
78 % if ($JavaScript) {
79 <& HeaderJavascript, focus => $Focus, onload => $onload, RichText => $RichText &>
80 % }
81
82 % my $stylesheet_plugin = "/NoAuth/css/".$style."/InHeader";
83 % if ($m->comp_exists($stylesheet_plugin) ) {
84 <& $stylesheet_plugin &>
85 % }
86
87 <!-- Site CSS from theme editor -->
88 <style type="text/css" media="all" id="sitecss">
89 %# Header is used when there isn't a database (such as in the Installer) which means there is no
90 %# RT::System object, nor are there attributes.
91 % if (blessed(RT->System) and my $attr = RT->System->FirstAttribute('UserCSS')) {
92 <% $attr->Content |n %>
93 % }
94 </style>
95
96 % $m->callback( %ARGS, CallbackName => 'Head' );
97
98 </head>
99   <body class="<% lc $style %>" <% $id && qq[id="comp-$id"] |n %>>
100
101 % if ($ShowBar) {
102 <& /Elements/Logo, %ARGS &>
103
104 <div id="quickbar">
105   <& /Elements/PersonalQuickbar, %ARGS &>
106 </div>
107 % }
108 <div id="header"><h1><% $Title %></h1></div>
109 <%INIT>
110 use Scalar::Util qw(blessed);
111
112 $r->headers_out->{'Pragma'} = 'no-cache';
113 $r->headers_out->{'Cache-control'} = 'no-cache';
114
115 my $id = $m->request_comp->path;
116 $id =~ s|^/||g;
117 $id =~ s|/|-|g;
118 $id =~ s|\.html$||g;
119 $id =~ s|index$||g
120     if $id ne 'index';
121 $id =~ s|-$||g;
122
123 my $style = $session{'CurrentUser'}
124           ? $session{'CurrentUser'}->Stylesheet
125           : RT->Config->Get('WebDefaultStylesheet');
126
127 my @css_files;
128 if ( RT->Config->Get('DevelMode') ) {
129     @css_files = ( "$style/main.css", RT->Config->Get('CSSFiles' ) );
130 }
131 else {
132     my $key =
133       RT::Interface::Web::SquishedCSS( $style )->Key;
134     @css_files = "$style-squished-$key.css";
135 }
136
137 </%INIT>
138
139 <%ARGS>
140 #$Focus => 'focus'
141 $Focus => ''
142 $Title =>  'RT'
143 $Code => undef
144 $Refresh => 0
145 $Why => undef
146 $ShowBar => 1
147 $URL => undef
148 $RSSAutoDiscovery => undef
149 $onload => undef
150 $LinkRel => undef
151 $JavaScript => 1
152 $SkipDoctype => 0
153 $RichText => 1
154 </%ARGS>