X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=47c8a2e9288770b3df5d7062831aca3e3d1abe72;hb=4aa8ba862bf3a79362df73c3d1e8707e8135af23;hp=5a2b4c6a91d36cb13a846479f91f6baedb79ff05;hpb=3da9c3c228106c819530a0b8e4c646981e6f71c9;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index 5a2b4c6..47c8a2e 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -7,7 +7,6 @@ use parent qw/Exporter/; our @EXPORT_OK = qw/generate/; our $VERSION = '0.001'; -use constant TITLE => 'Job log'; use constant PAGE_SIZE => 10; use constant FORMAT_EXTENSION => { @@ -16,44 +15,46 @@ use constant FORMAT_EXTENSION => { use HTML::Template::Compiled; use POSIX qw/strftime/; -use Gruntmaster::Page::Common qw/header footer/; -use Gruntmaster::Data qw/job_date job_file problem_name job_private job_problem job_result job_result_text job_user/; +use Gruntmaster::Page::Common qw/cook_templates reload_templates/; +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 = ( +my %orig_templates = ( en => <<'HTML', -
IDProblemDateSizeUserResult
+
- data-private> + data-private>
HTML ); -$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates; -$templates{$_} .= footer $_ for keys %templates; +my %templates = cook_templates %orig_templates, log => 'Job log'; sub generate{ + %templates = cook_templates %orig_templates, log => 'Job log' if reload_templates; $_[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) : '?'), + 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 }