diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/chttpd/ebin/chttpd.app | 20 | ||||
-rw-r--r-- | apps/chttpd/src/chttpd.app.src | 7 | ||||
-rw-r--r-- | apps/fabric/ebin/fabric.app | 28 | ||||
-rw-r--r-- | apps/fabric/src/fabric.app.src | 6 | ||||
-rw-r--r-- | apps/mem3/src/mem3.app.src (renamed from apps/mem3/ebin/mem3.app) | 11 | ||||
-rw-r--r-- | apps/rexi/src/rexi.app.src (renamed from apps/rexi/ebin/rexi.app) | 6 |
6 files changed, 13 insertions, 65 deletions
diff --git a/apps/chttpd/ebin/chttpd.app b/apps/chttpd/ebin/chttpd.app deleted file mode 100644 index a32f4786..00000000 --- a/apps/chttpd/ebin/chttpd.app +++ /dev/null @@ -1,20 +0,0 @@ -{application, chttpd, [ - {description, "HTTP interface for CouchDB cluster"}, - {vsn, "1.0.3"}, - {modules, [ - chttpd, - chttpd_app, - chttpd_auth, - chttpd_db, - chttpd_external, - chttpd_misc, - chttpd_oauth, - chttpd_rewrite, - chttpd_show, - chttpd_sup, - chttpd_view - ]}, - {registered, [chttpd_sup, chttpd]}, - {applications, [kernel, stdlib, couch, fabric]}, - {mod, {chttpd_app,[]}} -]}.
\ No newline at end of file diff --git a/apps/chttpd/src/chttpd.app.src b/apps/chttpd/src/chttpd.app.src new file mode 100644 index 00000000..95ef107a --- /dev/null +++ b/apps/chttpd/src/chttpd.app.src @@ -0,0 +1,7 @@ +{application, chttpd, [ + {description, "HTTP interface for CouchDB cluster"}, + {vsn, "1.0.3"}, + {registered, [chttpd_sup, chttpd]}, + {applications, [kernel, stdlib, couch, fabric]}, + {mod, {chttpd_app,[]}} +]}.
\ No newline at end of file diff --git a/apps/fabric/ebin/fabric.app b/apps/fabric/ebin/fabric.app deleted file mode 100644 index 8a565d8a..00000000 --- a/apps/fabric/ebin/fabric.app +++ /dev/null @@ -1,28 +0,0 @@ -{application, fabric, [ - {description, "Routing and proxying layer for CouchDB cluster"}, - {vsn, "1.0.3"}, - {modules, [ - fabric, - fabric_db_create, - fabric_db_delete, - fabric_db_doc_count, - fabric_db_info, - fabric_db_meta, - fabric_dict, - fabric_doc_attachments, - fabric_doc_missing_revs, - fabric_doc_open, - fabric_doc_open_revs, - fabric_doc_update, - fabric_group_info, - fabric_rpc, - fabric_util, - fabric_view, - fabric_view_all_docs, - fabric_view_changes, - fabric_view_map, - fabric_view_reduce - ]}, - {registered, []}, - {applications, [kernel, stdlib, couch, rexi, mem3]} -]}. diff --git a/apps/fabric/src/fabric.app.src b/apps/fabric/src/fabric.app.src new file mode 100644 index 00000000..0b626ba7 --- /dev/null +++ b/apps/fabric/src/fabric.app.src @@ -0,0 +1,6 @@ +{application, fabric, [ + {description, "Routing and proxying layer for CouchDB cluster"}, + {vsn, "1.0.3"}, + {registered, []}, + {applications, [kernel, stdlib, couch, rexi, mem3]} +]}. diff --git a/apps/mem3/ebin/mem3.app b/apps/mem3/src/mem3.app.src index 0613ab26..38f85c68 100644 --- a/apps/mem3/ebin/mem3.app +++ b/apps/mem3/src/mem3.app.src @@ -2,17 +2,6 @@ {description, "CouchDB Cluster Membership"}, {mod, {mem3_app, []}}, {vsn, "1.0.1"}, - {modules, [ - mem3, - mem3_app, - mem3_cache, - mem3_httpd, - mem3_nodes, - mem3_sup, - mem3_sync, - mem3_sync_event, - mem3_util - ]}, {registered, [ mem3_cache, mem3_events, diff --git a/apps/rexi/ebin/rexi.app b/apps/rexi/src/rexi.app.src index 5c944b72..d56a182f 100644 --- a/apps/rexi/ebin/rexi.app +++ b/apps/rexi/src/rexi.app.src @@ -1,12 +1,6 @@ {application, rexi, [ {description, "Lightweight RPC server"}, {vsn, "1.2"}, - {modules, [rexi, - rexi_app, - rexi_sup, - rexi_monitor, - rexi_server, - rexi_utils]}, {registered, [rexi_sup, rexi_server]}, {applications, [kernel, stdlib]}, {mod, {rexi_app,[]}} |