You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2006/10/14 21:20:27 UTC

svn commit: r463990 - in /incubator/wicket/trunk/wicket-examples: ./ src/main/java/wicket/examples/ajax/builtin/ src/main/java/wicket/examples/ajax/prototype/ src/main/java/wicket/examples/compref/ src/main/java/wicket/examples/forminput/ src/main/java...

Author: ehillenius
Date: Sat Oct 14 12:20:25 2006
New Revision: 463990

URL: http://svn.apache.org/viewvc?view=rev&rev=463990
Log:
settings cleanup

Modified:
    incubator/wicket/trunk/wicket-examples/.classpath
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/builtin/AjaxApplication.java
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/prototype/PrototypeApplication.java
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/compref/ComponentReferenceApplication.java
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/forminput/FormInputApplication.java
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/library/LibraryApplication.java
    incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/upload/UploadApplication.java

Modified: incubator/wicket/trunk/wicket-examples/.classpath
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/.classpath?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/.classpath (original)
+++ incubator/wicket/trunk/wicket-examples/.classpath Sat Oct 14 12:20:25 2006
@@ -3,8 +3,6 @@
 	<classpathentry kind="src" path="src/main/java"/>
 	<classpathentry kind="src" path="src/test/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/wicket"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/wicket-extensions"/>
 	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar" sourcepath="M2_REPO/junit/junit/3.8.1/junit-3.8.1-sources.jar"/>
 	<classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-sources.jar"/>
 	<classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/2.1/commons-collections-2.1.jar" sourcepath="M2_REPO/commons-collections/commons-collections/2.1/commons-collections-2.1-sources.jar"/>
@@ -30,5 +28,7 @@
 	<classpathentry kind="var" path="M2_REPO/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2.jar"/>
 	<classpathentry kind="var" path="M2_REPO/httpunit/httpunit/1.6/httpunit-1.6.jar"/>
 	<classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar" sourcepath="M2_REPO/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2-sources.jar"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/wicket-2.0"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/wicket-extensions-2.0"/>
 	<classpathentry kind="output" path="target/classes"/>
 </classpath>

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/builtin/AjaxApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/builtin/AjaxApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/builtin/AjaxApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/builtin/AjaxApplication.java Sat Oct 14 12:20:25 2006
@@ -1,7 +1,7 @@
 /*
  * $Id: AjaxApplication.java 5394 2006-04-16 13:36:52 +0000 (Sun, 16 Apr 2006)
- * jdonnerstag $ $Revision$ $Date: 2006-04-16 13:36:52 +0000 (Sun, 16 Apr
- * 2006) $
+ * jdonnerstag $ $Revision$ $Date: 2006-04-16 13:36:52 +0000 (Sun, 16
+ * Apr 2006) $
  * 
  * ==============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
@@ -40,9 +40,9 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 		getRequestCycleSettings().addResponseFilter(new AjaxServerAndClientTimeFilter());
-		getAjaxSettings().setAjaxDebugModeEnabled(true);
+		getDebugSettings().setAjaxDebugModeEnabled(true);
 	}
 
 	/**

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/prototype/PrototypeApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/prototype/PrototypeApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/prototype/PrototypeApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/ajax/prototype/PrototypeApplication.java Sat Oct 14 12:20:25 2006
@@ -42,7 +42,7 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 		getRequestCycleSettings().addResponseFilter(new AjaxServerAndClientTimeFilter());
 	}
 

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/compref/ComponentReferenceApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/compref/ComponentReferenceApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/compref/ComponentReferenceApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/compref/ComponentReferenceApplication.java Sat Oct 14 12:20:25 2006
@@ -69,6 +69,6 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 	}
 }

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/forminput/FormInputApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/forminput/FormInputApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/forminput/FormInputApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/forminput/FormInputApplication.java Sat Oct 14 12:20:25 2006
@@ -55,7 +55,7 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 
 		// Chinese buttons
 		Font font = new Font("SimSun", Font.BOLD, 16);

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/library/LibraryApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/library/LibraryApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/library/LibraryApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/library/LibraryApplication.java Sat Oct 14 12:20:25 2006
@@ -47,7 +47,7 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 		getRequestCycleSettings().setRenderStrategy(RenderStrategy.REDIRECT_TO_RENDER);
 
 		// Install a simple page authorization strategy, that checks all pages

Modified: incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/upload/UploadApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/upload/UploadApplication.java?view=diff&rev=463990&r1=463989&r2=463990
==============================================================================
--- incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/upload/UploadApplication.java (original)
+++ incubator/wicket/trunk/wicket-examples/src/main/java/wicket/examples/upload/UploadApplication.java Sat Oct 14 12:20:25 2006
@@ -1,7 +1,7 @@
 /*
  * $Id: UploadApplication.java 5394 2006-04-16 13:36:52 +0000 (Sun, 16 Apr 2006)
- * jdonnerstag $ $Revision$ $Date: 2006-04-16 13:36:52 +0000 (Sun, 16 Apr
- * 2006) $
+ * jdonnerstag $ $Revision$ $Date: 2006-04-16 13:36:52 +0000 (Sun, 16
+ * Apr 2006) $
  * 
  * ==================================================================== Licensed
  * under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -45,7 +45,7 @@
 	@Override
 	protected void init()
 	{
-		getExceptionSettings().setThrowExceptionOnMissingResource(false);
+		getResourceSettings().setThrowExceptionOnMissingResource(false);
 	}