##// END OF EJS Templates
Do not show 'Send information' checkbox if email delivery is not configured....
Do not show 'Send information' checkbox if email delivery is not configured. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6167 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5740:f36d8cacba07
r6047:37aba18c8f1e
Show More
revisions.rhtml
30 lines | 960 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
Added Bazaar adapter....
r937 <% form_tag({:action => 'revision', :id => @project}) do %>
Toshi MARUYAMA
scm: code clean up app/views/repositories/revisions.rhtml....
r5740 <%= 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,
:path => '',
: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
scm: code clean up app/views/repositories/revisions.rhtml....
r5740 <%= stylesheet_link_tag "scm" %>
<%= auto_discovery_link_tag(
: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| %>
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
<% 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)) -%>