summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-12-13 20:30:21 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-12-13 20:30:21 -0500
commitb9ef7fc0eb260e29b8b07e6085a229c46ffad051 (patch)
tree1c681da6435a6fac0cb559458675173e0b2adfa6
parent7b5b1441308ed01a159e3878c4a55fe86ea50a9e (diff)
downloadphoronix-test-suite-upstream-b9ef7fc0eb260e29b8b07e6085a229c46ffad051.tar.gz
phoronix-test-suite-upstream-b9ef7fc0eb260e29b8b07e6085a229c46ffad051.tar.xz
phoronix-test-suite-upstream-b9ef7fc0eb260e29b8b07e6085a229c46ffad051.zip
pts-core: When using pts_display_web_browser, point to the index.html
redirect instead of directly to composite.xml
-rw-r--r--CHANGE-LOG1
-rw-r--r--pts-core/options/analyze_all_runs.php2
-rw-r--r--pts-core/options/clone_global_result.php2
-rw-r--r--pts-core/options/refresh_graphs.php2
4 files changed, 4 insertions, 3 deletions
diff --git a/CHANGE-LOG b/CHANGE-LOG
index ad28a17..0c57cbc 100644
--- a/CHANGE-LOG
+++ b/CHANGE-LOG
@@ -11,6 +11,7 @@ Phoronix Test Suite (Git)
- pts-core: Add pts_results_tandem_XmlReader() object for providing file handling in the constructor
- pts-core: Ensure no spaces in pts_vendor_identifier()
- pts-core: Add support for abstracting the package vendor identifier (should fix OpenSuSE External Dependencies support on 11.1)
+- pts-core: When using pts_display_web_browser, point to the index.html redirect instead of directly to composite.xml
- pts: Add more tests to netbook suite
Phoronix Test Suite 1.6.0 Alpha 3
diff --git a/pts-core/options/analyze_all_runs.php b/pts-core/options/analyze_all_runs.php
index 43e05e6..88e476e 100644
--- a/pts-core/options/analyze_all_runs.php
+++ b/pts-core/options/analyze_all_runs.php
@@ -34,7 +34,7 @@ class analyze_all_runs implements pts_option_interface
if(pts_save_result($identifier . "/composite.xml", $composite_xml))
{
echo "\n" . $identifier . " has been re-rendered to show all test runs.\n";
- pts_display_web_browser(SAVE_RESULTS_DIR . $identifier . "/composite.xml");
+ pts_display_web_browser(SAVE_RESULTS_DIR . $identifier . "/index.html");
}
}
else
diff --git a/pts-core/options/clone_global_result.php b/pts-core/options/clone_global_result.php
index 4ffc879..8c89f0d 100644
--- a/pts-core/options/clone_global_result.php
+++ b/pts-core/options/clone_global_result.php
@@ -37,7 +37,7 @@ class clone_global_result implements pts_option_interface
pts_save_result($identifier . "/composite.xml", pts_global_download_xml($identifier));
// TODO: re-render the XML file and generate the graphs through that save
echo "Result Saved To: " . SAVE_RESULTS_DIR . $identifier . "/composite.xml\n\n";
- //pts_display_web_browser(SAVE_RESULTS_DIR . $ARG_1 . "/composite.xml");
+ //pts_display_web_browser(SAVE_RESULTS_DIR . $ARG_1 . "/index.html");
}
else
{
diff --git a/pts-core/options/refresh_graphs.php b/pts-core/options/refresh_graphs.php
index 2314c7f..f6871ba 100644
--- a/pts-core/options/refresh_graphs.php
+++ b/pts-core/options/refresh_graphs.php
@@ -33,7 +33,7 @@ class refresh_graphs implements pts_option_interface
if(pts_save_result($identifier . "/composite.xml", $composite_xml))
{
echo "\nThe Phoronix Test Suite Graphs Have Been Re-Rendered.\n";
- pts_display_web_browser(SAVE_RESULTS_DIR . $identifier . "/composite.xml");
+ pts_display_web_browser(SAVE_RESULTS_DIR . $identifier . "/index.html");
}
}
else