diff options
author | Christopher Lenz <cmlenz@apache.org> | 2009-01-26 22:10:58 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2009-01-26 22:10:58 +0000 |
commit | 482d19963237d4640e08bbb25585f2016328a004 (patch) | |
tree | a32c6fd53e2361507e012a5e6791503c9de0fff6 /share/www/database.html | |
parent | cbd43c6bbc72360bd15cfeca87ef6ac85493988b (diff) |
Rename 'Custom query' in Futon to 'Temporary view', and add a warning about the use of temp views.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@737893 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/database.html')
-rw-r--r-- | share/www/database.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/share/www/database.html b/share/www/database.html index 77172b0d..5a6f301f 100644 --- a/share/www/database.html +++ b/share/www/database.html @@ -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="_temp_view">Custom query…</option> + <option value="_temp_view">Temporary view…</option> </select></label> </div> <ul id="toolbar"> @@ -151,6 +151,13 @@ specific language governing permissions and limitations under the License. <label>Language: <select id="language"></select></label> </div> </div> + <p id="tempwarn"> + <strong>Warning</strong>: Please note that temporary views are not + suitable for use in production, as they are really slow for any + database with more than a few dozen documents. You can use a temporary + view to experiment with view functions, but switch to a permanent view + before using them in an application. + </p> <table id="documents" class="listing" cellspacing="0"> <caption>Documents</caption> |