You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2007/09/02 21:33:37 UTC

svn commit: r572121 - in /tomcat/connectors/trunk/jni: ./ examples/org/apache/tomcat/jni/ java/org/apache/tomcat/ native/os/win32/

Author: markt
Date: Sun Sep  2 12:33:36 2007
New Revision: 572121

URL: http://svn.apache.org/viewvc?rev=572121&view=rev
Log:
Run insert_license.pl on connectors/jni

Modified:
    tomcat/connectors/trunk/jni/README.txt
    tomcat/connectors/trunk/jni/build.xml
    tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Echo.properties
    tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Local.properties
    tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/LocalServer.java
    tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSL.properties
    tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSLServer.java
    tomcat/connectors/trunk/jni/java/org/apache/tomcat/apr.properties
    tomcat/connectors/trunk/jni/native/os/win32/libtcnative.rc

Modified: tomcat/connectors/trunk/jni/README.txt
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/README.txt?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/README.txt (original)
+++ tomcat/connectors/trunk/jni/README.txt Sun Sep  2 12:33:36 2007
@@ -1,3 +1,18 @@
+  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.
+
 This directory contains both the native and java-side code for
 Tomcat Native Library.
 

Modified: tomcat/connectors/trunk/jni/build.xml
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/build.xml?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/build.xml (original)
+++ tomcat/connectors/trunk/jni/build.xml Sun Sep  2 12:33:36 2007
@@ -1,4 +1,20 @@
 <?xml version="1.0"?>
+<!--
+  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.
+-->
 <!-- Build file for Tomcat Native -->
 <project name="Tomcat Native" default="compile" basedir=".">
     <!-- Give user a chance to override without editing this file

Modified: tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Echo.properties
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Echo.properties?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Echo.properties (original)
+++ tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Echo.properties Sun Sep  2 12:33:36 2007
@@ -1,2 +1,17 @@
+# 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.
+
 # Telnet properties
 echo.port=23

Modified: tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Local.properties
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Local.properties?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Local.properties (original)
+++ tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/Local.properties Sun Sep  2 12:33:36 2007
@@ -1,3 +1,18 @@
+# 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.
+
 # Local properties
 local.max=10
 

Modified: tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/LocalServer.java
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/LocalServer.java?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/LocalServer.java (original)
+++ tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/LocalServer.java Sun Sep  2 12:33:36 2007
@@ -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.
+ */
 package org.apache.tomcat.jni;
 
 import java.io.InputStream;

Modified: tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSL.properties
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSL.properties?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSL.properties (original)
+++ tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSL.properties Sun Sep  2 12:33:36 2007
@@ -1,3 +1,18 @@
+# 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.
+
 # SSL Server and client properties
 server.port=4443
 server.cert=localhost.crt

Modified: tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSLServer.java
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSLServer.java?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSLServer.java (original)
+++ tomcat/connectors/trunk/jni/examples/org/apache/tomcat/jni/SSLServer.java Sun Sep  2 12:33:36 2007
@@ -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.
+ */
 package org.apache.tomcat.jni;
 
 import java.io.InputStream;

Modified: tomcat/connectors/trunk/jni/java/org/apache/tomcat/apr.properties
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/java/org/apache/tomcat/apr.properties?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/java/org/apache/tomcat/apr.properties (original)
+++ tomcat/connectors/trunk/jni/java/org/apache/tomcat/apr.properties Sun Sep  2 12:33:36 2007
@@ -1 +1,16 @@
+# 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.
+
 tcn.info=Tomcat Native/@VERSION@

Modified: tomcat/connectors/trunk/jni/native/os/win32/libtcnative.rc
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/native/os/win32/libtcnative.rc?rev=572121&r1=572120&r2=572121&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/native/os/win32/libtcnative.rc (original)
+++ tomcat/connectors/trunk/jni/native/os/win32/libtcnative.rc Sun Sep  2 12:33:36 2007
@@ -3,17 +3,15 @@
 LANGUAGE 0x9,0x1
 1 11 logmessages.bin
 
-#define TCN_COPYRIGHT "Copyright 2000-2007 The Apache Software " \
-                      "Foundation or its licensors, as applicable."
+#define TCN_COPYRIGHT "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."
 
-#define TCN_LICENSE  "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\r\n\r\n"
+#define TCN_LICENSE  "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\r\n\r\n"
                      "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
                      "Unless required by applicable law or agreed to in " \
                      "writing, software distributed under the License is " \



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org