]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Log.pm
Centralize template cooking and introduce reloadable templates
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log.pm
index 0c842c2d20915a1763bee1871c700f681b80981e..47c8a2e9288770b3df5d7062831aca3e3d1abe72 100644 (file)
@@ -7,7 +7,6 @@ use parent qw/Exporter/;
 our @EXPORT_OK = qw/generate/;
 our $VERSION = '0.001';
 
-use constant TITLE => 'Job log';
 use constant PAGE_SIZE => 10;
 
 use constant FORMAT_EXTENSION => {
@@ -16,10 +15,10 @@ use constant FORMAT_EXTENSION => {
 
 use HTML::Template::Compiled;
 use POSIX qw/strftime/;
-use Gruntmaster::Page::Common qw/header footer/;
+use Gruntmaster::Page::Common qw/cook_templates reload_templates/;
 use Gruntmaster::Data qw/jobcard job_date job_extension job_filesize problem_name job_private job_problem job_result job_result_text job_user/;
 
-my %templates = (
+my %orig_templates = (
        en => <<'HTML',
 <table border>
 <thead>
@@ -35,10 +34,10 @@ my %templates = (
 HTML
 );
 
-$templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
-$templates{$_} .= footer $_ for keys %templates;
+my %templates = cook_templates %orig_templates, log => 'Job log';
 
 sub generate{
+       %templates = cook_templates %orig_templates, log => 'Job log' if reload_templates;
        $_[0] =~ m,^(?:ct/([^/]+)/)?log/(\w+)\.html$,;
        local $Gruntmaster::Data::contest = $1;
        my $pages = jobcard / PAGE_SIZE;
This page took 0.022148 seconds and 4 git commands to generate.