[LNT] r275228 - Mark Change does not work with a prefix
Chris Matthews via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 12 16:09:35 PDT 2016
Author: cmatthews
Date: Tue Jul 12 18:09:35 2016
New Revision: 275228
URL: http://llvm.org/viewvc/llvm-project?rev=275228&view=rev
Log:
Mark Change does not work with a prefix
The mark change link did not work on instances with a prefix. This sets
the prefix correctly.
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=275228&r1=275227&r2=275228&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_graph.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_graph.html Tue Jul 12 18:09:35 2016
@@ -43,7 +43,7 @@ var test_suite_name = "{{ request.view_a
var db_name = "{{ request.view_args.get('db_name','') }}";
var graph_plots = {{graph_plots|tojson|safe}};
var baseline_plots = {{baseline_plots|tojson|safe}};
-
+prefix = "{{request.base_url}}";
function init_graph() {
// Set up the primary graph.
More information about the llvm-commits
mailing list