X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FPlack%2FApp%2FGruntmaster%2FHTML.pm;h=b67ef296cf544a0164e7ecadb175a33485680d6c;hb=dd962dd2b75089dabe9f01ddad0a51529e78f3ec;hp=59e0293df4399ab68f8c9877ef46c66c57c0ec1f;hpb=e8147a9466b97f5a2c5d216a0a833abaab19259a;p=plack-app-gruntmaster.git diff --git a/lib/Plack/App/Gruntmaster/HTML.pm b/lib/Plack/App/Gruntmaster/HTML.pm index 59e0293..b67ef29 100644 --- a/lib/Plack/App/Gruntmaster/HTML.pm +++ b/lib/Plack/App/Gruntmaster/HTML.pm @@ -91,8 +91,6 @@ sub _render { $tree->defmap(smap => \%args); my $process = __PACKAGE__->can("process_$tmpl"); $process->($tree, %args) if $process; - $_->detach for $tree->look_down(static => $args{static} ? 'no' : 'yes'); - $_->attr('static', undef) for $tree->look_down(sub {$_[0]->attr('static')}); $_->attr('smap', undef) for $tree->look_down(sub {$_[0]->attr('smap')}); $tree->as_HTML(undef, undef, $optional_end_tags); } @@ -195,16 +193,11 @@ sub process_pb_entry { $_->detach for $tree->fclass('rc'); # requires contest $tree->fid('solution_modal')->replace_content(literal $args{solution}); } - if ($args{cansubmit}) { - $tree->fid('nosubmit')->detach; - $tree->look_down(name => 'problem')->attr(value => $args{id}); - my $contest = $tree->look_down(name => 'contest'); - $contest->attr(value => $args{args}{contest}) if $args{args}{contest}; - $contest->detach unless $args{args}{contest} - } else { - $tree->fid('nosubmit')->find('a')->edit_href(sub{s/id/$args{id}/}); - $tree->fid('submit')->detach - } + + $tree->look_down(name => 'problem')->attr(value => $args{id}); + my $contest = $tree->look_down(name => 'contest'); + $contest->attr(value => $args{args}{contest}) if $args{args}{contest}; + $contest->detach unless $args{args}{contest} } sub process_sol { @@ -285,10 +278,6 @@ sub process_log { $elem->find('a')->edit_href(sub{s/$/&$str/}) if $str; } $tree->fclass('current')->replace_content("Page $args{current_page} of $args{last_page}"); - - my @detach; - push @detach, $args{args}{$_} ? $tree->fclass($_) : () for qw/problem contest owner/; - $_->detach for @detach; } sub process_st {