X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog%2FEntry.pm;h=f3e3236f607d51a60d23c30dd99b8628ff662d00;hb=923655e1a9f847c21d3fdb254f58e705f4dd4da9;hp=a8abc12d250504802ab57a8ca1d3f988118b17d3;hpb=b83e43dc480771137fcff41589815556881b1243;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log/Entry.pm b/lib/Gruntmaster/Page/Log/Entry.pm index a8abc12..f3e3236 100644 --- a/lib/Gruntmaster/Page/Log/Entry.pm +++ b/lib/Gruntmaster/Page/Log/Entry.pm @@ -9,6 +9,10 @@ our $VERSION = '0.001'; use constant TEMPLATES => { en => <<'HTML', +Compiler output: +
+ +Results:
Test numberResultTime @@ -20,11 +24,9 @@ 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, $logger, $ct, $id) = @_; + debug $logger => "language is '$lang', contest is '$ct' and id is '$id'"; + local $Gruntmaster::Data::contest = $ct; my @tests = (); @@ -37,6 +39,7 @@ sub _generate{ $htc->param(id => $id); $htc->param(tests => \@tests); + $htc->param(errors => job_errors $id) } 1