X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=4773fecaaac7b86326855b350f60bebce4b7d64e;hb=1053baeebc541fc3508aabb6121759bb4a884e23;hp=c9d0dfb60834a277e9b6ff58071ce6a68d2fc64c;hpb=b9d003fd060ca4af99273a8d2915bfd7de5cb14c;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index c9d0dfb..4773fec 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -11,31 +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); $pages ||= 1; - my $page = $2 eq 'index' ? $pages : $2; + $page ||= $pages; my @log = sort { $b->{id} <=> $a->{id} } map +{ id => $_,