Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ACBD317751 for ; Tue, 3 Feb 2015 15:13:23 +0000 (UTC) Received: (qmail 90538 invoked by uid 500); 3 Feb 2015 15:13:10 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 90430 invoked by uid 500); 3 Feb 2015 15:13:10 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 89116 invoked by uid 99); 3 Feb 2015 15:13:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Feb 2015 15:13:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2D265E07EB; Tue, 3 Feb 2015 15:13:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robertkowalski@apache.org To: commits@couchdb.apache.org Date: Tue, 03 Feb 2015 15:13:36 -0000 Message-Id: <3fb0f301a2224fee98500967e42d6d74@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [29/50] [abbrv] couchdb-mango git commit: add license headers to source files add license headers to source files Project: http://git-wip-us.apache.org/repos/asf/couchdb-mango/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-mango/commit/440856a3 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-mango/tree/440856a3 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-mango/diff/440856a3 Branch: refs/heads/master Commit: 440856a33ef8af81acad101ca10451f509f9309a Parents: 195d541 Author: Robert Kowalski Authored: Fri Jan 9 14:29:03 2015 +0100 Committer: Robert Kowalski Committed: Fri Jan 9 14:29:03 2015 +0100 ---------------------------------------------------------------------- src/mango.app.src | 12 ++++++++++++ src/mango.hrl | 11 +++++++++++ src/mango_crud.erl | 11 +++++++++++ src/mango_cursor.erl | 12 ++++++++++++ src/mango_cursor.hrl | 11 +++++++++++ src/mango_cursor_view.erl | 12 ++++++++++++ src/mango_doc.erl | 12 ++++++++++++ src/mango_error.erl | 12 ++++++++++++ src/mango_fields.erl | 12 ++++++++++++ src/mango_httpd.erl | 12 ++++++++++++ src/mango_idx.erl | 12 ++++++++++++ src/mango_idx.hrl | 12 ++++++++++++ src/mango_idx_special.erl | 12 ++++++++++++ src/mango_idx_view.erl | 12 ++++++++++++ src/mango_json.erl | 12 ++++++++++++ src/mango_native_proc.erl | 12 ++++++++++++ src/mango_opts.erl | 12 ++++++++++++ src/mango_selector.erl | 12 ++++++++++++ src/mango_sort.erl | 12 ++++++++++++ src/mango_util.erl | 12 ++++++++++++ test/01-index-crud-test.py | 11 +++++++++++ test/02-basic-find-test.py | 12 ++++++++++++ test/03-operator-test.py | 11 +++++++++++ test/04-empty-selectors-test.py | 11 +++++++++++ test/mango.py | 11 +++++++++++ test/user_docs.py | 12 ++++++++++++ 26 files changed, 305 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango.app.src ---------------------------------------------------------------------- diff --git a/src/mango.app.src b/src/mango.app.src index 67e7234..4fda6c0 100644 --- a/src/mango.app.src +++ b/src/mango.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, mango, [ {description, "MongoDB API compatibility layer for Cloudant"}, {vsn, git}, http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango.hrl ---------------------------------------------------------------------- diff --git a/src/mango.hrl b/src/mango.hrl index f265864..26a9d43 100644 --- a/src/mango.hrl +++ b/src/mango.hrl @@ -1,2 +1,13 @@ +% 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(MANGO_ERROR(R), throw({mango_error, ?MODULE, R})). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_crud.erl ---------------------------------------------------------------------- diff --git a/src/mango_crud.erl b/src/mango_crud.erl index 9fcbbc0..159d5f7 100644 --- a/src/mango_crud.erl +++ b/src/mango_crud.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(mango_crud). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_cursor.erl ---------------------------------------------------------------------- diff --git a/src/mango_cursor.erl b/src/mango_cursor.erl index f30084f..22970c7 100644 --- a/src/mango_cursor.erl +++ b/src/mango_cursor.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(mango_cursor). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_cursor.hrl ---------------------------------------------------------------------- diff --git a/src/mango_cursor.hrl b/src/mango_cursor.hrl index b7c08b1..f80c987 100644 --- a/src/mango_cursor.hrl +++ b/src/mango_cursor.hrl @@ -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. -record(cursor, { db, http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_cursor_view.erl ---------------------------------------------------------------------- diff --git a/src/mango_cursor_view.erl b/src/mango_cursor_view.erl index d220f54..a9f66b0 100644 --- a/src/mango_cursor_view.erl +++ b/src/mango_cursor_view.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(mango_cursor_view). -export([ http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_doc.erl ---------------------------------------------------------------------- diff --git a/src/mango_doc.erl b/src/mango_doc.erl index 0d5c731..479a8ad 100644 --- a/src/mango_doc.erl +++ b/src/mango_doc.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(mango_doc). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_error.erl ---------------------------------------------------------------------- diff --git a/src/mango_error.erl b/src/mango_error.erl index 45ffe56..973dd43 100644 --- a/src/mango_error.erl +++ b/src/mango_error.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(mango_error). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_fields.erl ---------------------------------------------------------------------- diff --git a/src/mango_fields.erl b/src/mango_fields.erl index 391a588..46049af 100644 --- a/src/mango_fields.erl +++ b/src/mango_fields.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(mango_fields). -export([ http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_httpd.erl ---------------------------------------------------------------------- diff --git a/src/mango_httpd.erl b/src/mango_httpd.erl index fa6817f..ef4cc5b 100644 --- a/src/mango_httpd.erl +++ b/src/mango_httpd.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(mango_httpd). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_idx.erl ---------------------------------------------------------------------- diff --git a/src/mango_idx.erl b/src/mango_idx.erl index 0498e07..c0a07a8 100644 --- a/src/mango_idx.erl +++ b/src/mango_idx.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. + % This module is for the "index object" as in, the data structure % representing an index. Not to be confused with mango_index which % contains APIs for managing indexes. http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_idx.hrl ---------------------------------------------------------------------- diff --git a/src/mango_idx.hrl b/src/mango_idx.hrl index 52bc010..712031b 100644 --- a/src/mango_idx.hrl +++ b/src/mango_idx.hrl @@ -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. + -record(idx, { dbname, ddoc, http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_idx_special.erl ---------------------------------------------------------------------- diff --git a/src/mango_idx_special.erl b/src/mango_idx_special.erl index dcff480..0234dff 100644 --- a/src/mango_idx_special.erl +++ b/src/mango_idx_special.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(mango_idx_special). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_idx_view.erl ---------------------------------------------------------------------- diff --git a/src/mango_idx_view.erl b/src/mango_idx_view.erl index 552acf5..993574f 100644 --- a/src/mango_idx_view.erl +++ b/src/mango_idx_view.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(mango_idx_view). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_json.erl ---------------------------------------------------------------------- diff --git a/src/mango_json.erl b/src/mango_json.erl index 9e6a78c..1a52003 100644 --- a/src/mango_json.erl +++ b/src/mango_json.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(mango_json). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_native_proc.erl ---------------------------------------------------------------------- diff --git a/src/mango_native_proc.erl b/src/mango_native_proc.erl index aaa00e2..636da5c 100644 --- a/src/mango_native_proc.erl +++ b/src/mango_native_proc.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(mango_native_proc). -behavior(gen_server). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_opts.erl ---------------------------------------------------------------------- diff --git a/src/mango_opts.erl b/src/mango_opts.erl index cb42011..45784a9 100644 --- a/src/mango_opts.erl +++ b/src/mango_opts.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(mango_opts). -export([ http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_selector.erl ---------------------------------------------------------------------- diff --git a/src/mango_selector.erl b/src/mango_selector.erl index da6a8ba..d1c9898 100644 --- a/src/mango_selector.erl +++ b/src/mango_selector.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(mango_selector). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_sort.erl ---------------------------------------------------------------------- diff --git a/src/mango_sort.erl b/src/mango_sort.erl index 75cb3c2..717099b 100644 --- a/src/mango_sort.erl +++ b/src/mango_sort.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(mango_sort). -export([ http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/src/mango_util.erl ---------------------------------------------------------------------- diff --git a/src/mango_util.erl b/src/mango_util.erl index a60eb50..b0767dc 100644 --- a/src/mango_util.erl +++ b/src/mango_util.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(mango_util). http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/01-index-crud-test.py ---------------------------------------------------------------------- diff --git a/test/01-index-crud-test.py b/test/01-index-crud-test.py index 1f8b8bf..be13bdd 100644 --- a/test/01-index-crud-test.py +++ b/test/01-index-crud-test.py @@ -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. import random import time http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/02-basic-find-test.py ---------------------------------------------------------------------- diff --git a/test/02-basic-find-test.py b/test/02-basic-find-test.py index f897ddb..f6b0610 100644 --- a/test/02-basic-find-test.py +++ b/test/02-basic-find-test.py @@ -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. + # -*- coding: latin-1 -*- import user_docs http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/03-operator-test.py ---------------------------------------------------------------------- diff --git a/test/03-operator-test.py b/test/03-operator-test.py index 4ef93ff..bd0500f 100644 --- a/test/03-operator-test.py +++ b/test/03-operator-test.py @@ -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. import user_docs http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/04-empty-selectors-test.py ---------------------------------------------------------------------- diff --git a/test/04-empty-selectors-test.py b/test/04-empty-selectors-test.py index ba05ea3..08bb03e 100644 --- a/test/04-empty-selectors-test.py +++ b/test/04-empty-selectors-test.py @@ -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. import user_docs http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/mango.py ---------------------------------------------------------------------- diff --git a/test/mango.py b/test/mango.py index fc201d6..3163cf5 100644 --- a/test/mango.py +++ b/test/mango.py @@ -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. import json import time http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/440856a3/test/user_docs.py ---------------------------------------------------------------------- diff --git a/test/user_docs.py b/test/user_docs.py index d129f59..1cccb58 100644 --- a/test/user_docs.py +++ b/test/user_docs.py @@ -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. + # -*- coding: latin-1 -*- """ Generated with http://www.json-generator.com/