X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FSrc.pm;h=8f9ab1b89ea9b45d8194df8fa97db8bc57766ad1;hb=5c6aea9392c11422abe85788aac0f62ad3a4dd14;hp=77a5cd20cf4511a5e6c8dcf2f95a86d4a1f8081b;hpb=923655e1a9f847c21d3fdb254f58e705f4dd4da9;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Src.pm b/lib/Gruntmaster/Page/Src.pm index 77a5cd2..8f9ab1b 100644 --- a/lib/Gruntmaster/Page/Src.pm +++ b/lib/Gruntmaster/Page/Src.pm @@ -1,11 +1,6 @@ package Gruntmaster::Page::Src; -use 5.014000; -use strict; -use warnings; use Gruntmaster::Page::Base; -our @ISA = qw/Gruntmaster::Page::Base/; -our $VERSION = '0.001'; use constant CONTENT_TYPES => +{ c => 'text/x-csrc', @@ -18,13 +13,11 @@ use constant CONTENT_TYPES => +{ }; sub generate{ - my ($self, $format, $logger, $ct, $job, $ext) = @_; - debug $logger => "Contest is $ct, job is $job and extension is $ext"; + my ($self, $format, $env, $ct, $job, $ext) = @_; + debug $env => "Contest is $ct, job is $job and extension is $ext"; local $Gruntmaster::Data::contest = $ct if $ct; - [200, ['Content-Type' => CONTENT_TYPES->{$ext}, 'Cache-Control' => 'max-age=604800'], [job_inmeta($job)->{files}{prog}{content}] ] + [200, ['Content-Type' => CONTENT_TYPES->{$ext}, 'Cache-Control' => 'max-age=604800', 'X-Forever' => 1], [job_inmeta($job)->{files}{prog}{content}] ] } -sub variants{ [[file => 1, undef, undef, undef, undef, undef]] } - 1