Sort problem lists by value instead of level
authorMarius Gavrilescu <marius@ieval.ro>
Thu, 7 Apr 2016 15:03:11 +0000 (18:03 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Thu, 7 Apr 2016 15:03:36 +0000 (18:03 +0300)
(cherry picked from commit 8eab1109352c846c1f5dcba55317c690812e4208)

lib/Plack/App/Gruntmaster/HTML.pm

index 21bb9d4edb648537e8a78a24af00ff59483d1721..95761824558e5838d730bc0da0c116a0a06abbe9 100644 (file)
@@ -9,7 +9,6 @@ use HTML::TreeBuilder;
 use POSIX qw//;
 use Data::Dumper qw/Dumper/;
 use Sort::ByExample
-  sorter => {-as => 'pb_sort', example => [qw/beginner easy medium hard/], xform => sub {$_->{level}}},
   sorter => {-as => 'ct_sort', example => [qw/Running Pending Finished/], xform => sub {$_->{status}}};
 
 my $optional_end_tags = {%HTML::Tagset::optionalEndTag, tr => 1, td => 1, th => 1};
@@ -218,7 +217,7 @@ sub process_pb {
                $tr->find('td')->attr(class => $tr->find('td')->attr('class').' warning') if $data->{private} && !$args{args}{contest};
        };
 
-       $tree->find('tbody')->find('tr')->iter3([pb_sort @{$args{pb}}], $iter);
+       $tree->find('tbody')->find('tr')->iter3([sort { $a->{value} <=> $b->{value} } @{$args{pb}}], $iter);
        $tree->fid('open-alert')->detach unless $args{args}{contest};
 }
 
This page took 0.010785 seconds and 4 git commands to generate.