You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/07/10 12:53:52 UTC

couchdb commit: updated refs/heads/1843-feature-bigcouch to 86f68c9

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 <rn...@apache.org>
Authored: Thu Jul 10 11:35:42 2014 +0100
Committer: Robert Newson <rn...@apache.org>
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}