You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2021/02/22 17:01:12 UTC

svn commit: r1886805 - in /pivot/trunk: package-info.java pivot.css pivot_style_checks.xml script script.bat setenv setenv.bat tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java unsetenv unsetenv.bat

Author: rwhitcomb
Date: Mon Feb 22 17:01:12 2021
New Revision: 1886805

URL: http://svn.apache.org/viewvc?rev=1886805&view=rev
Log:
Changes to fix RAT errors (missing licenses).

Modified:
    pivot/trunk/package-info.java
    pivot/trunk/pivot.css
    pivot/trunk/pivot_style_checks.xml
    pivot/trunk/script
    pivot/trunk/script.bat
    pivot/trunk/setenv
    pivot/trunk/setenv.bat
    pivot/trunk/tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java
    pivot/trunk/unsetenv
    pivot/trunk/unsetenv.bat

Modified: pivot/trunk/package-info.java
URL: http://svn.apache.org/viewvc/pivot/trunk/package-info.java?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/package-info.java (original)
+++ pivot/trunk/package-info.java Mon Feb 22 17:01:12 2021
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /**
  * Various build-related scripts and programs.
  */

Modified: pivot/trunk/pivot.css
URL: http://svn.apache.org/viewvc/pivot/trunk/pivot.css?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/pivot.css (original)
+++ pivot/trunk/pivot.css Mon Feb 22 17:01:12 2021
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 #proptable {
     border-collapse: collapse;
     caption-side: bottom;

Modified: pivot/trunk/pivot_style_checks.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/pivot_style_checks.xml?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/pivot_style_checks.xml (original)
+++ pivot/trunk/pivot_style_checks.xml Mon Feb 22 17:01:12 2021
@@ -4,6 +4,23 @@
           "http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd">
 
 <!--
+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.
+-->
+
+<!--
 
   Checkstyle configuration that checks the sun coding conventions from:
 

Modified: pivot/trunk/script
URL: http://svn.apache.org/viewvc/pivot/trunk/script?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/script (original)
+++ pivot/trunk/script Mon Feb 22 17:01:12 2021
@@ -1,4 +1,20 @@
 #!/bin/sh
+#
+# 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.
+#
 if [ -z "$1" ] ; then
     echo Usage: $0 path_to_bxml_file
     exit 1

Modified: pivot/trunk/script.bat
URL: http://svn.apache.org/viewvc/pivot/trunk/script.bat?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/script.bat (original)
+++ pivot/trunk/script.bat Mon Feb 22 17:01:12 2021
@@ -1,4 +1,20 @@
 @echo off
+::
+:: 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.
+::
 if "%1" == "" (
     echo Usage: %0 path_to_bxml_file
     exit /b 1

Modified: pivot/trunk/setenv
URL: http://svn.apache.org/viewvc/pivot/trunk/setenv?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/setenv (original)
+++ pivot/trunk/setenv Mon Feb 22 17:01:12 2021
@@ -1,4 +1,20 @@
 #!/bin/bash
+# 
+# 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.
+#
 if [ -z "$CLASSPATH_OLD" ]
 then
     export CLASSPATH_OLD=$CLASSPATH

Modified: pivot/trunk/setenv.bat
URL: http://svn.apache.org/viewvc/pivot/trunk/setenv.bat?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/setenv.bat (original)
+++ pivot/trunk/setenv.bat Mon Feb 22 17:01:12 2021
@@ -1,4 +1,20 @@
 @echo off
+::
+:: 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.
+::
 set CLASSPATH_OLD=%CLASSPATH%
 for %%F in (%CD%\lib\pivot*.jar) do call addclass %%F
 for %%F in (%CD%\wtk\lib\*.jar) do call addclass %%F

Modified: pivot/trunk/tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java
URL: http://svn.apache.org/viewvc/pivot/trunk/tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java (original)
+++ pivot/trunk/tutorials/src/org/apache/pivot/tutorials/calculator/Calculator.java Mon Feb 22 17:01:12 2021
@@ -6,7 +6,7 @@
  * 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/LICENSEPERCENT_SCALE.0
+ *     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,

Modified: pivot/trunk/unsetenv
URL: http://svn.apache.org/viewvc/pivot/trunk/unsetenv?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/unsetenv (original)
+++ pivot/trunk/unsetenv Mon Feb 22 17:01:12 2021
@@ -1,4 +1,20 @@
 #!/bin/bash
+# 
+# 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.
+#
 if [ -n "$CLASSPATH_OLD" ]
 then
     export CLASSPATH=$CLASSPATH_OLD

Modified: pivot/trunk/unsetenv.bat
URL: http://svn.apache.org/viewvc/pivot/trunk/unsetenv.bat?rev=1886805&r1=1886804&r2=1886805&view=diff
==============================================================================
--- pivot/trunk/unsetenv.bat (original)
+++ pivot/trunk/unsetenv.bat Mon Feb 22 17:01:12 2021
@@ -1,3 +1,19 @@
 @echo off
+::
+:: 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.
+::
 if not "%CLASSPATH_OLD%"=="" (set CLASSPATH=%CLASSPATH_OLD%) && (set CLASSPATH_OLD=)
 echo CLASSPATH=%CLASSPATH%