You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/10/27 00:06:45 UTC

svn commit: r468168 - in /incubator/harmony/enhanced/tools/trunk/msgstool: ./ src/org/apache/harmony/tools/msgstool/

Author: tellison
Date: Thu Oct 26 15:06:45 2006
New Revision: 468168

URL: http://svn.apache.org/viewvc?view=rev&rev=468168
Log:
Fixing copyright statements in the msgtool and template files.

Modified:
    incubator/harmony/enhanced/tools/trunk/msgstool/build.xml
    incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Main.java
    incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Messages.tpl
    incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/MsgClassGenerator.java
    incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/messages.properties
    incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/modules.properties

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/build.xml?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/build.xml (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/build.xml Thu Oct 26 15:06:45 2006
@@ -1,4 +1,20 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+     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. -->
 
 <project name="msgstool" default="jar" basedir=".">
 

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Main.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Main.java?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Main.java (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Main.java Thu Oct 26 15:06:45 2006
@@ -1,16 +1,18 @@
-/* Copyright 2006 The Apache Software Foundation or its licensors, as applicable
- * 
- * 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
- * 
+/*
+ *  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.
+ *
+ *  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.
  */
 
 package org.apache.harmony.tools.msgstool;

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Messages.tpl
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Messages.tpl?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Messages.tpl (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/Messages.tpl Thu Oct 26 15:06:45 2006
@@ -1,16 +1,18 @@
-/* Copyright 1998, 2006 The Apache Software Foundation or its licensors, as applicable
- * 
- * 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
- * 
+/*
+ *  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.
+ *
+ *  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.
  */
 
 /*

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/MsgClassGenerator.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/MsgClassGenerator.java?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/MsgClassGenerator.java (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/MsgClassGenerator.java Thu Oct 26 15:06:45 2006
@@ -1,16 +1,18 @@
-/* Copyright 2006 The Apache Software Foundation or its licensors, as applicable
- * 
- * 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
- * 
+/*
+ *  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.
+ *
+ *  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.
  */
 
 package org.apache.harmony.tools.msgstool;

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/messages.properties
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/messages.properties?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/messages.properties (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/messages.properties Thu Oct 26 15:06:45 2006
@@ -1,8 +1,9 @@
-# Copyright 1998, 2006 The Apache Software Foundation or its licensors, as applicable
-#  
-#  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
+# 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
 #  
@@ -13,4 +14,4 @@
 #  limitations under the License.
 # 
 
-# messages for EN locale
\ No newline at end of file
+# messages for EN locale

Modified: incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/modules.properties
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/modules.properties?view=diff&rev=468168&r1=468167&r2=468168
==============================================================================
--- incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/modules.properties (original)
+++ incubator/harmony/enhanced/tools/trunk/msgstool/src/org/apache/harmony/tools/msgstool/modules.properties Thu Oct 26 15:06:45 2006
@@ -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.
+# 
+
 # Default set of modules
 module.00=luni
 module.01=security