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 16:28:09 UTC

svn commit: r514405 [8/8] - in /incubator/wicket/branches/wicket-1.x/wicket-examples: ./ src/assembly/ src/main/java/wicket/examples/ src/main/java/wicket/examples/ajax/builtin/ src/main/java/wicket/examples/ajax/builtin/modal/ src/main/java/wicket/exa...

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/examples/template/TemplateTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/examples/template/TemplateTest.java?view=diff&rev=514405&r1=514404&r2=514405
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/examples/template/TemplateTest.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/examples/template/TemplateTest.java Sun Mar  4 07:27:59 2007
@@ -1,19 +1,18 @@
 /*
- * $Id$ $Revision$
- * $Date$
- * 
- * ==================================================================== 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
- * 
+ * 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.
+ * 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 wicket.examples.template;
 

Added: incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java?view=auto&rev=514405
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java (added)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java Sun Mar  4 07:27:59 2007
@@ -0,0 +1,90 @@
+/*
+ * 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 wicket.util.license;
+
+/**
+ * Test that the license headers are in place in this project. The tests are run
+ * from {@link ApacheLicenseHeaderTestCase}, but you can add project specific
+ * tests here if needed.
+ * 
+ * @author Frank Bille Jensen (frankbille)
+ */
+public class ApacheLicenceHeaderTest extends ApacheLicenseHeaderTestCase {
+
+	/**
+	 * Construct.
+	 */
+	public ApacheLicenceHeaderTest() {
+
+//		 addHeaders = true;
+
+		htmlIgnore = new String[] {
+				/*
+				 * This is an example project. Therefore we'd rather not have
+				 * license headers in html files, because it removes the
+				 * focus away from what the example is about.
+				 */
+				"src"
+		};
+		
+		javaScriptIgnore = new String[] {
+				/*
+				 * Prototype, released under MIT. See NOTICE
+				 */
+				"src/main/webapp/prototype.js",
+				/*
+				 * Script.aculo.us, released under MIT. See NOTICE
+				 */
+				"src/main/webapp/effects.js",
+				"src/main/webapp/scriptaculous.js",
+				/*
+				 * Behaviour, released under BSD. See NOTICE
+				 */
+				"src/main/java/wicket/examples/preview/behaviour.js",
+				/*
+				 * DOJO???? Needs testing if it's legal to include.
+				 */
+				"src/main/java/wicket/examples/preview/dojo.js"
+		};
+		
+		xmlIgnore = new String[] {
+				/*
+				 * Part of an example
+				 */
+				"src/main/java/wicket/examples/compref/XmlPage.xml"
+		};
+		
+		propertiesIgnore = new String[] {
+				/*
+				 * Configuration files with no "intelligent" content
+				 */
+				"src/main/java/commons-logging.properties",
+				"src/main/java/log4j.properties"
+		};
+		
+		javaIgnore = new String[] {
+				/*
+				 * JettyHelper??? License ok???
+				 */
+				"src/test/java/nl/openedge/util/jetty",
+				/*
+				 * MIT style license. See NOTICE
+				 */
+				"src/test/java/com/meterware/httpunit/ParsedHTML.java"
+		};
+	}
+}

Propchange: incubator/wicket/branches/wicket-1.x/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native