X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FPb%2FEntry.pm;h=8877ce54cd9774934e364dec26d5e41ba0e24a07;hb=e63eaf407e505337cd02d7bc7ca3010ab6337348;hp=f03fe7aa265b569dfbb03b046daac7f77f64e080;hpb=5c6aea9392c11422abe85788aac0f62ad3a4dd14;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Pb/Entry.pm b/lib/Gruntmaster/Page/Pb/Entry.pm index f03fe7a..8877ce5 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); @@ -25,7 +25,9 @@ sub _generate{ $htc->param(name => problem_name $id); $htc->param(author => problem_author $id); $htc->param(owner => problem_owner $id); + $htc->param(owner_name => do{ local $Gruntmaster::Data::contest; user_name $htc->param('owner')} ); $htc->param(statement => problem_statement $id); + $htc->param(timelimit => problem_timeout $id); } sub vary { 'Authorization' }