X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=0c842c2d20915a1763bee1871c700f681b80981e;hb=879063d7deb100035d21ff2be57dce8d090b431f;hp=a86b1532feef74dd1764a26ffc621948f8efd380;hpb=cd9af27e94244e6454c3db787a8ca6811f44fc16;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index a86b153..0c842c2 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -10,10 +10,14 @@ our $VERSION = '0.001'; use constant TITLE => 'Job log'; use constant PAGE_SIZE => 10; +use constant FORMAT_EXTENSION => { + CPP => 'cpp', +}; + use HTML::Template::Compiled; use POSIX qw/strftime/; use Gruntmaster::Page::Common qw/header footer/; -use Gruntmaster::Data qw/job_date job_file job_name job_private job_problem job_result job_result_text job_user/; +use Gruntmaster::Data qw/jobcard job_date job_extension job_filesize problem_name job_private job_problem job_result job_result_text job_user/; my %templates = ( en => <<'HTML', @@ -21,10 +25,10 @@ my %templates = ( IDProblemDateSizeUserResult - - + + - + data-private> @@ -37,19 +41,21 @@ $templates{$_} .= footer $_ for keys %templates; sub generate{ $_[0] =~ m,^(?:ct/([^/]+)/)?log/(\w+)\.html$,; local $Gruntmaster::Data::contest = $1; - my $page = $2 eq 'index' ? 0 : $2; + my $pages = jobcard / PAGE_SIZE; + my $page = $2 eq 'index' ? $pages : $2; my $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]}); my @log = sort { $b->{id} <=> $a->{id} } map +{ id => $_, (job_private() ? (private => job_private) : ()), date => (job_date() ? strftime ('%c' => localtime job_date) : '?'), - name => job_name, + extension => job_extension, + name => problem_name job_problem, problem => job_problem, result => job_result, result_text => job_result_text, - size => sprintf ("%.2f KiB", (length job_file) / 1024), - user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. $page * PAGE_SIZE; + 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->output }