/[SVNBrowser]/trunk/share/web/templates/list
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/share/web/templates/list

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

revision 39 by dpavlin, Sun Dec 17 15:05:20 2006 UTC revision 47 by dpavlin, Tue Feb 6 23:28:48 2007 UTC
# Line 1  Line 1 
1  <%args>  <%args>
2  $filter  $next => undef
 $next  
3  </%args>  </%args>
4    
5  <%init>  <%init>
6    my $filter = Jifty->web->new_action(
7            class => 'Filter',
8            moniker => 'filter_list',
9            arguments => { %ARGS },
10    );
11    
12    #use Data::Dump qw/dump/;
13    #warn "ARGS = ", dump( %ARGS );
14  </%init>  </%init>
15    
16  <&| /_elements/wrapper, title => "SVN Reporitory Browser" &>  <&| /_elements/wrapper, title => "SVN Reporitory Browser" &>
# Line 12  $next Line 19  $next
19    
20  <% $filter->form_field('author') %>  <% $filter->form_field('author') %>
21  <% $filter->form_field('branch') %>  <% $filter->form_field('branch') %>
22    <% $filter->form_field('rel_path') %>
23  <% $filter->form_field('search') %>  <% $filter->form_field('search') %>
24    
25  <div class="inline">  <div class="inline">
# Line 27  $next Line 35  $next
35    
36  % if ( $filter->result and my $revisions = $filter->result->content('revisions') ) {  % if ( $filter->result and my $revisions = $filter->result->content('revisions') ) {
37    
 % my $actions = SVNBrowser::Model::ActionCollection->new();  
38  <dl>  <dl>
39  % while (my $r = $revisions->next) {  % while (my $r = $revisions->next) {
40          <dt><% Jifty->web->tangent(          <& /actions,
41                  url => '/rev/' . $r->revision,                  revision => $r->revision,
42                  label => $r->revision,                  rel_path => $filter->argument_value('rel_path'),
43                  continuation => $next,                  next => $next,
44          ) %>                  show_actions => $filter->argument_value('show_actions'),
45          <span class="author"><% $r->author %></span>                  r => $r
46          <span class="commit_date"><% $r->commit_date %></span>          &>
         </dt>  
         <dd>  
         <pre class="commit_message"><% $r->message %></pre>  
 %       if ($filter->argument_value('show_actions')) {  
                 <ul class="actions">  
 %               $actions->unlimit;  
 %               $actions->limit( column => 'revision', value => $r->revision );  
 %               while (my $a = $actions->next) {  
 %                       my $full_path = $a->branch . $a->rel_path ;  
                         <li><tt class="action-<% $a->type %>"><% $a->type %> <% $full_path %>  
                         <% Jifty->web->tangent( url => '/rev/' . $r->revision . $full_path, label => 'diff', continuation => $next ) %>  
                         </tt></li>  
 %               }  
                 </ul>  
 %       }  
   
         </dd>  
47  % }  % }
48  </dl>  </dl>
49    

Legend:
Removed from v.39  
changed lines
  Added in v.47

  ViewVC Help
Powered by ViewVC 1.1.26