]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Ct/Entry.pm
Make all generators inherit from a common base
[gruntmaster-page.git] / lib / Gruntmaster / Page / Ct / Entry.pm
index bba2991c6e8a13d5fbeebbd473cbd440cb2806a4..6266661e39c288d4112c2a5c475ec87224968857 100644 (file)
@@ -3,16 +3,11 @@ package Gruntmaster::Page::Ct::Entry;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base ct_entry => '<tmpl_var name>';
+our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use HTML::Template::Compiled;
-use POSIX qw/strftime/;
-use Gruntmaster::Page::Common qw/cook_templates reload_templates/;
-use Gruntmaster::Data qw/contest_name contest_start contest_end/;
-
-my %orig_templates = (
+use constant TEMPLATES => {
        en => <<'HTML',
 Contest start time: <tmpl_var start><br>
 Contest end time: <tmpl_var end><p>
@@ -21,23 +16,18 @@ Contest end time: <tmpl_var end><p>
 <a href="log/">Job log</a><br>
 <a href="log/st.var">Standings</a></tmpl_if>
 HTML
-);
+};
 
-my %templates = cook_templates %orig_templates, ct_entry => '<tmpl_var name>';
+sub _generate{
+       my ($self, $htc, $path, $lang) = @_;
 
-sub generate{
-       %templates = cook_templates %orig_templates, ct_entry => '<tmpl_var name>' if reload_templates;
-       my ($path, $lang) = @_;
        $path = ($path =~ m,ct/(.*)/index,)[0];
-       my $template = $templates{$lang};
-       my $htc = HTML::Template::Compiled->new(scalarref => \$template);
 
        $htc->param(id => $path);
        $htc->param(name => contest_name $path);
        $htc->param(start => strftime '%c', contest_start);
        $htc->param(end => strftime '%c', contest_end);
        $htc->param(started => time >= contest_start);
-       $htc->output
 }
 
 1
This page took 0.029812 seconds and 4 git commands to generate.