Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 556E511FE6 for ; Thu, 10 Jul 2014 10:53:53 +0000 (UTC) Received: (qmail 12373 invoked by uid 500); 10 Jul 2014 10:53:53 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 12315 invoked by uid 500); 10 Jul 2014 10:53:53 -0000 Mailing-List: contact commits-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 commits@couchdb.apache.org Received: (qmail 12304 invoked by uid 99); 10 Jul 2014 10:53:53 -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, 10 Jul 2014 10:53:53 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E23289AAB52; Thu, 10 Jul 2014 10:53:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rnewson@apache.org To: commits@couchdb.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: couchdb commit: updated refs/heads/1843-feature-bigcouch to 86f68c9 Date: Thu, 10 Jul 2014 10:53:52 +0000 (UTC) Repository: couchdb Updated Branches: refs/heads/1843-feature-bigcouch a1a693c6f -> 86f68c91d Hook up _db_updates and _plugins Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/86f68c91 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/86f68c91 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/86f68c91 Branch: refs/heads/1843-feature-bigcouch Commit: 86f68c91d763e3eda3cea61cb1830e53266d8d22 Parents: a1a693c Author: Robert Newson Authored: Thu Jul 10 11:35:42 2014 +0100 Committer: Robert Newson Committed: Thu Jul 10 11:50:29 2014 +0100 ---------------------------------------------------------------------- rebar.config.script | 2 ++ rel/overlay/etc/default.ini | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/86f68c91/rebar.config.script ---------------------------------------------------------------------- diff --git a/rebar.config.script b/rebar.config.script index d7c620a..2525865 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -24,6 +24,8 @@ DepDescs = [ {couch_index, "couchdb-couch-index", {branch, "master"}, []}, {couch_mrview, "couchdb-couch-mrview", {branch, "master"}, []}, {couch_replicator, "couchdb-couch-replicator", {branch, "master"}, []}, + {couch_dbupdates, "couchdb-couch-dbupdates", {branch, "master"}, []}, + {couch_plugins, "couchdb-couch-plugins", {branch, "master"}, []}, {ddoc_cache, "couchdb-ddoc-cache", {branch, "master"}, []}, {ets_lru, "couchdb-ets-lru", {branch, "master"}, []}, {fabric, "couchdb-fabric", {branch, "master"}, []}, http://git-wip-us.apache.org/repos/asf/couchdb/blob/86f68c91/rel/overlay/etc/default.ini ---------------------------------------------------------------------- diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini index 43d9f4f..19052db 100644 --- a/rel/overlay/etc/default.ini +++ b/rel/overlay/etc/default.ini @@ -168,6 +168,8 @@ _restart = {couch_httpd_misc_handlers, handle_restart_req} _stats = {couch_httpd_stats_handlers, handle_stats_req} _session = {couch_httpd_auth, handle_session_req} _oauth = {couch_httpd_oauth, handle_oauth_req} +_db_updates = {couch_dbupdates_httpd, handle_req} +_plugins = {couch_plugins_httpd, handle_req} [httpd_db_handlers] _all_docs = {couch_mrview_http, handle_all_docs_req}