##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1297:da641f4122f7
r1770:8f3a04ce6906
Show More
_sidebar.rhtml
14 lines | 679 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 />
<%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% unless sidebar_queries.empty? -%>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_query_plural) %></h3>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% sidebar_queries.each do |query| -%>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %><br />
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end -%>
<% end -%>