scm: code clean up repositories/show.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5138 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ba9624fcf3
commit
cb7426d86f
|
@ -12,25 +12,31 @@
|
||||||
|
|
||||||
<%= render_properties(@properties) %>
|
<%= 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>
|
<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>
|
<p><%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %></p>
|
||||||
<% else %>
|
<% else %>
|
||||||
<p><%= link_to l(:label_view_revisions), :action => 'changes', :path => to_path_param(@path), :id => @project %></p>
|
<p><%= link_to l(:label_view_revisions),
|
||||||
<% end %>
|
: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(
|
<%= auto_discovery_link_tag(
|
||||||
:atom, params.merge(
|
:atom, params.merge(
|
||||||
{:format => 'atom', :action => 'revisions',
|
{:format => 'atom', :action => 'revisions',
|
||||||
:id => @project, :page => nil, :key => User.current.rss_key})) %>
|
: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} %>
|
<%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue