X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=6848bcfc8dbf141f7e8f97c4d2483f928fffe89c;hb=1ad43ccc6aec756b3f2cc47b9da57ba67de29165;hp=68f45fdc3790bfe8ca045740d0782c1a36cd911a;hpb=9da2f4958089ae517865b808be61bb12d43b61de;p=gruntmaster-page.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index 68f45fd..6848bcf 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -1,11 +1,6 @@ package Gruntmaster::Page::Log; -use 5.014000; -use strict; -use warnings; use Gruntmaster::Page::Base log => 'Job log'; -our @ISA = qw/Gruntmaster::Page::Base/; -our $VERSION = '0.001'; use constant PAGE_SIZE => 10; @@ -29,6 +24,7 @@ sub _generate{ result_text => job_result_text, size => sprintf ("%.2f KiB", job_filesize() / 1024), user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. ($page == $pages ? jobcard : $page * PAGE_SIZE); + $_->{user_name} = do { local $Gruntmaster::Data::contest; user_name $_->{user} } for @log; $htc->param(log => \@log); $htc->param(next => $page + 1) unless $page == $pages; $htc->param(prev => $page - 1) unless $page == 1;