/[SVNBrowser]/branches/filter-action/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 /branches/filter-action/lib/SVNBrowser/Action/Filter.pm

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

revision 14 by dpavlin, Wed Dec 6 20:42:13 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';
# Line 51  use Jifty::Action schema { Line 68  use Jifty::Action schema {
68                  label is 'To date',                  label is 'To date',
69                  render as 'Date';                  render as 'Date';
70    
71            param search =>
72                    label is 'Search in messages';
73    
74  };  };
75    

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

  ViewVC Help
Powered by ViewVC 1.1.26