2007-03-12 20:59:02 +03:00
|
|
|
<div class="contextual">
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag(
|
|
|
|
{:controller => 'repositories', :action => 'revision', :id => @project,
|
2012-10-24 13:24:30 +04:00
|
|
|
:repository_id => @repository.identifier_param},
|
|
|
|
:method => :get
|
2012-01-26 10:40:55 +04:00
|
|
|
) do %>
|
2012-10-24 15:12:05 +04:00
|
|
|
<%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %>
|
2012-03-30 05:48:59 +04:00
|
|
|
<%= submit_tag 'OK' %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2007-06-13 00:12:05 +04:00
|
|
|
<h2><%= l(:label_revision_plural) %></h2>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2011-05-21 04:59:40 +04:00
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
:locals => {:project => @project,
|
2011-09-17 10:04:25 +04:00
|
|
|
:path => '',
|
2011-05-21 04:59:40 +04:00
|
|
|
:revisions => @changesets,
|
|
|
|
:entry => nil } %>
|
2007-03-25 22:18:29 +04:00
|
|
|
|
2007-12-29 14:36:30 +03:00
|
|
|
<p class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></p>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
2012-03-30 05:48:59 +04:00
|
|
|
<%= stylesheet_link_tag "scm" %>
|
|
|
|
<%= auto_discovery_link_tag(
|
2011-05-21 04:59:40 +04:00
|
|
|
:atom,
|
|
|
|
params.merge(
|
|
|
|
{:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
|
2007-06-13 00:12:05 +04:00
|
|
|
<% end %>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2009-01-29 16:53:17 +03:00
|
|
|
<% other_formats_links do |f| %>
|
2011-09-17 12:04:36 +04:00
|
|
|
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
2009-01-29 16:53:17 +03:00
|
|
|
<% end %>
|
2008-09-12 21:17:25 +04:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_revision_plural)) -%>
|