]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Submit.pm
Remove some languages
[gruntmaster-page.git] / lib / Gruntmaster / Page / Submit.pm
index 3f289d5c50eebb1f6b0e7680a48f07b92346273c..344661b142ee74f0800b1e32d3f89594c1ed01d6 100644 (file)
@@ -3,20 +3,13 @@ package Gruntmaster::Page::Submit;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base submit => 'Submit job';
+our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant FORMATS => [qw/CPP/];
-use constant TITLE => 'Submit job';
+use constant FORMATS => [qw/C CPP JAVA PERL PYTHON/];
 
-use Fcntl qw/:flock/;
-use HTML::Template::Compiled;
-use YAML::Any qw/LoadFile/;
-use Gruntmaster::Page::Common qw/header footer/;
-use Gruntmaster::Data qw//;
-
-my %templates = (
+use constant TEMPLATES => {
        en => <<'HTML',
 <form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data">
 <label>Problem:<br>
@@ -34,17 +27,14 @@ my %templates = (
 
 <input type="submit" value="Submit job">
 HTML
-);
+};
 
-$templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
-$templates{$_} .= footer $_ for keys %templates;
+sub _generate{
+       my ($self, $htc, $path, $lang) = @_;
 
-sub generate{
-       my $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]});
        my @problems = map +{ id => $_, name => problem_name }, problems;
        $htc->param(problems => \@problems);
        $htc->param(formats => FORMATS);
-       $htc->output
 }
 
 1
This page took 0.026208 seconds and 4 git commands to generate.