diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-02-07 14:48:53 +0100 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-02-07 14:48:53 +0100 |
commit | e43c4783cb230d7a03e17a09bcd33a299aa92227 (patch) | |
tree | 6dd34b3b6a3e22cc4fa3f052ed9f3265b656b291 | |
parent | a09f323454d22ba731eb40a179c9bf549ff37cb4 (diff) | |
download | sonarqube-e43c4783cb230d7a03e17a09bcd33a299aa92227.tar.gz sonarqube-e43c4783cb230d7a03e17a09bcd33a299aa92227.zip |
SONAR-3088 Add some pages that keep the period info.
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb index 5f9b38b33e6..ba02eba64ce 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb @@ -1,6 +1,7 @@ <% selected_section = controller.class::SECTION @project=@resource unless @project || selected_section==Navigation::SECTION_HOME + period_param = "period=#{params[:period]}" if params[:period] %> <div id="container"> <div id="hd"> @@ -51,13 +52,13 @@ <% elsif (selected_section==Navigation::SECTION_RESOURCE) %> <% ActiveDashboard.user_dashboards(current_user).each do |active_dashboard| %> <li class="<%= 'selected' if @dashboard && controller.controller_path=='dashboard' && active_dashboard.dashboard_id==@dashboard.id -%>"> - <a href="<%= ApplicationController.root_context -%>/dashboard/index/<%= @project.id -%>?did=<%= active_dashboard.dashboard_id -%><%= "&period=#{params[:period]}" if params[:period] -%>"><%= active_dashboard.dashboard.name(true) -%></a> + <a href="<%= ApplicationController.root_context -%>/dashboard/index/<%= @project.id -%>?did=<%= active_dashboard.dashboard_id -%><%= "&"+period_param if period_param -%>"><%= active_dashboard.dashboard.name(true) -%></a> </li> <% end %> <li class="<%= 'selected' if request.request_uri.include?('/components/index') -%>"> <a href="<%= ApplicationController.root_context -%>/components/index/<%= @project.id -%>"><%= message('components.page') -%></a></li> <li class="<%= 'selected' if request.request_uri.include?('/drilldown/violations') -%>"> - <a href="<%= ApplicationController.root_context -%>/drilldown/violations/<%= @project.id -%>"><%= message('violations_drilldown.page') -%></a></li> + <a href="<%= ApplicationController.root_context -%>/drilldown/violations/<%= @project.id -%><%= "?"+period_param if period_param -%>"><%= message('violations_drilldown.page') -%></a></li> <li class="<%= 'selected' if controller.controller_path=='timemachine' -%>"> <a href="<%= ApplicationController.root_context -%>/timemachine/index/<%= @project.id -%>"><%= message('timemachine.page') -%></a></li> <li class="<%= 'selected' if request.request_uri.include?('/cloud/index') -%>"> |