/[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 7 by dpavlin, Tue Dec 5 16:48:10 2006 UTC revision 10 by dpavlin, Tue Dec 5 17:49:46 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  };  };
39    
40  sub sticky_on_success { 1; }  sub sticky_on_success { 1; }
# Line 43  sub take_action { Line 47  sub take_action {
47      my $self = shift;      my $self = shift;
48            
49          my $author = $self->argument_value('author');          my $author = $self->argument_value('author');
50          warn "author: $author\n";          my $msg = '';
51                $msg .= "Showing only commits for $author" if ($author);
52      $self->result->message("Showing only commits from $author");          $msg .= ( $msg ? ' and file actions' : ' File actions' ) if ( $self->argument_value('show_actions') );
53        $self->result->message($msg) if ($msg);
54            
55      return 1;      return 1;
56  }  }

Legend:
Removed from v.7  
changed lines
  Added in v.10

  ViewVC Help
Powered by ViewVC 1.1.26