You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/09/19 11:20:26 UTC

svn commit: r1808861 - in /commons/proper/jelly/branches/1.X/jelly-tags/sql: ./ src/java/javax/servlet/jsp/jstl/sql/ src/java/org/apache/commons/jelly/tags/sql/ src/test/org/apache/commons/jelly/tags/sql/ xdocs/

Author: chtompki
Date: Tue Sep 19 11:20:26 2017
New Revision: 1808861

URL: http://svn.apache.org/viewvc?rev=1808861&view=rev
Log:
jelly-tags -> sql: license-header update.

Modified:
    commons/proper/jelly/branches/1.X/jelly-tags/sql/build.xml
    commons/proper/jelly/branches/1.X/jelly-tags/sql/maven.xml
    commons/proper/jelly/branches/1.X/jelly-tags/sql/project.properties
    commons/proper/jelly/branches/1.X/jelly-tags/sql/project.xml
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/Result.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceUtil.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceWrapper.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DateParamTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DriverTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ParamTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/QueryTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultSetTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/RowTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SetDataSourceTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagLibrary.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagSupport.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/UpdateTag.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/package.html
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/TestJUnit.java
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example.jelly
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example2.jelly
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example3.jelly
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/suite.jelly
    commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/testSql.jelly
    commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/changes.xml
    commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/index.xml
    commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/navigation.xml

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/build.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/build.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/build.xml Tue Sep 19 11:20:26 2017
@@ -1,5 +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.
+-->
 <!--build.xml generated by maven from project.xml version 1.0-SNAPSHOT
   on date May 24 2004, time 2302-->
 <project default="jar" name="commons-jelly-tags-sql" basedir=".">

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/maven.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/maven.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/maven.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/maven.xml Tue Sep 19 11:20:26 2017
@@ -1,18 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Copyright 2002-2004 The 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
+<!---
+ 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.
 -->
 <project default="java:jar">
 

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/project.properties
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/project.properties?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/project.properties (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/project.properties Tue Sep 19 11:20:26 2017
@@ -1,17 +1,18 @@
-
-# Copyright 2002-2004 The Apache Software Foundation
+#   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
 #
-# 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
 #
-#     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.
 
 # -------------------------------------------------------------------
 # P R O J E C T  P R O P E R T I E S

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/project.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/project.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/project.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/project.xml Tue Sep 19 11:20:26 2017
@@ -1,18 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Copyright 2002-2004 The 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
+<!---
+ 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.
 -->
 <project>
   <extend>${basedir}/../tag-project.xml</extend>

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/Result.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/Result.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/Result.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/Result.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package javax.servlet.jsp.jstl.sql;
 
 import java.util.SortedMap;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultImpl.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package javax.servlet.jsp.jstl.sql;
 
 import java.sql.*;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultSupport.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultSupport.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/ResultSupport.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package javax.servlet.jsp.jstl.sql;
 
 import java.sql.ResultSet;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package javax.servlet.jsp.jstl.sql;
 
 /**

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceUtil.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceUtil.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceUtil.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceUtil.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import javax.sql.DataSource;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceWrapper.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceWrapper.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceWrapper.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DataSourceWrapper.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.io.PrintWriter;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DateParamTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DateParamTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DateParamTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DateParamTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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
  *

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DriverTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DriverTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DriverTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/DriverTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import org.apache.commons.jelly.JellyTagException;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ParamTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ParamTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ParamTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ParamTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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
  *

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/QueryTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/QueryTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/QueryTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/QueryTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.sql.Connection;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultImpl.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.sql.*;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultSetTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultSetTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultSetTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/ResultSetTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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
  *

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/RowTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/RowTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/RowTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/RowTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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
  *

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SetDataSourceTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SetDataSourceTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SetDataSourceTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SetDataSourceTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import javax.sql.DataSource;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagLibrary.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagLibrary.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagLibrary.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagLibrary.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import org.apache.commons.jelly.tags.core.CoreTagLibrary;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagSupport.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagSupport.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagSupport.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/SqlTagSupport.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.sql.Connection;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/TransactionTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.sql.Connection;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/UpdateTag.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/UpdateTag.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/UpdateTag.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/UpdateTag.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.commons.jelly.tags.sql;
 
 import java.sql.Connection;

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/package.html
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/package.html?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/package.html (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/java/org/apache/commons/jelly/tags/sql/package.html Tue Sep 19 11:20:26 2017
@@ -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.
+-->
 <html>
 <head>
 </head>

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/TestJUnit.java
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/TestJUnit.java?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/TestJUnit.java (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/TestJUnit.java Tue Sep 19 11:20:26 2017
@@ -1,9 +1,10 @@
 /*
- * Copyright 2002,2004 The 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
+ * 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
  *

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example.jelly
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example.jelly?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
Binary files - no diff available.

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example2.jelly
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example2.jelly?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
Binary files - no diff available.

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example3.jelly
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/example3.jelly?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
Binary files - no diff available.

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/suite.jelly
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/suite.jelly?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
Binary files - no diff available.

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/testSql.jelly
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/src/test/org/apache/commons/jelly/tags/sql/testSql.jelly?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
Binary files - no diff available.

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/changes.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/changes.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/changes.xml Tue Sep 19 11:20:26 2017
@@ -1,22 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- 
-/*
- * Copyright 2001-2004 The 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.
- */
- -->
+<!---
+ 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.
+-->
 
 <document>
   <properties>

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/index.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/index.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/index.xml Tue Sep 19 11:20:26 2017
@@ -1,18 +1,19 @@
 <?xml version="1.0"?>
-<!--
-  Copyright 2002-2004 The 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
+<!---
+ 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.
 -->
 
 <document>

Modified: commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/navigation.xml
URL: http://svn.apache.org/viewvc/commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/navigation.xml?rev=1808861&r1=1808860&r2=1808861&view=diff
==============================================================================
--- commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/navigation.xml (original)
+++ commons/proper/jelly/branches/1.X/jelly-tags/sql/xdocs/navigation.xml Tue Sep 19 11:20:26 2017
@@ -1,18 +1,19 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-  Copyright 2002-2004 The 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
+<!---
+ 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.
 -->
 <project name="SQL Tag Library">