##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14758:f761d74316af
r14954:42b5c332b2c2
Show More
revision.html.erb
61 lines | 1.9 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 &#171;
<% unless @changeset.previous.nil? -%>
Jean-Philippe Lang
Adds p/n access keys for previous/next links (#18692)....
r13412 <%= link_to_revision(@changeset.previous, @repository,
:text => l(:label_previous), :accesskey => accesskey(:previous)) %>
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 <% else -%>
<%= l(:label_previous) %>
<% end -%>
|
<% unless @changeset.next.nil? -%>
Jean-Philippe Lang
Adds p/n access keys for previous/next links (#18692)....
r13412 <%= link_to_revision(@changeset.next, @repository,
:text => l(:label_next), :accesskey => accesskey(:next)) %>
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 <% else -%>
<%= l(:label_next) %>
<% end -%>
&#187;&nbsp;
Jean-Philippe Lang
Do not show the changed files list on the revision page if the user is not allowed to browse the repository (#2762)....
r2436
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:controller => 'repositories',
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 :action => 'revision',
:id => @project,
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 :repository_id => @repository.identifier_param,
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 :rev => nil},
:method => :get) do %>
Toshi MARUYAMA
Changing revision label and identifier at SCM adapter level (#3724, #6092)...
r4493 <%= text_field_tag 'rev', @rev, :size => 8 %>
Jean-Philippe Lang
Fixes quick jump to a revision....
r1597 <%= submit_tag 'OK', :name => nil %>
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Locals are not used in the partial (#4266)....
r14758 <%= render :partial => 'changeset' %>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
Jean-Philippe Lang
Do not show the changed files list on the revision page if the user is not allowed to browse the repository (#2762)....
r2436 <% if User.current.allowed_to?(:browse_repository, @project) %>
Jean-Philippe Lang
Added a link on revision screen to see the entire diff for the revision....
r480 <h3><%= l(:label_attachment_plural) %></h3>
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 <ul id="changes-legend">
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 <li class="change change-A"><%= l(:label_added) %></li>
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 <li class="change change-M"><%= l(:label_modified) %></li>
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 <li class="change change-C"><%= l(:label_copied) %></li>
<li class="change change-R"><%= l(:label_renamed) %></li>
<li class="change change-D"><%= l(:label_deleted) %></li>
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 </ul>
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 <p><%= link_to(l(:label_view_diff),
:action => 'diff',
:id => @project,
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 :repository_id => @repository.identifier_param,
Toshi MARUYAMA
scm: code clean up app/views/repositories/revision.rhtml....
r5739 :path => "",
Jean-Philippe Lang
Renamed #changes association to #filechanges (clash with AR::Base.changes that triggers errors with Rails 3.2.5)....
r9576 :rev => @changeset.identifier) if @changeset.filechanges.any? %></p>
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868
<div class="changeset-changes">
<%= render_changeset_changes %>
</div>
Jean-Philippe Lang
Do not show the changed files list on the revision page if the user is not allowed to browse the repository (#2762)....
r2436 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
Jean-Philippe Lang
Fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)....
r532 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Toshi MARUYAMA
add changeset comment in revision page title (#14138)...
r11679 <%
title = "#{l(:label_revision)} #{format_revision(@changeset)}"
Toshi MARUYAMA
Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at app/views/repositories/revision.html.erb...
r12565 title << " - #{@changeset.comments.truncate(80)}"
Toshi MARUYAMA
add changeset comment in revision page title (#14138)...
r11679 html_title(title)
-%>