##// END OF EJS Templates
Reverted r9368....
Reverted r9368. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9370 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9157:0098c7b12883
r9236:d427d8e5675c
Show More
revisions.html.erb
33 lines | 1.0 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Toshi MARUYAMA
code layout cleanup app/views/repositories/revisions.html.erb...
r8584 <% form_tag(
{:action => 'revision', :id => @project,
:repository_id => @repository.identifier_param}
) do %>
Toshi MARUYAMA
fix source indents of app/views/repositories/revisions.html.erb...
r9157 <%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 8 %>
<%= submit_tag 'OK' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</div>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <h2><%= l(:label_revision_plural) %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Toshi MARUYAMA
scm: code clean up app/views/repositories/revisions.rhtml....
r5740 <%= render :partial => 'revisions',
:locals => {:project => @project,
Toshi MARUYAMA
remove trailing white-spaces from app/views/repositories/revisions.html.erb...
r7183 :path => '',
Toshi MARUYAMA
scm: code clean up app/views/repositories/revisions.rhtml....
r5740 :revisions => @changesets,
:entry => nil } %>
Jean-Philippe Lang
added pagination on revisions list...
r378
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% content_for :header_tags do %>
Toshi MARUYAMA
fix source indents of app/views/repositories/revisions.html.erb...
r9157 <%= stylesheet_link_tag "scm" %>
<%= auto_discovery_link_tag(
Toshi MARUYAMA
scm: code clean up app/views/repositories/revisions.rhtml....
r5740 :atom,
params.merge(
{:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/repositories/revisions.html.erb...
r7185 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds links to changesets atom feed on repository browser (#1873)....
r1800
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_revision_plural)) -%>