summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2013-07-31 19:32:34 +0200
committerJan Lehnardt <jan@apache.org>2013-08-02 21:17:03 +0200
commit8dd598cff2e37216b720dff1dc1c272043abe6b2 (patch)
treeb5ea56aecf44be1ee3c74dcf17d22217e60dbc3d
parent519f59dc969e083962c02b6c8e32f4679fc9a47f (diff)
downloadcouchdb-8dd598cff2e37216b720dff1dc1c272043abe6b2.tar.gz
add license headers
-rw-r--r--src/couch_plugins/src/couch_plugins.erl11
-rw-r--r--src/couch_plugins/src/couch_plugins_httpd.erl11
2 files changed, 22 insertions, 0 deletions
diff --git a/src/couch_plugins/src/couch_plugins.erl b/src/couch_plugins/src/couch_plugins.erl
index 7dd3bd2d3..daac88518 100644
--- a/src/couch_plugins/src/couch_plugins.erl
+++ b/src/couch_plugins/src/couch_plugins.erl
@@ -1,3 +1,14 @@
+% Licensed under the Apache License, Version 2.0 (the "License"); you may not
+% use this file except in compliance with the License. You may obtain a copy of
+% the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+% License for the specific language governing permissions and limitations under
+% the License.
-module(couch_plugins).
-include("couch_db.hrl").
-export([install/1]).
diff --git a/src/couch_plugins/src/couch_plugins_httpd.erl b/src/couch_plugins/src/couch_plugins_httpd.erl
index 6d987aedb..12f65f3cf 100644
--- a/src/couch_plugins/src/couch_plugins_httpd.erl
+++ b/src/couch_plugins/src/couch_plugins_httpd.erl
@@ -1,3 +1,14 @@
+% Licensed under the Apache License, Version 2.0 (the "License"); you may not
+% use this file except in compliance with the License. You may obtain a copy of
+% the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+% License for the specific language governing permissions and limitations under
+% the License.
-module(couch_plugins_httpd).
-export([handle_req/1]).