X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=68f45fdc3790bfe8ca045740d0782c1a36cd911a;hb=9da2f4958089ae517865b808be61bb12d43b61de;hp=dddd86eb9883d18becb146ca90bd826f8a1fa0f9;hpb=493d07a5f51f34f395da012b1aecd31b55e81a32;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index dddd86e..68f45fd 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -9,33 +9,14 @@ our $VERSION = '0.001'; use constant PAGE_SIZE => 10; -use constant FORMAT_EXTENSION => { - CPP => 'cpp', -}; - -use constant TEMPLATES => { - en => <<'HTML', - - - -
IDProblemDateSizeUserResult -
- - - data-private> - - -
-HTML -}; - sub _generate{ - my ($self, $htc, $path, $lang) = @_; + 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; - $path =~ m,^(?:ct/([^/]+)/)?log/(\w+)\.html$,; - local $Gruntmaster::Data::contest = $1 if $1; - my $pages = POSIX::ceil (jobcard / PAGE_SIZE); - my $page = $2 eq 'index' ? $pages : $2; + my $pages = POSIX::floor (jobcard / PAGE_SIZE); + $pages ||= 1; + $page ||= $pages; my @log = sort { $b->{id} <=> $a->{id} } map +{ id => $_, @@ -49,6 +30,10 @@ sub _generate{ size => sprintf ("%.2f KiB", job_filesize() / 1024), user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. ($page == $pages ? jobcard : $page * PAGE_SIZE); $htc->param(log => \@log); + $htc->param(next => $page + 1) unless $page == $pages; + $htc->param(prev => $page - 1) unless $page == 1; } +sub max_age { 5 } + 1