From cbd43c6bbc72360bd15cfeca87ef6ac85493988b Mon Sep 17 00:00:00 2001 From: Christopher Lenz Date: Mon, 26 Jan 2009 21:22:18 +0000 Subject: Change _slow_view back to _temp_view, as discussed on the mailing list (see http://markmail.org/message/o44cafucgwlpudov). git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@737859 13f79535-47bb-0310-9956-ffa450edef68 --- etc/couchdb/default.ini.tpl.in | 2 +- share/www/database.html | 4 ++-- share/www/script/couch.js | 2 +- share/www/script/futon.browse.js | 8 ++++---- share/www/script/jquery.couch.js | 2 +- src/couchdb/couch_httpd_view.erl | 6 +++--- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/etc/couchdb/default.ini.tpl.in b/etc/couchdb/default.ini.tpl.in index c4710e87..28ab36f2 100644 --- a/etc/couchdb/default.ini.tpl.in +++ b/etc/couchdb/default.ini.tpl.in @@ -49,7 +49,7 @@ _restart = {couch_httpd_misc_handlers, handle_restart_req} [httpd_db_handlers] _view = {couch_httpd_view, handle_view_req} -_slow_view = {couch_httpd_view, handle_slow_view_req} +_temp_view = {couch_httpd_view, handle_temp_view_req} _show = {couch_httpd_show, handle_doc_show_req} _list = {couch_httpd_show, handle_view_list_req} diff --git a/share/www/database.html b/share/www/database.html index 1214e117..77172b0d 100644 --- a/share/www/database.html +++ b/share/www/database.html @@ -40,7 +40,7 @@ specific language governing permissions and limitations under the License. if (page.redirecting) return; $("h1 strong").text(page.db.name); var viewPath = (page.viewName || "_all_docs").replace(/^_design\//, "_view/"); - if (viewPath != "_slow_view" && viewPath != "_design_docs") { + if (viewPath != "_temp_view" && viewPath != "_design_docs") { $("h1 a.raw").attr("href", "/" + encodeURIComponent(page.db.name) + "/" + viewPath); } @@ -118,7 +118,7 @@ specific language governing permissions and limitations under the License.