##// END OF EJS Templates
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152)....
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4599 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2744:5b975706932d
r4479:44ffc5a3365f
Show More
_link_to_functions.rhtml
15 lines | 847 B | text/html+ruby | RhtmlLexer
/ app / views / repositories / _link_to_functions.rhtml
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 a link to the file history on repository file views....
r2718 <%= link_to_if action_name != 'changes', l(:label_history), {:action => 'changes', :id => @project, :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
Do not show a link to the current annotate or view page (#2367)....
r2186 <%= link_to_if action_name != 'entry', l(:button_view), {:action => 'entry', :id => @project, :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
Do not show a link to the current annotate or view page (#2367)....
r2186 <%= link_to_if action_name != 'annotate', l(:button_annotate), {:action => 'annotate', :id => @project, :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 %>
<%= link_to(l(:button_download), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev, :format => 'raw' }) if @repository.supports_cat? %>
<%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>
</p>
Jean-Philippe Lang
SCM:...
r2744
<% end %>