[llvm-commits] [LNT] r166142 - /lnt/trunk/lnt/server/ui/templates/v4_graph.html

Daniel Dunbar daniel at zuster.org
Wed Oct 17 16:18:27 PDT 2012


Author: ddunbar
Date: Wed Oct 17 18:18:27 2012
New Revision: 166142

URL: http://llvm.org/viewvc/llvm-project?rev=166142&view=rev
Log:
v4_graph: Fix a refacto, preserve plot info after view changes.

Modified:
    lnt/trunk/lnt/server/ui/templates/v4_graph.html

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=166142&r1=166141&r2=166142&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_graph.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_graph.html Wed Oct 17 18:18:27 2012
@@ -188,7 +188,7 @@
 
 {# Add all the hidden fields. #}
 {% for name,value in request.args.items() %}
-  {% if name.startswith('test.') %}
+  {% if name.startswith('plot.') %}
     <input type="hidden" name="{{name}}" value="{{value}}">
   {% endif %}
 {% endfor %}





More information about the llvm-commits mailing list