##// END OF EJS Templates
scm: git: insert revisions to database with reverse commit order (#7821, #5357)....
scm: git: insert revisions to database with reverse commit order (#7821, #5357). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5073 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4788:0efc783a7e4b
r4953:6dc57e752dc4
Show More
_sidebar.rhtml
17 lines | 901 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_issue_plural) %></h3>
Jean-Philippe Lang
Fixed: 'View all issues' link doesn't work on issues/show....
r924 <%= link_to l(:label_issue_view_all), { :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 } %><br />
Jean-Philippe Lang
Global queries can be saved from the global issue list (follows r1311 and closes #897)....
r1297 <% if @project %>
Jean-Philippe Lang
Application layout refactored....
r736 <%= link_to l(:field_summary), :controller => 'reports', :action => 'issue_report', :id => @project %><br />
Jean-Philippe Lang
Cross-project gantt and calendar (#1157)....
r2086 <% end %>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_issues_bottom) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
Eric Davis
Fix the calendar link in the Issues sidebar. #5591...
r3898 <%= link_to(l(:label_calendar), :controller => 'calendars', :action => 'show', :project_id => @project) %><br />
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <% end %>
<% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
Eric Davis
Refactor: Move gantts to a separate controller....
r3581 <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %><br />
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 <% end %>
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <%= call_hook(:view_issues_sidebar_planning_bottom) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795
Jean-Philippe Lang
Splits private/public issue queries in the sidebar (#1067)....
r4788 <%= render_sidebar_queries %>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_queries_bottom) %>