Return-Path: X-Original-To: apmail-couchdb-dev-archive@www.apache.org Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ADCA210E09 for ; Thu, 13 Mar 2014 15:15:10 +0000 (UTC) Received: (qmail 32053 invoked by uid 500); 13 Mar 2014 15:15:08 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 32019 invoked by uid 500); 13 Mar 2014 15:15:06 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 32010 invoked by uid 99); 13 Mar 2014 15:15:04 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Mar 2014 15:15:04 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3EE1B9445DD; Thu, 13 Mar 2014 15:15:04 +0000 (UTC) From: kxepal To: dev@couchdb.apache.org Reply-To: dev@couchdb.apache.org References: In-Reply-To: Subject: [GitHub] couchdb pull request: Fauxton new view creation fix Content-Type: text/plain Message-Id: <20140313151504.3EE1B9445DD@tyr.zones.apache.org> Date: Thu, 13 Mar 2014 15:15:04 +0000 (UTC) Github user kxepal commented on a diff in the pull request: https://github.com/apache/couchdb/pull/177#discussion_r10568726 --- Diff: src/fauxton/app/addons/documents/routes.js --- @@ -300,6 +292,24 @@ function(app, FauxtonAPI, Documents, Databases) { Documents.paginate.reset(); }, + createViewDocumentsView: function (designDoc, docParams, urlParams, database, indexedDocs, designDocs) { + var ddocInfo = { + id: "_design/" + designDocs, --- End diff -- I think name isn't good one: at first it raises the thought that this is some kind of array of design docs, but it seems it's actually `designDocName` which is semi-canonical term for the right part of `_design/` prefix. Sure no one been confused? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---