]> iEval git - plack-app-gruntmaster.git/blobdiff - lib/Gruntmaster/Page/Log/Entry.pm
Introduce Gruntmaster::Page::Generic
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Log / Entry.pm
diff --git a/lib/Gruntmaster/Page/Log/Entry.pm b/lib/Gruntmaster/Page/Log/Entry.pm
deleted file mode 100644 (file)
index 57591b5..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-package Gruntmaster::Page::Log::Entry;
-
-use 5.014000;
-use strict;
-use warnings;
-use Gruntmaster::Page::Base log_entry => 'Job <tmpl_var id>';
-our @ISA = qw/Gruntmaster::Page::Base/;
-our $VERSION = '0.001';
-
-sub _generate{
-       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 = ();
-
-       eval {
-               @tests = map {
-                       $_->{time} = sprintf "%.4fs", $_->{time};
-                       $_
-               } @{job_results $id};
-       };
-
-       $htc->param(id => $id);
-       $htc->param(tests => \@tests);
-       $htc->param(errors => job_errors $id)
-}
-
-1
This page took 0.026578 seconds and 4 git commands to generate.