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/17 18:14:28 UTC

[07/14] examples commit: updated refs/heads/master to 8a630c5

[my-first-couchdb-plugin] use Apache 2 License


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

Branch: refs/heads/master
Commit: c324b5d3f4b132f5d733f6ad9958e0fbc68c6c98
Parents: 3e50ff4
Author: Jan Lehnardt <ja...@apache.org>
Authored: Mon Oct 7 17:18:52 2013 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Oct 7 17:18:52 2013 +0200

----------------------------------------------------------------------
 src/my_first_couchdb_plugin.app.src | 12 ++++++++++++
 src/my_first_couchdb_plugin.erl     | 12 ++++++++++++
 2 files changed, 24 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-examples/blob/c324b5d3/src/my_first_couchdb_plugin.app.src
----------------------------------------------------------------------
diff --git a/src/my_first_couchdb_plugin.app.src b/src/my_first_couchdb_plugin.app.src
index 01ce897..9a24bf8 100644
--- a/src/my_first_couchdb_plugin.app.src
+++ b/src/my_first_couchdb_plugin.app.src
@@ -1,3 +1,15 @@
+% 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.
+
 %% -*- mode: erlang -*-
 {application, my_first_couchdb_plugin, [
     {description, "My First CouchDB Plugin"},

http://git-wip-us.apache.org/repos/asf/couchdb-examples/blob/c324b5d3/src/my_first_couchdb_plugin.erl
----------------------------------------------------------------------
diff --git a/src/my_first_couchdb_plugin.erl b/src/my_first_couchdb_plugin.erl
index b1bdd04..64d728c 100644
--- a/src/my_first_couchdb_plugin.erl
+++ b/src/my_first_couchdb_plugin.erl
@@ -1,3 +1,15 @@
+% 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(my_first_couchdb_plugin).
 
 -export([my_func/0]).