##// END OF EJS Templates
Replaces acts_as_list with an implementation that handles #position= (#12909)....
Replaces acts_as_list with an implementation that handles #position= (#12909). Objects are reordered using the regular attribute writer #position= and AR callbacks. git-svn-id: http://svn.redmine.org/redmine/trunk@15335 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9686:d3aa9c6a7ba9
r14953:64afa24a7f72
Show More
changes.html.erb
20 lines | 704 B | text/plain | TextLexer
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
<div class="contextual">
<%= render :partial => 'navigation' %>
</div>
Jean-Philippe Lang
Removed invalid nested p tags....
r9686 <h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %></h2>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556
Jean-Philippe Lang
Removed invalid nested p tags....
r9686 <%= render :partial => 'link_to_functions' %>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556
Jean-Philippe Lang
Display svn properties in the browser, svn >= 1.5.0 only (#1581)....
r1613 <%= render_properties(@properties) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/repositories/changes.html.erb...
r7182 <%= render(:partial => 'revisions',
Jean-Philippe Lang
Don't display the table headers if there is no changeset to display....
r1497 :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Etienne Massip
Included scm stylesheet in changes page....
r8732 <% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_change_plural)) -%>