X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FPb%2FEntry.pm;h=9f3fc6b54ee051342288849732a59ef7da19d1e1;hb=fd7ea993642eacb1f0a6beb2a2a8464fcf8480c4;hp=f03fe7aa265b569dfbb03b046daac7f77f64e080;hpb=e3ab4b036900e0ae2f0b0a39641b2aed82fce8f5;p=gruntmaster-page.git diff --git a/lib/Gruntmaster/Page/Pb/Entry.pm b/lib/Gruntmaster/Page/Pb/Entry.pm index f03fe7a..9f3fc6b 100644 --- a/lib/Gruntmaster/Page/Pb/Entry.pm +++ b/lib/Gruntmaster/Page/Pb/Entry.pm @@ -2,7 +2,7 @@ package Gruntmaster::Page::Pb::Entry; use Gruntmaster::Page::Base pb_entry => ''; -use constant FORMATS => [qw/C CPP JAVA PERL PYTHON/]; +use constant FORMATS => [qw/C CPP JAVA PASCAL PERL PYTHON/]; sub _generate{ my ($self, $htc, $lang, $env, $contest, $id) = @_; @@ -16,7 +16,7 @@ sub _generate{ $htc->param(cansubmit => 1); if ($contest) { - $htc->param(cansubmit => time <= contest_end $contest); + $htc->param(cansubmit => (time <= contest_end $contest)); $htc->param(contest => $contest); } $htc->param(formats => FORMATS); @@ -26,6 +26,7 @@ sub _generate{ $htc->param(author => problem_author $id); $htc->param(owner => problem_owner $id); $htc->param(statement => problem_statement $id); + $htc->param(timelimit => problem_timeout $id); } sub vary { 'Authorization' }