##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15250:f4e7765e0101
r15869:b40d66f39fa8
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
Use ul tags to do pagination (#21258)....
r14515 <span class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></span>
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,
Jean-Philippe Lang
Don't generate urls with params....
r15250 :params => request.query_parameters.merge(:page => nil, :key => User.current.rss_key),
:format => 'atom') %>
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)) -%>