]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page/Pb/Entry.pm
Fix file submit
[gruntmaster-page.git] / lib / Gruntmaster / Page / Pb / Entry.pm
CommitLineData
42546e6c
MG
1package Gruntmaster::Page::Pb::Entry;
2
3use 5.014000;
4use strict;
5use warnings;
bb95f538
MG
6use Gruntmaster::Page::Base pb_entry => '<tmpl_var name>';
7our @ISA = qw/Gruntmaster::Page::Base/;
42546e6c
MG
8our $VERSION = '0.001';
9
8d29b3b1
MG
10use constant FORMATS => [qw/C CPP MONO JAVA PASCAL PERL PYTHON/];
11
bb95f538 12sub _generate{
191f4979
MG
13 my ($self, $htc, $lang, $env, $contest, $id) = @_;
14 debug $env => "language is '$lang', contest is '$contest', id is '$id'";
cd9af27e
MG
15
16 $htc->param(cansubmit => 1);
a94f8453 17 if ($contest) {
9f8cf806 18 $htc->param(cansubmit => time <= contest_end $contest);
cd9af27e
MG
19 $htc->param(contest => $contest);
20 }
8d29b3b1 21 $htc->param(formats => FORMATS);
cd9af27e 22 $htc->param(id => $id);
3da9c3c2 23 local $Gruntmaster::Data::contest = $contest if $contest;
cd9af27e 24 $htc->param(name => problem_name $id);
2ee6edcf
MG
25 $htc->param(author => problem_author $id);
26 $htc->param(owner => problem_owner $id);
3da9c3c2 27 $htc->param(statement => problem_statement $id);
42546e6c
MG
28}
29
301
This page took 0.031177 seconds and 4 git commands to generate.