diff options
author | Christopher Lenz <cmlenz@apache.org> | 2009-01-08 10:19:20 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2009-01-08 10:19:20 +0000 |
commit | 539a418b1d7bfbffdcb377a7a9a43fd1a3753b6a (patch) | |
tree | 61e3563b03327c5157bf0b502a92cb96d992ad33 /share/www/couch_tests.html | |
parent | 2408beee6fbef4acbae40e7fa6de98a0c35a53ed (diff) |
Get rid of the iframe structure in Futon to allow easy bookmarking, reloading and back/forward button support across all browsers. Resolves COUCHDB-186 and COUCHDB-56.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@732675 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/couch_tests.html')
-rw-r--r-- | share/www/couch_tests.html | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/share/www/couch_tests.html b/share/www/couch_tests.html index f1ab443b..de471382 100644 --- a/share/www/couch_tests.html +++ b/share/www/couch_tests.html @@ -17,17 +17,22 @@ specific language governing permissions and limitations under the License. <head> <title>Test Suite</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> - <link rel="stylesheet" href="style/layout.css?0.8.0" type="text/css"> + <link rel="stylesheet" href="style/layout.css?0.9.0" type="text/css"> <script src="script/json2.js"></script> <script src="script/jquery.js?1.2.6"></script> - <script src="script/couch.js?0.8.0"></script> - <script src="script/pprint.js?0.8.0"></script> + <script src="script/jquery.cookies.js?0.9.0"></script> + <script src="script/jquery.couch.js?0.9.0"></script> + <script src="script/couch.js?0.9.0"></script> + <script src="script/pprint.js?0.9.0"></script> <script src="script/couch_test_runner.js"></script> <script> $(function() { + $.get("_sidebar.html", function(resp) { + $(resp).insertAfter("#wrap"); + }); + updateTestsListing(); $("#toolbar button.run").click(runAllTests); - if (window != parent) parent.updateNavigation(); $("#toolbar button.load").click(function() { location.reload(true); }); @@ -36,12 +41,12 @@ specific language governing permissions and limitations under the License. loadTests(testsPath||"script/couch_tests.js") </script> </head> - <body> + <body><div id="wrap"> <h1> - <a href="browse/index.html">Overview</a> + <a href="index.html">Overview</a> <strong>Test Suite</strong> </h1> - <div id="wrap"> + <div id="content"> <ul id="toolbar"> <li><button class="run">Run All</button></li> <li><button class="load">Reload</button></li> @@ -52,6 +57,7 @@ specific language governing permissions and limitations under the License. some time, and you'll not be able to do much with your browser while a test is being executed. </p> + <table class="listing" id="tests" cellspacing="0"> <caption>Tests</caption> <thead> @@ -70,6 +76,7 @@ specific language governing permissions and limitations under the License. </tr> </tbody> </table> + </div> - </body> + </div></body> </html> |