]> iEval git - gruntmaster-page.git/commitdiff
More bug fixes
authorMarius Gavrilescu <marius@ieval.ro>
Tue, 14 Jan 2014 21:08:48 +0000 (23:08 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Tue, 14 Jan 2014 21:08:48 +0000 (23:08 +0200)
lib/Gruntmaster/Data.pm
lib/Gruntmaster/Page.pm
lib/Gruntmaster/Page/Log.pm
lib/Gruntmaster/Page/Log/Entry.pm

index 544a6d060613d816a305c5e3ea6700a351523116..9f4cf952b1d7ebc64f6759e2708bb5198a185661 100644 (file)
@@ -59,12 +59,13 @@ sub defhash{
        dynsub "push_$name", sub {
                my $nr = INCR cp . $name;
                HMSET cp . "$name.$nr", @_;
+               $nr
        };
 }
 
 defhash problem => qw/name level statement/;
 defhash contest => qw/start end name owner/;
-defhash job => qw/date file name private problem result result_text user/;
+defhash job => qw/date extension filesize private problem result result_text user/;
 
 our @EXPORT_OK = do {
        no strict 'refs';
index 5a6ed681eb835fcf214e7a70f322ad12ce22fc15..bce618c92b4216900b5327b908a4eeaecdbcd3ae 100644 (file)
@@ -38,7 +38,7 @@ sub declaregen{
        declaregen 'Ct::Entry'          => qr,^ct/$component/index$,;
        declaregen St                           => qr,^ct/$component/log/st$,;
        declaregen Log                          => qr,^${contest}log/(?:\d+|index)$,;
-       declaregen 'Log::Entry' => qr,^${contest}log/$component/index$,;
+       declaregen 'Log::Entry' => qr,^${contest}log/job/$component$,;
        declaregen Submit                       => qr,^${contest}submit$,;
        declaregen Pb                           => qr,^${contest}pb/index$,;
        declaregen 'Pb::Entry'          => qr,^${contest}pb/$component$,;
index 5a2b4c6a91d36cb13a846479f91f6baedb79ff05..0c842c2d20915a1763bee1871c700f681b80981e 100644 (file)
@@ -17,7 +17,7 @@ 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::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',
@@ -25,10 +25,10 @@ my %templates = (
 <thead>
 <tr><th>ID<th>Problem<th>Date<th>Size<th>User<th>Result
 <tbody>
-<tmpl_loop log><tr><td><a href="<tmpl_var id>"><tmpl_var id></a>
+<tmpl_loop log><tr><td><a href="job/<tmpl_var id>.var"><tmpl_var id></a>
 <td><a href="../pb/<tmpl_var problem>"><tmpl_var name></a>
 <td><tmpl_var date>
-<td><a href="src/<tmpl_var filename>"<tmpl_if private> data-private</tmpl_if>><tmpl_var size></a></a>
+<td><a href="src/<tmpl_var id>.<tmpl_var extension>"<tmpl_if private> data-private</tmpl_if>><tmpl_var size></a></a>
 <td><tmpl_var user><td class="r<tmpl_var result>"><tmpl_var result_text>
 </tmpl_loop>
 </table>
@@ -41,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) : '?'),
+               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
 }
index 309660a3065155f55f701790a18431c6b78e7c80..3e9e08fed2f2d8762a93a62f87ab6cdf07ccde26 100644 (file)
@@ -30,7 +30,7 @@ $templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
 $templates{$_} .= footer $_ for keys %templates;
 
 sub generate{
-       $_[0] =~ m,^(?:ct/([^/]+)/)?log/([^/]+)/index\.html$,;
+       $_[0] =~ m,^(?:ct/([^/]+)/)?log/job/([^/]+)\.html$,;
        local $Gruntmaster::Data::contest = $1;
        my $id = $2;
 
This page took 0.029974 seconds and 4 git commands to generate.