1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
5%# This software is Copyright (c) 1996-2021 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="<% $lang %>">
54  <head>
55    <title><%$Title%></title>
56    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
57    <!-- The X-UA-Compatible <meta> tag above must be very early in <head> -->
58
59% if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) {
60%   my $URL = $m->notes->{RefreshURL}; $URL = $URL ? ";URL=$URL" : "";
61    <meta http-equiv="refresh" content="<% "$1$URL" %>" />
62% }
63
64<& JavascriptConfig &>
65
66% for my $cssfile ( @css_files ) {
67<link rel="stylesheet" href="<%RT->Config->Get('WebPath')%><% $cssfile %>" type="text/css" media="all" />
68% }
69
70% for (keys %{$LinkRel || {}}) {
71    <link rel="<% $_ %>" href="<% RT->Config->Get('WebPath') . $LinkRel->{$_} %>" />
72% }
73<link rel="shortcut icon" href="<%RT->Config->Get('WebImagesURL')%>favicon.png" type="image/png" />
74
75% if ( $RSSAutoDiscovery ) {
76    <link rel="alternate" href="<%$RSSAutoDiscovery%>" type="application/rss+xml" title="RSS RT Search" />
77% }
78
79% my $stylesheet_plugin = "/NoAuth/css/".$style."/InHeader";
80% if ($m->comp_exists($stylesheet_plugin) ) {
81<& $stylesheet_plugin &>
82% }
83
84<!-- Site CSS from theme editor -->
85<style type="text/css" media="all" id="sitecss">
86%# Header is used when there isn't a database (such as in the Installer) which means there is no
87%# RT::System object, nor are there attributes.
88% if (blessed(RT->System) and my $attr = RT->System->FirstAttribute('UserCSS')) {
89<% $attr->Content |n %>
90% }
91</style>
92% # Leave %ARGS for backward compatibility
93% $m->callback( %ARGS, CallbackName => 'Head', ARGSRef => \%ARGS );
94
95<& HeaderJavascript, focus => $Focus, onload => $onload, RichText => $RichText &>
96
97<& /Elements/Framekiller &>
98
99% $m->callback( CallbackName => 'EndOfHead', ARGSRef => \%ARGS );
100
101</head>
102  <body class="<% join( ' ',@{$ARGS{'BodyClass'}}, RT->Config->Get('WebDefaultStylesheet', $session{CurrentUser}) =~ /-dark$/ ? 'darkmode' : ()) %>" <% $id && qq[id="comp-$id"] |n %>>
103    <div class="main-container">
104% # The close div for this is in PageLayout right before the rt body div
105% if ( $ShowBar || $ShowTitle ) {
106<div id='rt-header-container'>
107% }
108
109% if ($ShowBar) {
110<& /Elements/Logo, %ARGS &>
111
112<div id="quickbar">
113  <& /Elements/PersonalQuickbar, %ARGS &>
114</div>
115% }
116% if ($ShowTitle) {
117<div id="header"><h1><% $Title %></h1></div>
118% }
119<%INIT>
120my $lang = 'en';
121$lang = $session{'CurrentUser'}->LanguageHandle->language_tag
122     if $session{'CurrentUser'}
123     && $session{'CurrentUser'}->LanguageHandle
124     && $session{'CurrentUser'}->LanguageHandle->language_tag;
125
126$r->headers_out->{'Pragma'} = 'no-cache';
127$r->headers_out->{'Cache-control'} = 'no-cache';
128
129my $id = $m->request_comp->path;
130$id =~ s|^/||g;
131$id =~ s|/|-|g;
132$id =~ s|\.html$||g;
133$id =~ s|index$||g
134    if $id ne 'index';
135$id =~ s|-$||g;
136
137my $style = $session{'CurrentUser'}
138          ? $session{'CurrentUser'}->Stylesheet
139          : RT->Config->Get('WebDefaultStylesheet');
140
141my @css_files;
142if ( RT->Config->Get('DevelMode') ) {
143    @css_files = map { "/static/css/$_" } "$style/main.css", RT->Config->Get('CSSFiles');
144}
145else {
146    my $key =
147      RT::Interface::Web::SquishedCSS( $style )->Key;
148    @css_files = "/NoAuth/css/$style/squished-$key.css";
149}
150$m->callback( CallbackName => "MassageCSSFiles", CSSFiles => \@css_files, ARGSRef => \%ARGS );
151
152# We use BodyClass in its $ARGS form so that callbacks have a chance to
153# massage it
154push @{$ARGS{'BodyClass'}}, lc $style;
155
156if (RT->Config->Get("UseSideBySideLayout", $session{'CurrentUser'})) {
157    push @{$ARGS{'BodyClass'}}, 'sidebyside';
158}
159
160</%INIT>
161
162<%ARGS>
163#$Focus => 'focus'
164$Focus => ''
165$Title =>  'RT'
166$Refresh => 0
167$ShowBar => 1
168$ShowTitle => 1
169$URL => undef
170$RSSAutoDiscovery => undef
171$onload => undef
172$LinkRel => undef
173$SkipDoctype => 0
174$RichText => 1
175$BodyClass => undef
176</%ARGS>
177