123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- # Copyright (C) 2004 Alex Schroeder <alex@emacswiki.org>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- use strict;
- use v5.10;
- AddModuleDescription('header-and-footer-templates.pl', 'Comments on HTML Templates');
- our ($q, $Now, $Message, $DataDir, %SpecialDays);
- our ($HtmlTemplateDir);
- use HTML::Template;
- $HtmlTemplateDir = "$DataDir/templates";
- sub HtmlTemplateLanguage {
- my $requested_language = $q->http('Accept-language');
- my @languages = split(/ *, */, $requested_language);
- my %Lang = ();
- foreach (@languages) {
- my $qual = 1;
- $qual = $1 if (/q=([0-9.]+)/);
- $Lang{$qual} = $1 if (/^([-a-z]+)/);
- }
- return map { $Lang{$_} } sort { $b <=> $a } keys %Lang;
- }
- sub HtmlTemplate {
- my $type = shift;
- # return header.de.html, or header.html, or error.html, or report an error...
- foreach my $f ((map { "$type.$_" } HtmlTemplateLanguage()), $type, "error") {
- return "$HtmlTemplateDir/$f.html" if IsFile("$HtmlTemplateDir/$f.html");
- }
- ReportError(Tss('Could not find %1.html template in %2', $type, $HtmlTemplateDir),
- '500 INTERNAL SERVER ERROR');
- }
- sub GetSpecialDays {
- if (%SpecialDays) {
- my ($sec, $min, $hour, $mday, $mon, $year) = gmtime($Now);
- return $SpecialDays{($mon + 1) . '-' . $mday};
- }
- }
- *GetHeader = \&HeaderTemplate;
- sub HeaderTemplate {
- my ($id, $title, $oldId, $nocache, $status) = @_;
- if ($oldId ne '') {
- $Message .= $q->p('(' . Ts('redirected from %s', GetEditLink($oldId, $oldId)) . ')');
- }
- my $template = HTML::Template->new(filename => HtmlTemplate('header'),
- die_on_bad_params => 0);
- $template->param(GOTO_BAR => GetGotoBar($id));
- $template->param(SPECIAL_DAYS => GetSpecialDays());
- $template->param(MESSAGE => $Message);
- $template->param(ID => $id);
- $template->param(TITLE => $title);
- $template->param(SEARCH => GetSearchForm());
- return GetHttpHeader('text/html', $nocache ? $Now : 0, $status)
- . $template->output;
- }
- *PrintFooter = \&PrintFooterTemplate;
- sub PrintFooterTemplate {
- my ($id, $rev, $comment) = @_;
- my $template = HTML::Template->new(filename => HtmlTemplate('footer'),
- die_on_bad_params => 0);
- $template->param(GOTO_BAR => GetGotoBar($id));
- $template->param(SPECIAL_DAYS => GetSpecialDays());
- $template->param(ID => $id);
- $template->param(COMMENT_FORM => GetCommentForm($id, $rev, $comment));
- $template->param(FOOTER_LINKS => GetFooterLinks($id, $rev));
- $template->param(ADMIN_LINKS => GetAdminBar($id, $rev)) if UserIsAdmin();
- $template->param(TIMESTAMP => GetFooterTimestamp($id, $rev));
- $template->param(SEARCH => GetSearchForm());
- $template->param(SISTER_SITES => GetSisterSites($id));
- $template->param(NEAR_LINKS_USED => GetNearLinksUsed($id));
- print $template->output;
- }
|