X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=7fe888523f0809acda18af0cf88eb0545ff33dae;hb=81cce380bd7f2ab58bb497ef748b7568968ea05d;hp=f46e6a9e93e836e27f38731b6424d19c73b05f57;hpb=7dc3247307f2e86af154dc449224f22ba8923c79;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index f46e6a9..7fe8885 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -1,41 +1,17 @@ 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> - - -
- -Prev page -Next page -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); $pages ||= 1; - $page //= $pages; + $page ||= $pages; my @log = sort { $b->{id} <=> $a->{id} } map +{ id => $_, @@ -53,4 +29,6 @@ sub _generate{ $htc->param(prev => $page - 1) unless $page == 1; } +sub max_age { 5 } + 1