You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mk...@apache.org on 2012/09/15 02:19:46 UTC

svn commit: r1384981 - in /myfaces/core/trunk: api/ impl/ impl/src/main/conf/META-INF/ impl/src/main/resources/META-INF/ impl/src/test/java/org/apache/myfaces/config/annotation/ impl/src/test/resources/org/apache/myfaces/lifecycle/ impl/src/test/resour...

Author: mkienenb
Date: Sat Sep 15 00:19:45 2012
New Revision: 1384981

URL: http://svn.apache.org/viewvc?rev=1384981&view=rev
Log:
MYFACES-3608 - Fix missing licenses

Modified:
    myfaces/core/trunk/api/pom.xml
    myfaces/core/trunk/impl/pom.xml
    myfaces/core/trunk/impl/src/main/conf/META-INF/.standard-faces-config-base.xml.jsfdia
    myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-component.vm
    myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-tag.vm
    myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-web-config.vm
    myfaces/core/trunk/impl/src/test/java/org/apache/myfaces/config/annotation/ClassByteCodeAnnotationFilterTest.java
    myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view1.jsp
    myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view2.xhtml
    myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/view/facelets/tag/composite/testSimpleThisResourceReference.xhtml
    myfaces/core/trunk/implee6/pom.xml
    myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view1.jsp
    myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml
    myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view1.jsp
    myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml

Modified: myfaces/core/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/pom.xml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/api/pom.xml (original)
+++ myfaces/core/trunk/api/pom.xml Sat Sep 15 00:19:45 2012
@@ -74,6 +74,21 @@
         
         <plugins>
 
+            <!-- license checker needs to exclude some kinds of files -->
+			<plugin>
+				<groupId>org.apache.rat</groupId>
+				<artifactId>apache-rat-plugin</artifactId>
+				<configuration>
+					<excludes>
+						<!-- dojo has combined new bsd + AFL 2.1 license -->
+						<exclude>src/main/resources/META-INF/licenses/dojo-LICENSE.TXT</exclude>
+						
+						<!-- facelets has non-standard APL license -->
+						<exclude>src/main/resources/META-INF/licenses/facelets-LICENSE.txt</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
+			
             <!-- compilation and compression of our javascripts -->
             <plugin>
                 <artifactId>myfaces-javascript-plugin</artifactId>

Modified: myfaces/core/trunk/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/pom.xml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/pom.xml (original)
+++ myfaces/core/trunk/impl/pom.xml Sat Sep 15 00:19:45 2012
@@ -53,6 +53,44 @@
         
         <plugins>
 
+            <!-- license checker needs to exclude some kinds of files -->
+			<plugin>
+				<groupId>org.apache.rat</groupId>
+				<artifactId>apache-rat-plugin</artifactId>
+				<configuration>
+					<excludes>
+						
+						<!-- The xsd files are CDDL+GLP:
+						  Category B: Reciprocal Licenses
+						 "For small amounts of source that is directly consumed by the ASF product
+						  at runtime in source form, and for which that source is unlikely to be
+						  changed anyway (say, by virtue of being specified by a standard), this
+						  action is sufficient. An example of this is the web-facesconfig_1_0.dtd,
+						  whose inclusion is mandated by the JSR 127: JavaServer Faces specification."
+						  http://www.apache.org/legal/3party.html
+						-->
+						<exclude>src/main/resources/META-INF/licenses/glassfish-LICENSE.txt</exclude>
+						<exclude>src/main/resources/org/apache/myfaces/resource/javaee_5.xsd</exclude>
+						<exclude>src/main/resources/org/apache/myfaces/resource/javaee_web_services_client_1_2.xsd</exclude>
+
+						<!-- facelets has non-standard APL license -->
+						<exclude>src/main/resources/META-INF/licenses/facelets-LICENSE.txt</exclude>
+						
+						<!-- services files are trivial config files with no comments -->
+						<exclude>src/test/resources/META-INF/services/org.apache.myfaces.config.annotation.LifecycleProvider</exclude>
+						<exclude>src/main/resources/META-INF/services/org.apache.myfaces.config.annotation.LifecycleProvider</exclude>
+
+						<!-- these jsf.js files are trivial empty placeholders -->
+						<exclude>src/test/resources/org/apache/myfaces/view/facelets/tag/composite/javax.faces/jsf.js</exclude>
+						<exclude>src/test/resources/org/apache/myfaces/view/facelets/tag/jsf/html/javax.faces/jsf.js</exclude>
+						<exclude>src/test/resources/org/apache/myfaces/view/facelets/updateheadres/resources/javax.faces/jsf.js</exclude>
+
+						<!-- This file probably needs a license, but I don't know if it's safe to put it in there -->
+						<exclude>src/test/resources/org/apache/myfaces/context/nestedScriptCDATA.xml</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
+			
             <!-- myfaces-build-plugin - we generate a lot of stuff with this plugin (see executions) -->
             <plugin>
                 <groupId>org.apache.myfaces.buildtools</groupId>

