##// END OF EJS Templates
Fixed: Issues associated with a locked version are not copied when copying a project (#11207)....
Fixed: Issues associated with a locked version are not copied when copying a project (#11207). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10334 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9442:b0414ec1fbab
r10151:ff86c37ed330
Show More
_link_to_functions.html.erb
19 lines | 1.0 KiB | text/plain | TextLexer
/ app / views / repositories / _link_to_functions.html.erb
Jean-Philippe Lang
SCM:...
r2744 <% if @entry && @entry.kind == 'file' %>
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <p>
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <%= link_to_if action_name != 'changes', l(:label_history), {:action => 'changes', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <% if @repository.supports_cat? %>
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <%= link_to_if action_name != 'entry', l(:button_view), {:action => 'entry', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <% end %>
<% if @repository.supports_annotate? %>
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <%= link_to_if action_name != 'annotate', l(:button_annotate), {:action => 'annotate', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <% end %>
Toshi MARUYAMA
route: scm: split entry and raw actions...
r9442 <%= link_to(l(:button_download),
{:action => 'raw', :id => @project,
:repository_id => @repository.identifier_param,
:path => to_path_param(@path),
:rev => @rev}) if @repository.supports_cat? %>
Jean-Philippe Lang
Show view/annotate/download links on repositories/entries and repositories/annotate views (#2367)....
r2165 <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>
</p>
Jean-Philippe Lang
SCM:...
r2744
<% end %>