You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jf...@apache.org on 2014/04/29 22:58:46 UTC

git commit: AURORA-278: Review Incubator release checklist - missing license headers

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 891127320 -> 892852327


AURORA-278: Review Incubator release checklist - missing license headers

Adds missing license headers for sh, js and py files as well as updates
the LICENSE for jquery in src/main/python


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/89285232
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/89285232
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/89285232

Branch: refs/heads/master
Commit: 892852327aa31b80c1972ee6069c13c5666555d3
Parents: 8911273
Author: jfarrell <jf...@apache.org>
Authored: Tue Apr 29 16:39:13 2014 -0400
Committer: jfarrell <jf...@apache.org>
Committed: Tue Apr 29 16:39:13 2014 -0400

----------------------------------------------------------------------
 LICENSE                                             |  1 +
 examples/vagrant/test_tutorial.sh                   | 16 ++++++++++++++++
 src/main/python/apache/aurora/common/shellify.py    | 16 ++++++++++++++++
 .../thermos/observer/http/assets/jquery.pailer.js   | 16 ++++++++++++++++
 .../apache/thermos/observer/http/assets/observer.js | 15 +++++++++++++++
 .../org/apache/aurora/scheduler/http/ui/js/app.js   | 15 +++++++++++++++
 .../aurora/scheduler/http/ui/js/controllers.js      | 15 +++++++++++++++
 .../aurora/scheduler/http/ui/js/directives.js       | 15 +++++++++++++++
 .../apache/aurora/scheduler/http/ui/js/filters.js   | 15 +++++++++++++++
 .../apache/aurora/scheduler/http/ui/js/services.js  | 15 +++++++++++++++
 .../python/apache/aurora/common/test_shellify.py    | 16 ++++++++++++++++
 11 files changed, 155 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index 1aea1f7..1671a62 100644
--- a/LICENSE
+++ b/LICENSE
@@ -265,6 +265,7 @@ limitations under the License.
 
 jQuery (http://jquery.com/)
   Location: 3rdparty/javascript/bower_components/jquery
+            src/main/python/apache/thermos/observer/http/assets/jquery.js
   From: 'The jQuery Foundation' (http://www.jquery.com/)
   License:  MIT License
 

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/examples/vagrant/test_tutorial.sh
----------------------------------------------------------------------
diff --git a/examples/vagrant/test_tutorial.sh b/examples/vagrant/test_tutorial.sh
index b607c3a..0aad706 100644
--- a/examples/vagrant/test_tutorial.sh
+++ b/examples/vagrant/test_tutorial.sh
@@ -1,4 +1,20 @@
 #!/bin/bash
+#
+# Copyright 2014 Apache Software Foundation
+#
+# 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.
+#
+
 set -o nounset
 
 # Tests the basic functions described in docs/tutorial.md

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/python/apache/aurora/common/shellify.py
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/common/shellify.py b/src/main/python/apache/aurora/common/shellify.py
index 67d81f0..07f3fa2 100644
--- a/src/main/python/apache/aurora/common/shellify.py
+++ b/src/main/python/apache/aurora/common/shellify.py
@@ -1,3 +1,19 @@
+#
+# Copyright 2014 Apache Software Foundation
+#
+# 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 pipes
 
 from twitter.common.lang import Compatibility

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/python/apache/thermos/observer/http/assets/jquery.pailer.js
----------------------------------------------------------------------
diff --git a/src/main/python/apache/thermos/observer/http/assets/jquery.pailer.js b/src/main/python/apache/thermos/observer/http/assets/jquery.pailer.js
index 5962f9e..9bc1166 100644
--- a/src/main/python/apache/thermos/observer/http/assets/jquery.pailer.js
+++ b/src/main/python/apache/thermos/observer/http/assets/jquery.pailer.js
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
+
 // A jQuery plugin for PAging and taILing data (i.e., a
 // 'PAILer'). Paging occurs when scrolling reaches the "top" and
 // tailing occurs when scrolling has reached the "bottom".

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/python/apache/thermos/observer/http/assets/observer.js
----------------------------------------------------------------------
diff --git a/src/main/python/apache/thermos/observer/http/assets/observer.js b/src/main/python/apache/thermos/observer/http/assets/observer.js
index 84aec5d..8faafb9 100644
--- a/src/main/python/apache/thermos/observer/http/assets/observer.js
+++ b/src/main/python/apache/thermos/observer/http/assets/observer.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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 Task = new Class({
    data: {},
 

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/resources/org/apache/aurora/scheduler/http/ui/js/app.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/app.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/app.js
index 8806964..1a61712 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/app.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/app.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
 'use strict';
 
 // Declare app level module which depends on filters, and services

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
index e0b3aab..7c80bd7 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
 'use strict';
 
 /* Controllers */

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/resources/org/apache/aurora/scheduler/http/ui/js/directives.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/directives.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/directives.js
index 5d6f2b6..a79276d 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/directives.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/directives.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
 'use strict';
 
 auroraUI.directive('roleLink', function () {

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/resources/org/apache/aurora/scheduler/http/ui/js/filters.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/filters.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/filters.js
index 2a3959c..2e8b73b 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/filters.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/filters.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
 'use strict';
 
 auroraUI.filter('scheduleStatusTooltip', function () {

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/main/resources/org/apache/aurora/scheduler/http/ui/js/services.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/services.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/services.js
index e04c8c6..96748eb 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/services.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/services.js
@@ -1,3 +1,18 @@
+/**
+ * Copyright 2014 Apache Software Foundation
+ *
+ * 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.
+ */
 'use strict';
 
 auroraUI.factory(

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89285232/src/test/python/apache/aurora/common/test_shellify.py
----------------------------------------------------------------------
diff --git a/src/test/python/apache/aurora/common/test_shellify.py b/src/test/python/apache/aurora/common/test_shellify.py
index 8ecce7f..40e551a 100644
--- a/src/test/python/apache/aurora/common/test_shellify.py
+++ b/src/test/python/apache/aurora/common/test_shellify.py
@@ -1,3 +1,19 @@
+#
+# Copyright 2014 Apache Software Foundation
+#
+# 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.
+#
+
 from apache.aurora.common.shellify import shellify