aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/rebaseline_server/static
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-01 16:46:41 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-11-01 16:46:41 +0000
commit045c3d330c6c14f090c2222ece08d82cb84fb3ea (patch)
tree185d8a1d14d6dd313fe035d6a138bc85061d4fa4 /gm/rebaseline_server/static
parentf0784bde753feaff601f703089872fc1af265328 (diff)
rebaseline_server: make default landing page list supported query URLs
(SkipBuildbotRuns) Originally, the default landing page redirected to view.html?resultsToLoad=all (which displays all results, and can take a while). Instead, start with a fast-loading page that shows the user all the result sets that are available. R=scroggo@google.com Review URL: https://codereview.chromium.org/46413004 git-svn-id: http://skia.googlecode.com/svn/trunk@12088 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/rebaseline_server/static')
-rw-r--r--gm/rebaseline_server/static/index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/gm/rebaseline_server/static/index.html b/gm/rebaseline_server/static/index.html
new file mode 100644
index 0000000000..f0cbb4346e
--- /dev/null
+++ b/gm/rebaseline_server/static/index.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <title>rebaseline_server</title>
+ </head>
+
+ <body>
+ Here are links to the result pages:
+ <ul>
+ <li>
+ <a href="/static/view.html?resultsToLoad=failures">
+ failures only
+ </a>
+ (loads faster)
+ </li>
+ <li>
+ <a href="/static/view.html?resultsToLoad=all">
+ all results
+ </a>
+ (includes successful test results)
+ </li>
+ </ul>
+ Instructions, roadmap, etc. are at
+ <a href="http://tinyurl.com/SkiaRebaselineServer">
+ http://tinyurl.com/SkiaRebaselineServer
+ </a>
+ </body>
+</html>