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.0KB

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