]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Pb.pm
Add example test suite
[gruntmaster-page.git] / lib / Gruntmaster / Page / Pb.pm
index da518de3f35582021d41f792169c046b20b4ea92..ba78869c5f763fbafcc40a1c187379117f37df1a 100644 (file)
@@ -7,40 +7,9 @@ use Gruntmaster::Page::Base pb => 'Problems';
 our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant TEMPLATES => {
-       en => <<'HTML',
-<tmpl_if levels>
-<h2>Beginner</h2>
-<ul>
-<tmpl_loop beginner><li><a href="<tmpl_var id>"><tmpl_var name></a>
-</tmpl_loop></ul>
-
-<h2>Easy</h2>
-<ul>
-<tmpl_loop easy><li><a href="<tmpl_var id>"><tmpl_var name></a>
-</tmpl_loop></ul>
-
-<h2>Medium</h2>
-<ul>
-<tmpl_loop medium><li><a href="<tmpl_var id>"><tmpl_var name></a>
-</tmpl_loop></ul>
-
-<h2>Hard</h2>
-<ul>
-<tmpl_loop hard><li><a href="<tmpl_var id>"><tmpl_var name></a>
-</tmpl_loop></ul>
-
-<tmpl_else>
-<ul>
-<tmpl_loop problems><li><a href="<tmpl_var id>"><tmpl_var name></a>
-</tmpl_loop></ul>
-</tmpl_if>
-HTML
-};
-
 sub _generate{
-       my ($self, $htc, $lang, $logger, $ct) = @_;
-       debug $logger => "language is '$lang' and contest is '$ct'";
+       my ($self, $htc, $lang, $env, $ct) = @_;
+       debug $env => "language is '$lang' and contest is '$ct'";
        local $Gruntmaster::Data::contest = $ct if $ct;
 
        my @problems = sort { $b->{name} cmp $a->{name} } map +{
This page took 0.021585 seconds and 4 git commands to generate.