diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-15 07:14:39 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-15 07:14:39 +0000 |
commit | 1ec3f1c696f9d9a0364f0a5aa0c1aa9d36c9d93d (patch) | |
tree | 7a996a4c84e0d624c7b958648584b3d16396166d | |
parent | dbb0d880a7af993ac767264c14679e55ce25332f (diff) | |
download | redmine-1ec3f1c696f9d9a0364f0a5aa0c1aa9d36c9d93d.tar.gz redmine-1ec3f1c696f9d9a0364f0a5aa0c1aa9d36c9d93d.zip |
scm: code clean up repositories/show.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5138 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/repositories/show.rhtml | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/app/views/repositories/show.rhtml b/app/views/repositories/show.rhtml index e57908a86..3b1a0e69d 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? %> <h3><%= l(:label_latest_revision_plural) %></h3> -<%= 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? %> <p><%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %></p> -<% else %> - <p><%= link_to l(:label_view_revisions), :action => 'changes', :path => to_path_param(@path), :id => @project %></p> -<% end %> +<% else %> + <p><%= link_to l(:label_view_revisions), + :action => 'changes', + :path => to_path_param(@path), :id => @project %></p> +<% 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 %> |