Modified: myfaces/core/trunk/impl/src/main/conf/META-INF/.standard-faces-config-base.xml.jsfdia
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/conf/META-INF/.standard-faces-config-base.xml.jsfdia?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/conf/META-INF/.standard-faces-config-base.xml.jsfdia (original)
+++ myfaces/core/trunk/impl/src/main/conf/META-INF/.standard-faces-config-base.xml.jsfdia Sat Sep 15 00:19:45 2012
@@ -1,2 +1,20 @@
 <?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.
+-->
 <PROCESS model-entity="JSFProcess"/>

Modified: myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-component.vm
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-component.vm?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-component.vm (original)
+++ myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-component.vm Sat Sep 15 00:19:45 2012
@@ -1,4 +1,17 @@
 <?xml version="1.0" encoding="UTF-8" ?>
+#*
+ 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.
+*###
 <document>
  <properties>
   <title>&lt;${component.name}&gt;</title>

Modified: myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-tag.vm
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-tag.vm?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-tag.vm (original)
+++ myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-tag.vm Sat Sep 15 00:19:45 2012
@@ -1,4 +1,17 @@
 <?xml version="1.0" encoding="UTF-8" ?>
+#*
+ 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.
+*###
 <document>
  <properties>
   <title>&lt;${tag.name}&gt;</title>

Modified: myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-web-config.vm
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-web-config.vm?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-web-config.vm (original)
+++ myfaces/core/trunk/impl/src/main/resources/META-INF/xdoc-web-config.vm Sat Sep 15 00:19:45 2012
@@ -1,4 +1,17 @@
 <?xml version="1.0" encoding="UTF-8" ?>
+#*
+ 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.
+*###
 <document>
  <properties>
   <title>Web Context Parameters</title>

Modified: myfaces/core/trunk/impl/src/test/java/org/apache/myfaces/config/annotation/ClassByteCodeAnnotationFilterTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/test/java/org/apache/myfaces/config/annotation/ClassByteCodeAnnotationFilterTest.java?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/test/java/org/apache/myfaces/config/annotation/ClassByteCodeAnnotationFilterTest.java (original)
+++ myfaces/core/trunk/impl/src/test/java/org/apache/myfaces/config/annotation/ClassByteCodeAnnotationFilterTest.java Sat Sep 15 00:19:45 2012
@@ -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.
+ */
 package org.apache.myfaces.config.annotation;
 
 import java.io.DataInputStream;

Modified: myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view1.jsp
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view1.jsp?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view1.jsp (original)
+++ myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view1.jsp Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id$
+-->
 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

Modified: myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view2.xhtml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view2.xhtml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view2.xhtml (original)
+++ myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/lifecycle/view2.xhtml Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id: defineInclude.xml 804043 2009-08-13 22:08:44Z lu4242 $
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>

Modified: myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/view/facelets/tag/composite/testSimpleThisResourceReference.xhtml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/view/facelets/tag/composite/testSimpleThisResourceReference.xhtml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/view/facelets/tag/composite/testSimpleThisResourceReference.xhtml (original)
+++ myfaces/core/trunk/impl/src/test/resources/org/apache/myfaces/view/facelets/tag/composite/testSimpleThisResourceReference.xhtml Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id: defineInclude.xml 804043 2009-08-13 22:08:44Z lu4242 $
+-->
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Modified: myfaces/core/trunk/implee6/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/implee6/pom.xml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/implee6/pom.xml (original)
+++ myfaces/core/trunk/implee6/pom.xml Sat Sep 15 00:19:45 2012
@@ -16,7 +16,7 @@
  * limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
+        
     <parent>
         <groupId>org.apache.myfaces.core</groupId>
         <artifactId>myfaces-core-project</artifactId>
@@ -41,6 +41,25 @@
         <url>http://svn.apache.org/repos/asf/myfaces/core/trunk/implee6</url>
     </scm>
 
+    <build>
+
+        <plugins>
+
+            <!-- license checker needs to exclude some kinds of files -->
+			<plugin>
+				<groupId>org.apache.rat</groupId>
+				<artifactId>apache-rat-plugin</artifactId>
+				<configuration>
+					<excludes>
+						<!-- services files are trivial config files with no comments -->
+						<exclude>src/main/resources/META-INF/services/javax.servlet.ServletContainerInitializer</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
+
+        </plugins>
+
+    </build>
 
     <dependencies>
 

Modified: myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view1.jsp
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view1.jsp?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view1.jsp (original)
+++ myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view1.jsp Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id$
+-->
 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

Modified: myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml (original)
+++ myfaces/core/trunk/shared-public/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id: defineInclude.xml 804043 2009-08-13 22:08:44Z lu4242 $
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>

Modified: myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view1.jsp
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view1.jsp?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view1.jsp (original)
+++ myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view1.jsp Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id$
+-->
 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

Modified: myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml?rev=1384981&r1=1384980&r2=1384981&view=diff
==============================================================================
--- myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml (original)
+++ myfaces/core/trunk/shared/src/test/resources/org/apache/myfaces/shared/application/view2.xhtml Sat Sep 15 00:19:45 2012
@@ -1,3 +1,18 @@
+<!--
+ 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.
+
+ $Id: defineInclude.xml 804043 2009-08-13 22:08:44Z lu4242 $
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>