You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/01/28 21:50:06 UTC

[2/2] git commit: CB-2299 part 2: apache RAT audit for CLI.

Updated Branches:
  refs/heads/master f45639afd -> e8bd7a370


CB-2299 part 2: apache RAT audit for CLI.


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/e8bd7a37
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/e8bd7a37
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/e8bd7a37

Branch: refs/heads/master
Commit: e8bd7a370a3303c92e6b067569bfa6fbbac3511b
Parents: bb819d1
Author: Fil Maj <ma...@gmail.com>
Authored: Mon Jan 28 12:53:00 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Mon Jan 28 12:53:00 2013 -0800

----------------------------------------------------------------------
 bin/cordova  |   18 ++++++++++++++++++
 bootstrap.js |   17 +++++++++++++++++
 cordova.js   |   18 ++++++++++++++++++
 platforms.js |   19 +++++++++++++++++++
 4 files changed, 72 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/e8bd7a37/bin/cordova
----------------------------------------------------------------------
diff --git a/bin/cordova b/bin/cordova
index 4d29175..97d2358 100755
--- a/bin/cordova
+++ b/bin/cordova
@@ -1,3 +1,21 @@
+#    Licensed to the Apache Software Foundation (ASF) under one
+#    or more contributor license agreements.  See the NOTICE file
+#    distributed with this work for additional information
+#    regarding copyright ownership.  The ASF licenses this file
+#    to you 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.
+
 #!/usr/bin/env node
 var tokens = process.argv.slice(2, process.argv.length),
     cordova= require('../cordova');

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/e8bd7a37/bootstrap.js
----------------------------------------------------------------------
diff --git a/bootstrap.js b/bootstrap.js
index 95506f9..74f913e 100644
--- a/bootstrap.js
+++ b/bootstrap.js
@@ -1,4 +1,21 @@
 /**
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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.
+ **
  * BOOTSTRAP
  * Runs through any bs to make sure the libraries and tests are good to go.
  **/

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/e8bd7a37/cordova.js
----------------------------------------------------------------------
diff --git a/cordova.js b/cordova.js
index 3296841..6d07878 100755
--- a/cordova.js
+++ b/cordova.js
@@ -1,3 +1,21 @@
+/**
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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 cordova_events = require('./src/events');
 
 module.exports = {

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/e8bd7a37/platforms.js
----------------------------------------------------------------------
diff --git a/platforms.js b/platforms.js
index 4acc953..be295a8 100644
--- a/platforms.js
+++ b/platforms.js
@@ -1 +1,20 @@
+/**
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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.exports = ['ios', 'android', 'blackberry'];