summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@apache.org>2013-08-07 18:00:37 +0200
committerDirkjan Ochtman <djc@apache.org>2013-08-23 16:32:19 +0200
commit2a5e100a75e0b8c8026d7a7395313258a5a353c4 (patch)
tree96fe2247e3f8f376f33a56c2a1aa43cdc7f56313
parent8077516584c79a9b9cf1a70eaa5d4d57b74c02d5 (diff)
downloadcouchdb-2a5e100a75e0b8c8026d7a7395313258a5a353c4.tar.gz
Remove couchdb_updates files (content already in top-level LICENSE/NOTICE).
-rw-r--r--src/couch_dbupdates/LICENSE22
-rw-r--r--src/couch_dbupdates/NOTICE6
-rw-r--r--src/couch_dbupdates/README.md32
3 files changed, 0 insertions, 60 deletions
diff --git a/src/couch_dbupdates/LICENSE b/src/couch_dbupdates/LICENSE
deleted file mode 100644
index a089916c3..000000000
--- a/src/couch_dbupdates/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-2009-2012 (c) Benoît Chesneau <benoitc@e-engura.org>
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
diff --git a/src/couch_dbupdates/NOTICE b/src/couch_dbupdates/NOTICE
deleted file mode 100644
index ee00a858d..000000000
--- a/src/couch_dbupdates/NOTICE
+++ /dev/null
@@ -1,6 +0,0 @@
-couch_dbupdates
----------------
-
-2012 (c) Benoît Chesneau <benoitc@refuge.io>
-
-couch_dbupdates is released under the Apache License 2.
diff --git a/src/couch_dbupdates/README.md b/src/couch_dbupdates/README.md
deleted file mode 100644
index c6831025e..000000000
--- a/src/couch_dbupdates/README.md
+++ /dev/null
@@ -1,32 +0,0 @@
-# couch_dbupdates
-
-`couch_dbupdates` is a simple couchdb modules to receive databases
-events in couchdb node.
-
-It's actually **supported by all the [refuge](http://refuge.io) projects**:
-
-- [refuge](https://github.com/refuge/refuge)
-- [rcouch](https://github.com/refuge/rcouch)
-- [rcouch_template](https://github.com/refuge/rcouch_template)
-
-
-## HTTP API
-
-To get db events, do a GET to `/_db_updates` .
-
-You can pass an optional query parameters:
-
-* `feed` The feed can be `longpoll` (default) for longpolling, `eventsource`
- for event stream or `continuous` for continuous feed.
-* `timeout`: timeout before the longpolling connection close or when the
- heartbeat is emitted.
-* `heartbeat`: true, or false. an empty line is emittend when the
- timeout occurs to maintain the connection active.
-
-
-## Example of usage
-
- $ curl http://127.0.0.1:5984/_db_updates?feed=continuous
- {"type":"created","db_name":"testdb"}
- {"type":"updated","db_name":"testdb"}
- {"type":"deleted","db_name":"testdb"}