]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Ct.pm
Make all generators inherit from a common base
[gruntmaster-page.git] / lib / Gruntmaster / Page / Ct.pm
index 1c108fddf5162f534ede875c41128c6e89c3d69d..f5c6c1f0d2cc9ed6ee53f83137f3b6bb1a5314c4 100644 (file)
@@ -3,16 +3,11 @@ package Gruntmaster::Page::Ct;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base ct => 'Contests';
+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/contests contest_name contest_start contest_end contest_owner/;
-
-my %orig_templates = (
+use constant TEMPLATES => {
        en => <<'HTML',
 <tmpl_if running>
 <h1>Running contests</h1>
@@ -56,13 +51,10 @@ my %orig_templates = (
 </table>
 </tmpl_if>
 HTML
-);
-
-my %templates = cook_templates %orig_templates, ct => 'Contests';
+};
 
-sub generate{
-       %templates = cook_templates %orig_templates, ct => 'Contests' if reload_templates;
-       my $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]});
+sub _generate{
+       my ($self, $htc, $path, $lang) = @_;
 
        my (@running, @pending, @finished);
        for (contests) {
@@ -81,7 +73,6 @@ sub generate{
        $htc->param(running => \@running);
        $htc->param(pending => \@pending);
        $htc->param(finished => \@finished);
-       $htc->output
 }
 
 1
This page took 0.017757 seconds and 4 git commands to generate.