From 2802a688601368bd124cc9ede2d40d47e0b84127 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sat, 19 Mar 2011 23:02:29 +0000 Subject: merge trunk. COUCHDB-1094 git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1083325 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/rewrite.js | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'share/www/script/test') diff --git a/share/www/script/test/rewrite.js b/share/www/script/test/rewrite.js index 474abb5e..86905f8f 100644 --- a/share/www/script/test/rewrite.js +++ b/share/www/script/test/rewrite.js @@ -90,27 +90,6 @@ couchTests.rewrite = function(debug) { "name": "*" } }, - { - "from": "/type/.json", - "to": "_show/type/:type", - "query": { - "format": "json" - } - }, - { - "from": "/type/.xml", - "to": "_show/type/:type", - "query": { - "format": "xml" - } - }, - { - "from": "/type/", - "to": "_show/type/:type", - "query": { - "format": "html" - } - }, { "from": "/welcome5/*", "to" : "_show/*", @@ -214,9 +193,6 @@ couchTests.rewrite = function(debug) { }), "welcome3": stringFun(function(doc,req) { return "Welcome " + req.query["name"]; - }), - "type": stringFun(function(doc, req) { - return req.id + " as " + req.query.format; }) }, updates: { @@ -404,15 +380,6 @@ couchTests.rewrite = function(debug) { xhr = CouchDB.request("GET", "/test_suite_db/_design/test/_rewrite/simpleForm/complexView6?a=test&b=essai"); T(xhr.status == 200, "with query params"); T(/Value: doc 4/.test(xhr.responseText)); - - req = CouchDB.request("GET", "/test_suite_db/_design/test/_rewrite/type/test.json"); - T(req.responseText == "test as json"); - - req = CouchDB.request("GET", "/test_suite_db/_design/test/_rewrite/type/test.xml"); - T(req.responseText == "test as xml"); - - req = CouchDB.request("GET", "/test_suite_db/_design/test/_rewrite/type/test"); - T(req.responseText == "test as html"); // test path relative to server designDoc.rewrites.push({ -- cgit v1.2.3