##// END OF EJS Templates
Adds checkboxes toggle links on permissions report....
Adds checkboxes toggle links on permissions report. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1770 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1613:12fbd06c02d4
r1769:6ad989f82887
Show More
changes.rhtml
19 lines | 982 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %></h2>
<p>
Jean-Philippe Lang
Always show 'View' and 'Annotate' links on repository files (download will be forced when clicking 'View' if the file is binary)....
r1259 <% if @repository.supports_cat? %>
Jean-Philippe Lang
Merged Rails 2.1 compatibility branch....
r1609 <%= link_to l(:button_view), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
Jean-Philippe Lang
Always show 'View' and 'Annotate' links on repository files (download will be forced when clicking 'View' if the file is binary)....
r1259 <% end %>
<% if @repository.supports_annotate? %>
Jean-Philippe Lang
Merged Rails 2.1 compatibility branch....
r1609 <%= link_to l(:button_annotate), {:action => 'annotate', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>
Jean-Philippe Lang
Merged Rails 2.1 compatibility branch....
r1609 <%= link_to(l(:button_download), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev, :format => 'raw' }) if @repository.supports_cat? %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>
</p>
Jean-Philippe Lang
Display svn properties in the browser, svn >= 1.5.0 only (#1581)....
r1613 <%= render_properties(@properties) %>
Jean-Philippe Lang
Don't display the table headers if there is no changeset to display....
r1497 <%= render(:partial => 'revisions',
:locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_change_plural)) -%>