/[SVNBrowser]/trunk/lib/SVNBrowser/Action/Filter.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/SVNBrowser/Action/Filter.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5 by dpavlin, Tue Dec 5 15:08:46 2006 UTC revision 14 by dpavlin, Wed Dec 6 20:42:13 2006 UTC
# Line 31  use Jifty::Action schema { Line 31  use Jifty::Action schema {
31                          }];                          }];
32                  };                  };
33    
34            param show_actions =>
35                    label is 'Show file actions',
36                    render as 'checkbox';
37    
38            param page =>
39                    label is 'Current page';
40    
41            param per_page =>
42                    label is 'Commits on page',
43                    render as 'Select',
44                    available are qw( 10 20 30 50 100 );
45    
46            param from_date =>
47                    label is 'From date',
48                    render as 'Date';
49    
50            param to_date =>
51                    label is 'To date',
52                    render as 'Date';
53    
54    
55  };  };
56    
57  sub sticky_on_success { 1; }  sub sticky_on_success { 1; }
# Line 43  sub take_action { Line 64  sub take_action {
64      my $self = shift;      my $self = shift;
65            
66          my $author = $self->argument_value('author');          my $author = $self->argument_value('author');
67          warn "author: $author\n";          my $msg = '';
68                $msg .= "Showing only commits for $author" if ($author);
69      $self->result->message('Success');          $msg .= ( $msg ? ' and file actions' : 'Showing file actions for each commit' ) if ( $self->argument_value('show_actions') );
70        $self->result->message($msg) if ($msg);
71            
72      return 1;      return 1;
73  }  }

Legend:
Removed from v.5  
changed lines
  Added in v.14

  ViewVC Help
Powered by ViewVC 1.1.26