You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2016/09/06 15:08:34 UTC

[4/4] fauxton commit: updated refs/heads/master to eb48fdb

add license headers

PR: #768
PR-URL: https://github.com/apache/couchdb-fauxton/pull/768
Reviewed-By: Robert Newson <rn...@apache.org>


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

Branch: refs/heads/master
Commit: 91bb6e44f145353c87b66810c19d6728be73a265
Parents: 34df1bf
Author: Robert Kowalski <ro...@apache.org>
Authored: Mon Sep 5 15:11:42 2016 +0200
Committer: Robert Kowalski <ro...@apache.org>
Committed: Tue Sep 6 17:08:16 2016 +0200

----------------------------------------------------------------------
 bin/create-animal-db         | 12 ++++++++++++
 bin/fauxton                  | 12 ++++++++++++
 bin/install-docker-travis.sh | 13 +++++++++++++
 bin/remove-test-dbs.js       | 12 ++++++++++++
 4 files changed, 49 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/91bb6e44/bin/create-animal-db
----------------------------------------------------------------------
diff --git a/bin/create-animal-db b/bin/create-animal-db
index bc81593..37afc11 100755
--- a/bin/create-animal-db
+++ b/bin/create-animal-db
@@ -1,5 +1,17 @@
 #!/usr/bin/env node
 
+// 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.
+
 // deletes the old animaldb, creates a new, fresh one,
 // with conflicts for the zebra doc
 

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/91bb6e44/bin/fauxton
----------------------------------------------------------------------
diff --git a/bin/fauxton b/bin/fauxton
index 0d6e1f0..e9630fc 100755
--- a/bin/fauxton
+++ b/bin/fauxton
@@ -1,5 +1,17 @@
 #!/usr/bin/env node
 
+// 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.
+
 var optimist = require('optimist')
   .usage('Fauxton server \nUsage: $0')
   .options('couchdb', {

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/91bb6e44/bin/install-docker-travis.sh
----------------------------------------------------------------------
diff --git a/bin/install-docker-travis.sh b/bin/install-docker-travis.sh
index c8ba2e7..99a8286 100755
--- a/bin/install-docker-travis.sh
+++ b/bin/install-docker-travis.sh
@@ -1,4 +1,17 @@
 #!/bin/bash
+
+# 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.
+
 sudo sh -c 'echo "deb https://apt.dockerproject.org/repo ubuntu-precise main" > /etc/apt/sources.list.d/docker.list'
 sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
 sudo apt-get update

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/91bb6e44/bin/remove-test-dbs.js
----------------------------------------------------------------------
diff --git a/bin/remove-test-dbs.js b/bin/remove-test-dbs.js
index 7d85efd..92a7491 100755
--- a/bin/remove-test-dbs.js
+++ b/bin/remove-test-dbs.js
@@ -1,5 +1,17 @@
 #!/usr/bin/env node
 
+// 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.
+
 const fs = require('fs');
 const async = require('async');