##// END OF EJS Templates
Fixed that ordered/unordered lists inside table cell are mangled (#14038)....
Fixed that ordered/unordered lists inside table cell are mangled (#14038). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11845 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10501:e0811bc80dcc
r11615:b3d80d50a3a1
Show More
revisions.html.erb
34 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag(
{:controller => 'repositories', :action => 'revision', :id => @project,
Toshi MARUYAMA
fix "Page not found" on OK button in SCM "View all revisions" page (#12196)...
r10497 :repository_id => @repository.identifier_param},
:method => :get
Toshi MARUYAMA
code layout cleanup app/views/repositories/revisions.html.erb...
r8584 ) do %>
Toshi MARUYAMA
scm: use nil instead of @rev at revision text box of "View all revisions" page...
r10501 <%= l(:label_revision) %>: <%= text_field_tag 'rev', nil, :size => 8 %>
Toshi MARUYAMA
fix source indents of app/views/repositories/revisions.html.erb...
r9157 <%= 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)) -%>