summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Doane <jaydoane@apache.org>2020-12-13 17:33:50 -0800
committerJay Doane <jaydoane@apache.org>2020-12-13 17:33:50 -0800
commitf228b90c4a72adf22650ed5713dce5d66be05880 (patch)
tree5e27bae7d08953f3031ccbdf222b1f2dff2f72b8
parent97bec6687191e0f68798cf83108b1cf998fd8452 (diff)
downloadcouchdb-f228b90c4a72adf22650ed5713dce5d66be05880.tar.gz
Update license and README
Remove Cloudant references
-rw-r--r--src/custodian/README2
-rw-r--r--src/custodian/src/custodian.app.src12
-rw-r--r--src/custodian/src/custodian.erl12
-rw-r--r--src/custodian/src/custodian.hrl12
-rw-r--r--src/custodian/src/custodian_app.erl12
-rw-r--r--src/custodian/src/custodian_db_checker.erl12
-rw-r--r--src/custodian/src/custodian_server.erl12
-rw-r--r--src/custodian/src/custodian_sup.erl12
-rw-r--r--src/custodian/src/custodian_util.erl12
9 files changed, 89 insertions, 9 deletions
diff --git a/src/custodian/README b/src/custodian/README
index 9cd23f9b0..72681f447 100644
--- a/src/custodian/README
+++ b/src/custodian/README
@@ -1,4 +1,4 @@
-Custodian is responsible for the data stored in Cloudant databases.
+Custodian is responsible for the data stored in CouchDB databases.
Custodian scans the "dbs" database, which details the location of
every shard of every database and ensures that operators are aware of
diff --git a/src/custodian/src/custodian.app.src b/src/custodian/src/custodian.app.src
index c5b4f6986..b93b21ebb 100644
--- a/src/custodian/src/custodian.app.src
+++ b/src/custodian/src/custodian.app.src
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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, custodian,
[
diff --git a/src/custodian/src/custodian.erl b/src/custodian/src/custodian.erl
index 523ab7f34..a16c925b5 100644
--- a/src/custodian/src/custodian.erl
+++ b/src/custodian/src/custodian.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian).
diff --git a/src/custodian/src/custodian.hrl b/src/custodian/src/custodian.hrl
index af662304b..bce22cf95 100644
--- a/src/custodian/src/custodian.hrl
+++ b/src/custodian/src/custodian.hrl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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.
-define(CUSTODIAN_ID, <<"_design/custodian">>).
diff --git a/src/custodian/src/custodian_app.erl b/src/custodian/src/custodian_app.erl
index e0719d48a..91afe139f 100644
--- a/src/custodian/src/custodian_app.erl
+++ b/src/custodian/src/custodian_app.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian_app).
diff --git a/src/custodian/src/custodian_db_checker.erl b/src/custodian/src/custodian_db_checker.erl
index 5f1bbe7d5..8308c8ecb 100644
--- a/src/custodian/src/custodian_db_checker.erl
+++ b/src/custodian/src/custodian_db_checker.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian_db_checker).
-behaviour(gen_server).
diff --git a/src/custodian/src/custodian_server.erl b/src/custodian/src/custodian_server.erl
index 5198bc33f..322cc3264 100644
--- a/src/custodian/src/custodian_server.erl
+++ b/src/custodian/src/custodian_server.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian_server).
-behaviour(gen_server).
diff --git a/src/custodian/src/custodian_sup.erl b/src/custodian/src/custodian_sup.erl
index 87f35bd8b..97dbd2321 100644
--- a/src/custodian/src/custodian_sup.erl
+++ b/src/custodian/src/custodian_sup.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian_sup).
diff --git a/src/custodian/src/custodian_util.erl b/src/custodian/src/custodian_util.erl
index 6e0382c4f..785bbd3da 100644
--- a/src/custodian/src/custodian_util.erl
+++ b/src/custodian/src/custodian_util.erl
@@ -1,4 +1,14 @@
-% Copyright 2013 Cloudant. All rights reserved.
+% 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(custodian_util).
-include("custodian.hrl").