You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/11 08:53:34 UTC

couch commit: updated refs/heads/import to 20a53ef

Updated Branches:
  refs/heads/import 09c655604 -> 20a53ef58


Update license headers


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

Branch: refs/heads/import
Commit: 20a53ef58f987c868b2b75bb28a6d189269b5170
Parents: 09c6556
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Feb 11 01:53:21 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Feb 11 01:53:21 2014 -0600

----------------------------------------------------------------------
 src/couch.app.src          | 12 ++++++++++++
 src/couch_lru.erl          | 12 ++++++++++++
 src/couch_proc_manager.erl | 12 ++++++++++++
 3 files changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/20a53ef5/src/couch.app.src
----------------------------------------------------------------------
diff --git a/src/couch.app.src b/src/couch.app.src
index bb1e527..39f6ee0 100644
--- a/src/couch.app.src
+++ b/src/couch.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.
+
 {application, couch, [
     {description, "Apache CouchDB"},
     {vsn, git},

http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/20a53ef5/src/couch_lru.erl
----------------------------------------------------------------------
diff --git a/src/couch_lru.erl b/src/couch_lru.erl
index cc751b0..a236cdd 100644
--- a/src/couch_lru.erl
+++ b/src/couch_lru.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(couch_lru).
 -export([new/0, insert/2, update/2, close/1]).
 

http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/20a53ef5/src/couch_proc_manager.erl
----------------------------------------------------------------------
diff --git a/src/couch_proc_manager.erl b/src/couch_proc_manager.erl
index 45b334f..8027e76 100644
--- a/src/couch_proc_manager.erl
+++ b/src/couch_proc_manager.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(couch_proc_manager).
 -behaviour(gen_server).
 -behaviour(config_listener).