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/replicator.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/replicator.html')
-rw-r--r-- | share/www/replicator.html | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/share/www/replicator.html b/share/www/replicator.html index e6f7f429..32ad52cd 100644 --- a/share/www/replicator.html +++ b/share/www/replicator.html @@ -17,14 +17,17 @@ specific language governing permissions and limitations under the License. <head> <title>Replicator</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/jquery.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/pprint.js?0.9.0"></script> <script> $(document).ready(function() { - if (window !== parent) parent.updateNavigation(); + $.get("_sidebar.html", function(resp) { + $(resp).insertAfter("#wrap"); + }); $("fieldset input[type=radio]").click(function() { var radio = this; @@ -95,12 +98,12 @@ specific language governing permissions and limitations under the License. }); </script> </head> - <body> + <body><div id="wrap"> <h1> - <a href="browse/index.html">Overview</a> + <a href="index.html">Overview</a> <strong>Replicator</strong> </h1> - <div id="wrap"> + <div id="content"> <form id="replicator"> <fieldset id="source"> @@ -129,7 +132,7 @@ specific language governing permissions and limitations under the License. </p> </form> - <table id="records" class="listing"> + <table id="records" class="listing" cellspacing="0"> <caption>Replication History</caption> <thead><tr> <th>Event</th> @@ -141,5 +144,5 @@ specific language governing permissions and limitations under the License. </table> </div> - </body> + </div></body> </html> |