/[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 25 by dpavlin, Wed Dec 6 23:20:47 2006 UTC revision 26 by dpavlin, Sun Dec 10 00:01:33 2006 UTC
# Line 31  use Jifty::Action schema { Line 31  use Jifty::Action schema {
31                          }];                          }];
32                  };                  };
33    
34            param branch =>
35                    label is 'In branch',
36                    render as 'combobox',
37                    available are defer {
38                            my $branches = SVNBrowser::Model::BranchCollection->new;
39                            $branches->column(
40                                    column => 'path',
41                                    function => 'distinct',
42                            );
43                            $branches->unlimit;
44                            [{
45                                    display_from => 'path',
46                                    value_from => 'path',
47                                    collection => $branches,
48                            }];
49                    };
50    
51          param show_actions =>          param show_actions =>
52                  label is 'Show file actions',                  label is 'Show file actions',
53                  render as 'checkbox';                  render as 'checkbox';

Legend:
Removed from v.25  
changed lines
  Added in v.26

  ViewVC Help
Powered by ViewVC 1.1.26