You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

revisions.html.erb 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="contextual">
  2. <%= form_tag(
  3. {:controller => 'repositories', :action => 'revision', :id => @project,
  4. :repository_id => @repository.identifier_param},
  5. :method => :get
  6. ) do %>
  7. <%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %>
  8. <%= submit_tag l(:button_view) %>
  9. <% end %>
  10. </div>
  11. <h2><%= l(:label_revision_plural) %></h2>
  12. <%= render :partial => 'revisions',
  13. :locals => {:project => @project,
  14. :path => '',
  15. :revisions => @changesets,
  16. :entry => nil } %>
  17. <span class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></span>
  18. <% content_for :header_tags do %>
  19. <%= stylesheet_link_tag "scm" %>
  20. <%= auto_discovery_link_tag(
  21. :atom,
  22. :params => request.query_parameters.merge(:page => nil, :key => User.current.atom_key),
  23. :format => 'atom') %>
  24. <% end %>
  25. <% other_formats_links do |f| %>
  26. <%= f.link_to 'Atom', :url => {:key => User.current.atom_key} %>
  27. <% end %>
  28. <% html_title(l(:label_revision_plural)) -%>