X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=7fe888523f0809acda18af0cf88eb0545ff33dae;hb=5c6aea9392c11422abe85788aac0f62ad3a4dd14;hp=19862a82b69a8840a5dd6a00c615a8a5bea30c71;hpb=a94f84535623ae0de44b63290aa4c8b1bf3e5eaa;p=gruntmaster-page.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index 19862a8..7fe8885 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -1,38 +1,12 @@ package Gruntmaster::Page::Log; -use 5.014000; -use strict; -use warnings; use Gruntmaster::Page::Base log => 'Job log'; -our @ISA = qw/Gruntmaster::Page::Base/; -our $VERSION = '0.001'; use constant PAGE_SIZE => 10; -use constant TEMPLATES => { - en => <<'HTML', - - - -
IDProblemDateSizeUserResult -
- - - data-private> - - -
- - -HTML -}; - sub _generate{ - my ($self, $htc, $lang, $logger, $ct, $page) = @_; - debug $logger => "language is '$lang', contest is '$ct' and page is '$page'"; + my ($self, $htc, $lang, $env, $ct, $page) = @_; + debug $env => "language is '$lang', contest is '$ct' and page is '$page'"; local $Gruntmaster::Data::contest = $ct if $ct; my $pages = POSIX::floor (jobcard / PAGE_SIZE); @@ -55,4 +29,6 @@ sub _generate{ $htc->param(prev => $page - 1) unless $page == 1; } +sub max_age { 5 } + 1