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

couchdb commit: updated refs/heads/master to 0563b5d

Repository: couchdb
Updated Branches:
  refs/heads/master 1d860fb34 -> 0563b5d6d


Add API endpoint for _view_changes


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/0563b5d6
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/0563b5d6
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/0563b5d6

Branch: refs/heads/master
Commit: 0563b5d6dd6f9bb08d03cb57c3e23339e967dca5
Parents: 1d860fb
Author: Benjamin Bastian <be...@gmail.com>
Authored: Fri Aug 22 15:48:59 2014 +0700
Committer: Benjamin Bastian <be...@gmail.com>
Committed: Fri Oct 31 12:47:20 2014 -0700

----------------------------------------------------------------------
 rel/overlay/etc/default.ini | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/0563b5d6/rel/overlay/etc/default.ini
----------------------------------------------------------------------
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini
index b955cb9..3bcecc4 100644
--- a/rel/overlay/etc/default.ini
+++ b/rel/overlay/etc/default.ini
@@ -177,7 +177,7 @@ _plugins = {couch_plugins_httpd, handle_req}
 
 [httpd_db_handlers]
 _all_docs = {couch_mrview_http, handle_all_docs_req}
-_changes = {couch_httpd_db, handle_changes_req}
+_changes = {couch_httpd_db, handle_db_changes_req}
 _compact = {couch_httpd_db, handle_compact_req}
 _design = {couch_httpd_db, handle_design_req}
 _temp_view = {couch_mrview_http, handle_temp_view_req}
@@ -197,6 +197,7 @@ _rewrite = {couch_httpd_rewrite, handle_rewrite_req}
 _show = {couch_mrview_show, handle_doc_show_req}
 _update = {couch_mrview_show, handle_doc_update_req}
 _view = {couch_mrview_http, handle_view_req}
+_view_changes = {couch_mrview_http, handle_view_changes_req}
 
 ; enable external as an httpd handler, then link it with commands here.
 ; note, this api is still under consideration.