[LNT] r179194 - change various links to go to the recent activity page instead of overview

Paul Redmond paul.redmond at intel.com
Wed Apr 10 11:15:10 PDT 2013


Author: predmond
Date: Wed Apr 10 13:15:10 2013
New Revision: 179194

URL: http://llvm.org/viewvc/llvm-project?rev=179194&view=rev
Log:
change various links to go to the recent activity page instead of overview

- the overview page is now replaced by the Go To dropdown so recent activity
  is a reasonable default for now.

Reviewed by: Daniel Dunbar

Modified:
    lnt/trunk/lnt/server/ui/templates/index.html
    lnt/trunk/lnt/server/ui/templates/v4_all_orders.html
    lnt/trunk/lnt/server/ui/templates/v4_daily_report.html
    lnt/trunk/lnt/server/ui/templates/v4_graph.html
    lnt/trunk/lnt/server/ui/templates/v4_machine.html
    lnt/trunk/lnt/server/ui/templates/v4_order.html
    lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html
    lnt/trunk/lnt/server/ui/templates/v4_run.html

Modified: lnt/trunk/lnt/server/ui/templates/index.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/index.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/index.html (original)
+++ lnt/trunk/lnt/server/ui/templates/index.html Wed Apr 10 13:15:10 2013
@@ -6,7 +6,7 @@
 {# Display available test result suites. #}
 <h3>Test Suites</h3>
 {% for name in request.get_db().testsuite %}
-  <a href="{{db_url_for('v4_overview', testsuite_name=name)}}">{{name}}</a><br>
+  <a href="{{db_url_for('v4_recent_activity', testsuite_name=name)}}">{{name}}</a><br>
 {% endfor %}
 
 {% endblock %}

Modified: lnt/trunk/lnt/server/ui/templates/v4_all_orders.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_all_orders.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_all_orders.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_all_orders.html Wed Apr 10 13:15:10 2013
@@ -1,7 +1,7 @@
 {% import "utils.html" as utils %}
 
 {% extends "layout.html" %}{
-{% set components = [(ts.name, v4_url_for("v4_overview"))] %}
+{% set components = [(ts.name, v4_url_for("v4_recent_activity"))] %}
 {% block head %}
         <script src="{{ url_for('.static', filename='popup.js') }}"></script>
 {% endblock %}

Modified: lnt/trunk/lnt/server/ui/templates/v4_daily_report.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_daily_report.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_daily_report.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_daily_report.html Wed Apr 10 13:15:10 2013
@@ -1,7 +1,7 @@
 {% set db = request.get_db() %}
 
 {% extends "layout.html" %}
-{% set components = [(ts.name, v4_url_for("v4_overview"))] %}
+{% set components = [(ts.name, v4_url_for("v4_recent_activity"))] %}
 {% block title %}Daily Report{% endblock %}
 {% block body %}
 

Modified: lnt/trunk/lnt/server/ui/templates/v4_graph.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_graph.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_graph.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_graph.html Wed Apr 10 13:15:10 2013
@@ -1,7 +1,7 @@
 {% import "utils.html" as utils %}
 
 {% extends "layout.html" %}
-{% set components = [(ts.name, v4_url_for("v4_overview"))] %}
+{% set components = [(ts.name, v4_url_for("v4_recent_activity"))] %}
 {% block head %}
   <script src="{{ url_for('.static', filename='popup.js') }}"></script>
   <script src="{{ url_for('.static', filename='sorttable.js') }}"></script>

Modified: lnt/trunk/lnt/server/ui/templates/v4_machine.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_machine.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_machine.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_machine.html Wed Apr 10 13:15:10 2013
@@ -4,7 +4,7 @@
 {% set machine = ts.getMachine(id) %}
 
 {% extends "layout.html" %}{
-{% set components = [(testsuite_name, v4_url_for("v4_overview"))] %}
+{% set components = [(testsuite_name, v4_url_for("v4_recent_activity"))] %}
 {% block title %}{{machine.name}}:{{machine.id}}{% endblock %}
 
 {% block sidebar %}

Modified: lnt/trunk/lnt/server/ui/templates/v4_order.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_order.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_order.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_order.html Wed Apr 10 13:15:10 2013
@@ -1,7 +1,7 @@
 {% import "utils.html" as utils %}
 
 {% extends "layout.html" %}{
-{% set components = [(ts.name, v4_url_for("v4_overview"))] %}
+{% set components = [(ts.name, v4_url_for("v4_recent_activity"))] %}
 {% block title %}Order: {{order.id}}{% endblock %}
 
 {% block sidebar %}

Modified: lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html Wed Apr 10 13:15:10 2013
@@ -2,7 +2,7 @@
 {% set db = request.get_db() %}
 
 {% extends "layout.html" %}
-{% set components = [(testsuite_name, v4_url_for("v4_overview"))] %}
+{% set components = [(testsuite_name, v4_url_for("v4_recent_activity"))] %}
 {% block title %}Recent Activity{% endblock %}
 
 {% block sidebar %}

Modified: lnt/trunk/lnt/server/ui/templates/v4_run.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_run.html?rev=179194&r1=179193&r2=179194&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_run.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_run.html Wed Apr 10 13:15:10 2013
@@ -9,7 +9,7 @@
 {% set comparison_neighboring_runs = request_info.comparison_neighboring_runs %}
 
 {% extends "layout.html" %}
-{% set components = [(ts.name, v4_url_for("v4_overview")),
+{% set components = [(ts.name, v4_url_for("v4_recent_activity")),
                      ('%s:%s' % (machine.name, machine.id),
                      v4_url_for("v4_machine", id=machine.id))] %}
 





More information about the llvm-commits mailing list