scm: remove "View all revisions" in sub directory (#7984).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5223 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-03-26 02:40:13 +00:00 committed by Eric Davis
parent f6fc3b88ff
commit 5395caed68
1 changed files with 10 additions and 5 deletions

View File

@ -20,16 +20,21 @@
:revisions => @changesets, :entry => nil }%>
<% end %>
<p>
<% if @repository.supports_all_revisions? %>
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %>
<% end %>
<%
has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
sep = ''
%>
<% if @repository.supports_all_revisions? && @path.blank? %>
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %>
<% sep = '|' %>
<% end %>
<%
if @repository.supports_directory_revisions? &&
( has_branches || !@path.blank? || !@rev.blank? )
%>
|
<%= link_to l(:label_view_revisions),
<%= sep %>
<%=
link_to l(:label_view_revisions),
:action => 'changes',
:path => to_path_param(@path),
:id => @project,