You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by fr...@apache.org on 2007/03/04 13:53:41 UTC

svn commit: r514393 - in /incubator/wicket/branches/wicket-1.x/wicket-auth-roles: ./ src/assembly/bin.xml src/assembly/build.xml src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java

Author: frankbille
Date: Sun Mar  4 04:53:40 2007
New Revision: 514393

URL: http://svn.apache.org/viewvc?view=rev&rev=514393
Log:
Added missing license headers and put a comment on the ignores in the license test.

Modified:
    incubator/wicket/branches/wicket-1.x/wicket-auth-roles/   (props changed)
    incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/bin.xml
    incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/build.xml
    incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java

Propchange: incubator/wicket/branches/wicket-1.x/wicket-auth-roles/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Sun Mar  4 04:53:40 2007
@@ -1,3 +1,4 @@
 target
 *.log
 .wtpmodules
+sessions

Modified: incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/bin.xml?view=diff&rev=514393&r1=514392&r2=514393
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/bin.xml (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/bin.xml Sun Mar  4 04:53:40 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.
+-->
 <assembly>
     <id>bin</id>
     <formats>

Modified: incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/build.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/build.xml?view=diff&rev=514393&r1=514392&r2=514393
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/build.xml (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/assembly/build.xml Sun Mar  4 04:53:40 2007
@@ -1,4 +1,20 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?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 default="jar" name="wicket-auth-roles" basedir=".">
 
 	<property name="final.name" value="wicket-auth-roles" />

Modified: incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java?view=diff&rev=514393&r1=514392&r2=514393
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-auth-roles/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java Sun Mar  4 04:53:40 2007
@@ -32,15 +32,16 @@
 	{
 //		addHeaders = true;
 		
-		xmlIgnore = new String[] {
-				"src/assembly/bin.xml",
-				"src/assembly/build.xml"
-		};
-		
+		/*
+		 * License header in test files lower the visibility of the test.
+		 */
 		htmlIgnore = new String[] {
 				"src/test/java"
 		};
 		
+		/*
+		 * Low level configuration files for logging. No license needed.
+		 */
 		propertiesIgnore = new String[] {
 				"src/test/java"
 		};