To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 1a / 1ac615393481d79666a02bb2bca6e76628416d64.svn-base @ 1298:4f746d8966dd
History | View | Annotate | Download (1.06 KB)
| 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 'OK' %> |
| 9 |
<% end %> |
| 10 |
</div> |
| 11 |
|
| 12 |
<h2><%= l(:label_revision_plural) %></h2> |
| 13 |
|
| 14 |
<%= render :partial => 'revisions', |
| 15 |
:locals => {:project => @project,
|
| 16 |
:path => '', |
| 17 |
:revisions => @changesets, |
| 18 |
:entry => nil } %> |
| 19 |
|
| 20 |
<p class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></p> |
| 21 |
|
| 22 |
<% content_for :header_tags do %> |
| 23 |
<%= stylesheet_link_tag "scm" %> |
| 24 |
<%= auto_discovery_link_tag( |
| 25 |
:atom, |
| 26 |
params.merge( |
| 27 |
{:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
|
| 28 |
<% end %> |
| 29 |
|
| 30 |
<% other_formats_links do |f| %> |
| 31 |
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
| 32 |
<% end %> |
| 33 |
|
| 34 |
<% html_title(l(:label_revision_plural)) -%> |