##// END OF EJS Templates
remove trailing white-spaces from test/unit/issue_test.rb....
remove trailing white-spaces from test/unit/issue_test.rb. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6746 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5375:f89d04074e56
r6626:626bb4b61447
Show More
_action_menu.rhtml
9 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
/ app / views / issues / _action_menu.rhtml
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 <div class="contextual">
<%= link_to_if_authorized(l(:button_update), {:controller => 'issues', :action => 'edit', :id => @issue }, :onclick => 'showAndScrollTo("update", "notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) %>
Eric Davis
Fix the Log Time link on an issue page...
r4129 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'new', :issue_id => @issue}, :class => 'icon icon-time-add' %>
Jean-Philippe Lang
Cleaner way to handle the replacement of watch links (#8071)....
r5200 <%= watcher_tag(@issue, User.current) %>
Jean-Philippe Lang
Removes the 'Copy' checkbox on the copy/move form....
r3013 <%= link_to_if_authorized l(:button_duplicate), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-duplicate' %>
Eric Davis
Revert part of r3936....
r4144 <%= link_to_if_authorized l(:button_copy), {:controller => 'issue_moves', :action => 'new', :id => @issue, :copy_options => {:copy => 't'}}, :class => 'icon icon-copy' %>
<%= link_to_if_authorized l(:button_move), {:controller => 'issue_moves', :action => 'new', :id => @issue}, :class => 'icon icon-move' %>
Jean-Philippe Lang
Warn about subtasks before deleting a parent issue (#6562)....
r5375 <%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => issues_destroy_confirmation_message(@issue), :method => :post, :class => 'icon icon-del' %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 </div>