]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Log/Entry.pm
Add example test suite
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log / Entry.pm
index 2c4aa3acb5cfc1bec533ddf6e673a08e5c80e642..57591b5da3837d2bb3c8bfcd3e5fec057e9f051a 100644 (file)
@@ -7,28 +7,10 @@ use Gruntmaster::Page::Base log_entry => 'Job <tmpl_var id>';
 our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant TEMPLATES => {
-       en => <<'HTML',
-Compiler output:
-<pre><tmpl_var errors></pre>
-
-Results:
-<table border>
-<thead>
-<tr><th>Test number<th>Result<th>Time
-<tbody>
-<tmpl_loop tests><tr><td><tmpl_var id><td class="r<tmpl_var result>"><tmpl_var result_text><td><tmpl_var time>
-</tmpl_loop>
-</table>
-HTML
-};
-
 sub _generate{
-       my ($self, $htc, $path, $lang) = @_;
-
-       $path =~ m,^(?:ct/([^/]+)/)?log/job/([^/]+)\.html$,;
-       local $Gruntmaster::Data::contest = $1;
-       my $id = $2;
+       my ($self, $htc, $lang, $env, $ct, $id) = @_;
+       debug $env => "language is '$lang', contest is '$ct' and id is '$id'";
+       local $Gruntmaster::Data::contest = $ct if $ct;
 
        my @tests = ();
 
This page took 0.022644 seconds and 4 git commands to generate.