X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=9192d9580b2b198d6eb30783917c124eaeabf216;hb=ff57a758b0a8e3389c99b75682c2c5646f47ae99;hp=2379e804815c816f81cae63081b441bee514569a;hpb=b83e43dc480771137fcff41589815556881b1243;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index 2379e80..9192d95 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -11,30 +11,33 @@ use constant PAGE_SIZE => 10; use constant TEMPLATES => { en => <<'HTML', - +
-
IDProblemDateSizeUserResult
- +
+ data-private>
-Prev page -Next page + 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::floor (jobcard / PAGE_SIZE); - my $page = $2 eq 'index' ? $pages : $2; + $pages ||= 1; + $page ||= $pages; my @log = sort { $b->{id} <=> $a->{id} } map +{ id => $_, @@ -52,4 +55,6 @@ sub _generate{ $htc->param(prev => $page - 1) unless $page == 1; } +sub max_age { 5 } + 1