diff --git a/app/views/repositories/show.rhtml b/app/views/repositories/show.rhtml index e57908a8..3b1a0e69 100644 --- a/app/views/repositories/show.rhtml +++ b/app/views/repositories/show.rhtml @@ -12,25 +12,31 @@ <%= render_properties(@properties) %> -<% if @changesets && !@changesets.empty? && authorize_for('repositories', 'revisions') %> +<% if authorize_for('repositories', 'revisions') %> +<% if @changesets && !@changesets.empty? %>

<%= l(:label_latest_revision_plural) %>

-<%= render :partial => 'revisions', :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => nil }%> +<%= render :partial => 'revisions', + :locals => {:project => @project, :path => @path, + :revisions => @changesets, :entry => nil }%> -<% if @path.blank? %> +<% if @path.blank? %>

<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %>

-<% else %> -

<%= link_to l(:label_view_revisions), :action => 'changes', :path => to_path_param(@path), :id => @project %>

-<% end %> +<% else %> +

<%= link_to l(:label_view_revisions), + :action => 'changes', + :path => to_path_param(@path), :id => @project %>

+<% end %> -<% content_for :header_tags do %> +<% content_for :header_tags do %> <%= auto_discovery_link_tag( :atom, params.merge( {:format => 'atom', :action => 'revisions', :id => @project, :page => nil, :key => User.current.rss_key})) %> -<% end %> +<% end %> -<% other_formats_links do |f| %> +<% other_formats_links do |f| %> <%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %> +<% end %> <% end %> <% end %>