To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / repositories / revisions.html.erb @ 1083:0d837624e795
History | View | Annotate | Download (960 Bytes)
| 1 |
<div class="contextual"> |
|---|---|
| 2 |
<% form_tag({:action => 'revision', :id => @project}) do %>
|
| 3 |
<%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 8 %> |
| 4 |
<%= submit_tag 'OK' %>
|
| 5 |
<% end %>
|
| 6 |
</div>
|
| 7 |
|
| 8 |
<h2><%= l(:label_revision_plural) %></h2> |
| 9 |
|
| 10 |
<%= render :partial => 'revisions',
|
| 11 |
:locals => {:project => @project,
|
| 12 |
:path => '',
|
| 13 |
:revisions => @changesets,
|
| 14 |
:entry => nil } %>
|
| 15 |
|
| 16 |
<p class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></p> |
| 17 |
|
| 18 |
<% content_for :header_tags do %>
|
| 19 |
<%= stylesheet_link_tag "scm" %>
|
| 20 |
<%= auto_discovery_link_tag(
|
| 21 |
:atom,
|
| 22 |
params.merge(
|
| 23 |
{:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
|
| 24 |
<% end %>
|
| 25 |
|
| 26 |
<% other_formats_links do |f| %>
|
| 27 |
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
| 28 |
<% end %>
|
| 29 |
|
| 30 |
<% html_title(l(:label_revision_plural)) -%>
|