summaryrefslogtreecommitdiff
path: root/share/www/database.html
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2009-01-26 21:22:18 +0000
committerChristopher Lenz <cmlenz@apache.org>2009-01-26 21:22:18 +0000
commitcbd43c6bbc72360bd15cfeca87ef6ac85493988b (patch)
tree35bff1fa20a779df6842e6200f480264beebc0ae /share/www/database.html
parent36e519fc8d2a406071173d4eda8bf0a64ce2968d (diff)
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
Diffstat (limited to 'share/www/database.html')
-rw-r--r--share/www/database.html4
1 files changed, 2 insertions, 2 deletions
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.
<label>Select view: <select autocomplete="false">
<option value="_all_docs">All documents</option>
<option value="_design_docs">Design documents</option>
- <option value="_slow_view">Custom query…</option>
+ <option value="_temp_view">Custom query…</option>
</select></label>
</div>
<ul id="toolbar">