X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FCt%2FEntry.pm;h=acc076ead75666d4be6147ce3850669e535fd152;hb=b7bd0bad53df03baf5dc302ade58bea4f73d0880;hp=3c336c17bd0939c7b36460194b1a831b76a3972d;hpb=cd9af27e94244e6454c3db787a8ca6811f44fc16;p=gruntmaster-page.git diff --git a/lib/Gruntmaster/Page/Ct/Entry.pm b/lib/Gruntmaster/Page/Ct/Entry.pm index 3c336c1..acc076e 100644 --- a/lib/Gruntmaster/Page/Ct/Entry.pm +++ b/lib/Gruntmaster/Page/Ct/Entry.pm @@ -3,43 +3,19 @@ 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 => ''; +our @ISA = qw/Gruntmaster::Page::Base/; our $VERSION = '0.001'; -use constant TITLE => ''; +sub _generate{ + my ($self, $htc, $lang, $env, $id) = @_; + debug $env => "language is '$lang' and id is '$id'"; -use HTML::Template::Compiled; -use POSIX qw/strftime/; -use Gruntmaster::Page::Common qw/header footer/; -use Gruntmaster::Data qw/contest_name contest_start contest_end/; - -my %templates = ( - en => <<'HTML', -Contest start time:
-Contest end time:

- -Problems
-Job log
-Standings
-HTML -); - -$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates; -$templates{$_} .= footer $_ for keys %templates; - -sub generate{ - 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 + $htc->param(id => $id); + $htc->param(name => contest_name $id); + $htc->param(start => strftime '%c', localtime contest_start $id); + $htc->param(end => strftime '%c', localtime contest_end $id); + $htc->param(started => time >= contest_start $id); } 1