Do not show revisions links and field on filesystem repositories.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8665 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f8e401b475
commit
346fccf782
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<%= link_to l(:label_statistics),
|
<%= link_to l(:label_statistics),
|
||||||
{:action => 'stats', :id => @project, :repository_id => @repository.identifier_param},
|
{:action => 'stats', :id => @project, :repository_id => @repository.identifier_param},
|
||||||
:class => 'icon icon-stats' %>
|
:class => 'icon icon-stats' if @repository.supports_all_revisions? %>
|
||||||
|
|
||||||
<% form_tag({:action => controller.action_name,
|
<% form_tag({:action => controller.action_name,
|
||||||
:id => @project,
|
:id => @project,
|
||||||
@ -27,6 +27,8 @@
|
|||||||
:id => 'tag' %>
|
:id => 'tag' %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
||||||
| <%= l(:label_revision) %>:
|
<% if @repository.supports_all_revisions? %>
|
||||||
<%= text_field_tag 'rev', @rev, :size => 8 %>
|
| <%= l(:label_revision) %>:
|
||||||
|
<%= text_field_tag 'rev', @rev, :size => 8 %>
|
||||||
|
<% end %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<% if true # @path.blank? %>
|
<% if @repository.supports_all_revisions? %>
|
||||||
<% content_for :header_tags do %>
|
<% content_for :header_tags do %>
|
||||||
<%= auto_discovery_link_tag(
|
<%= auto_discovery_link_tag(
|
||||||
:atom, params.merge(
|
:atom, params.merge(
|
||||||
|
@ -61,6 +61,10 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
|
|||||||
assert assigns(:entries).size > 0
|
assert assigns(:entries).size > 0
|
||||||
assert_not_nil assigns(:changesets)
|
assert_not_nil assigns(:changesets)
|
||||||
assert assigns(:changesets).size == 0
|
assert assigns(:changesets).size == 0
|
||||||
|
|
||||||
|
assert_no_tag 'input', :attributes => {:name => 'rev'}
|
||||||
|
assert_no_tag 'a', :content => 'Statistics'
|
||||||
|
assert_no_tag 'a', :content => 'Atom'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_show_no_extension
|
def test_show_no_extension
|
||||||
|
@ -58,6 +58,10 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase
|
|||||||
assert_template 'show'
|
assert_template 'show'
|
||||||
assert_not_nil assigns(:entries)
|
assert_not_nil assigns(:entries)
|
||||||
assert_not_nil assigns(:changesets)
|
assert_not_nil assigns(:changesets)
|
||||||
|
|
||||||
|
assert_tag 'input', :attributes => {:name => 'rev'}
|
||||||
|
assert_tag 'a', :content => 'Statistics'
|
||||||
|
assert_tag 'a', :content => 'Atom'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_browse_root
|
def test_browse_root
|
||||||
|
Loading…
x
Reference in New Issue
Block a user