]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Log.pm
Update formats
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log.pm
index 0c842c2d20915a1763bee1871c700f681b80981e..14d9c62d6d1f1e548e349ae0bcba7e19388829a7 100644 (file)
@@ -3,23 +3,24 @@ package Gruntmaster::Page::Log;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base log => 'Job log';
+our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant TITLE => 'Job log';
 use constant PAGE_SIZE => 10;
 
 use constant FORMAT_EXTENSION => {
-  CPP => 'cpp',
+       C => 'c',
+       CPP => 'cpp',
+       MONO => 'cs',
+       JAVA => 'java',
+       PASCAL => 'pas',
+       PERL => 'pl',
+       PYTHON => 'py',
+       RUBY => 'rb',
 };
 
-use HTML::Template::Compiled;
-use POSIX qw/strftime/;
-use Gruntmaster::Page::Common qw/header footer/;
-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 = (
+use constant TEMPLATES => {
        en => <<'HTML',
 <table border>
 <thead>
@@ -33,18 +34,16 @@ my %templates = (
 </tmpl_loop>
 </table>
 HTML
-);
+};
 
-$templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
-$templates{$_} .= footer $_ for keys %templates;
+sub _generate{
+       my ($self, $htc, $path, $lang) = @_;
 
-sub generate{
-       $_[0] =~ m,^(?:ct/([^/]+)/)?log/(\w+)\.html$,;
-       local $Gruntmaster::Data::contest = $1;
-       my $pages = jobcard / PAGE_SIZE;
+       $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 $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]});
        my @log = sort { $b->{id} <=> $a->{id} } map +{
                id => $_,
                (job_private() ? (private => job_private) : ()),
@@ -55,9 +54,8 @@ sub generate{
                result => job_result,
                result_text => job_result_text,
                size => sprintf ("%.2f KiB", job_filesize() / 1024),
-               user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. $page == $pages ? jobcard : $page * PAGE_SIZE;
+               user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. ($page == $pages ? jobcard : $page * PAGE_SIZE);
        $htc->param(log => \@log);
-       $htc->output
 }
 
 1
This page took 0.025562 seconds and 4 git commands to generate.