]> source.dussan.org Git - redmine.git/commitdiff
Adds a field on the repository view to browse at specific revision (#1443).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 15 Jun 2008 15:56:47 +0000 (15:56 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 15 Jun 2008 15:56:47 +0000 (15:56 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1554 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/repositories/show.rhtml

index 469ac063e5754d291b522bcdb612595347cb54c3..9a73183e80d69a310e21b652993bef9a305178c2 100644 (file)
@@ -1,11 +1,16 @@
 <div class="contextual">
 <%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
+
+<% if !@entries.nil? && authorize_for('repositories', 'browse') -%>
+<% form_tag(:action => 'browse', :id => @project) do -%>
+| <%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
+<% end -%>
+<% end -%>
 </div>
 
 <h2><%= l(:label_repository) %> (<%= @repository.scm_name %>)</h2>
 
 <% if !@entries.nil? && authorize_for('repositories', 'browse') %>
-<h3><%= l(:label_browse) %></h3>
 <%= render :partial => 'dir_list' %>
 <% end %>