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 2007/04/11 00:36:47 UTC

svn commit: r527326 [4/4] - in /incubator/wicket/branches/wicket-1.x: jdk-1.4/wicket-datetime/src/test/java/org/apache/wicket/util/license/ jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/ jdk-1.4/wicket-extensions...

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin/SignInSession.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin/SignInSession.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin/SignInSession.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin/SignInSession.java Tue Apr 10 15:36:37 2007
@@ -58,7 +58,7 @@
 		if (user == null)
 		{
 			// Trivial password "db"
-			if ("org.apache.wicket".equalsIgnoreCase(username) && "org.apache.wicket".equalsIgnoreCase(password))
+			if ("wicket".equalsIgnoreCase(username) && "wicket".equalsIgnoreCase(password))
 			{
 				user = username;
 			}

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin2/SignIn2Session.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin2/SignIn2Session.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin2/SignIn2Session.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/signin2/SignIn2Session.java Tue Apr 10 15:36:37 2007
@@ -58,7 +58,7 @@
 		if (user == null)
 		{
 			// Trivial password "db"
-			if ("org.apache.wicket".equalsIgnoreCase(username) && "org.apache.wicket".equalsIgnoreCase(password))
+			if ("wicket".equalsIgnoreCase(username) && "wicket".equalsIgnoreCase(password))
 			{
 				user = username;
 			}

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/MultiUploadPage.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/MultiUploadPage.html?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/MultiUploadPage.html (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/MultiUploadPage.html Tue Apr 10 15:36:37 2007
@@ -1,4 +1,4 @@
-<html xmlns:wicket="http://wicket.sourceforge.net/">
+<html xmlns:wicket="http://wicket.apache.org/">
 <head>
     <title>Wicket Examples - upload</title>
     <link rel="stylesheet" type="text/css" href="style.css"/>

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadApplication.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadApplication.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadApplication.java Tue Apr 10 15:36:37 2007
@@ -64,7 +64,7 @@
 	{
 		getResourceSettings().setThrowExceptionOnMissingResource(false);
 
-		uploadFolder = new Folder(System.getProperty("java.io.tmpdir"), "org.apache.wicket-uploads");
+		uploadFolder = new Folder(System.getProperty("java.io.tmpdir"), "wicket-uploads");
 		// Ensure folder exists
 		uploadFolder.mkdirs();
 

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadPage.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadPage.html?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadPage.html (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/upload/UploadPage.html Tue Apr 10 15:36:37 2007
@@ -1,4 +1,4 @@
-<html xmlns:wicket="http://wicket.sourceforge.net/">
+<html xmlns:wicket="http://wicket.apache.org/">
 <head>
     <title>Wicket Examples - upload</title>
     <link rel="stylesheet" type="text/css" href="style.css"/>

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/webapp/index.html?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/webapp/index.html (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/main/webapp/index.html Tue Apr 10 15:36:37 2007
@@ -1,4 +1,4 @@
-<html xmlns:wicket="http://wicket.sourceforge.net/">
+<html xmlns:wicket="http://wicket.apache.org/">
 	<head>
 		<title>Wicket examples</title>
     <link rel="stylesheet" type="text/css" href="style.css"/>

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/WicketWebTestCase.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/WicketWebTestCase.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/WicketWebTestCase.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/WicketWebTestCase.java Tue Apr 10 15:36:37 2007
@@ -51,7 +51,7 @@
 		// exception just because they can not handle it.
 		HttpUnitOptions.setExceptionsThrownOnScriptError(false);
 
-		System.setProperty("org.apache.wicket.configuration", "deployment");
+		System.setProperty("wicket.configuration", "deployment");
 		
 		TestSuite suite = new TestSuite();
 		suite.addTestSuite(clazz);
@@ -83,7 +83,7 @@
 	 */
 	public void setUp() throws Exception
 	{
-		getTestContext().setBaseUrl("http://localhost:8098/org.apache.wicket-examples");
+		getTestContext().setBaseUrl("http://localhost:8098/wicket-examples");
 	}
 
 	/**

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/library/LibraryTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/library/LibraryTest.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/library/LibraryTest.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/library/LibraryTest.java Tue Apr 10 15:36:37 2007
@@ -56,8 +56,8 @@
 		assertTitleEquals("Wicket Examples - library");
 		assertTextPresent("Username and password are both");
 
-		this.setFormElement("username", "org.apache.wicket");
-		this.setFormElement("password", "org.apache.wicket");
+		this.setFormElement("username", "wicket");
+		this.setFormElement("password", "wicket");
 		this.submit("submit");
 		// this.dumpResponse(System.out);
 		assertTitleEquals("Wicket Examples - library");

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/signin2/Signin2Test.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/signin2/Signin2Test.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/signin2/Signin2Test.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/org/apache/wicket/examples/signin2/Signin2Test.java Tue Apr 10 15:36:37 2007
@@ -58,8 +58,8 @@
 		beginAt("/signin2");
 		assertTitleEquals("Wicket Examples - signin2");
 
-		this.setFormElement("username", "org.apache.wicket");
-		this.setFormElement("password", "org.apache.wicket");
+		this.setFormElement("username", "wicket");
+		this.setFormElement("password", "wicket");
 		this.checkCheckbox("rememberMeRow:rememberMe");
 		log.debug("Submit Login screen");
 		this.submit("submit");

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-examples/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java Tue Apr 10 15:36:37 2007
@@ -56,18 +56,18 @@
 				/*
 				 * Behaviour, released under BSD. See NOTICE
 				 */
-				"src/main/java/org.apache.wicket/examples/preview/behaviour.js",
+				"src/main/java/org/apache/wicket/examples/preview/behaviour.js",
 				/*
 				 * DOJO is dual licensed. We use the BSD license. See NOTICE.
 				 */
-				"src/main/java/org.apache.wicket/examples/preview/dojo.js"
+				"src/main/java/org/apache/wicket/examples/preview/dojo.js"
 		};
 		
 		xmlIgnore = new String[] {
 				/*
 				 * Part of an example
 				 */
-				"src/main/java/org.apache.wicket/examples/compref/XmlPage.xml"
+				"src/main/java/org/apache/wicket/examples/compref/XmlPage.xml"
 		};
 		
 		propertiesIgnore = new String[] {

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/Initializer.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/Initializer.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/Initializer.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-jmx/src/main/java/org/apache/wicket/jmx/Initializer.java Tue Apr 10 15:36:37 2007
@@ -96,7 +96,7 @@
 		{
 			String name = application.getName();
 
-			String agentId = System.getProperty("org.apache.wicket.mbean.server.agentid");
+			String agentId = System.getProperty("wicket.mbean.server.agentid");
 			if (agentId != null)
 			{
 				ArrayList<MBeanServer> mbeanServers = (ArrayList<MBeanServer>)MBeanServerFactory
@@ -112,7 +112,7 @@
 			}
 			if (mbeanServer == null)
 			{
-				String impl = System.getProperty("org.apache.wicket.mbean.server.class");
+				String impl = System.getProperty("wicket.mbean.server.class");
 				if (impl != null)
 				{
 					ArrayList<MBeanServer> mbeanServers = (ArrayList<MBeanServer>)MBeanServerFactory

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java Tue Apr 10 15:36:37 2007
@@ -41,10 +41,10 @@
 	public static void main(String[] args) throws Exception {
 
 		List<String> gets = Arrays.asList(new String[] {
-				"/app1/?org.apache.wicket:bookmarkablePage=:org.apache.wicket.threadtest.apps.app1.Home",
-				"/app1/?org.apache.wicket:interface=:${iteration}:link::ILinkListener:",
-				"/app1/?org.apache.wicket:interface=:${iteration}:link:1:ILinkListener:",
-				"/app1/?org.apache.wicket:interface=:${iteration}:link:2:ILinkListener:" });
+				"/app1/?wicket:bookmarkablePage=:wicket.threadtest.apps.app1.Home",
+				"/app1/?wicket:interface=:${iteration}:link::ILinkListener:",
+				"/app1/?wicket:interface=:${iteration}:link:1:ILinkListener:",
+				"/app1/?wicket:interface=:${iteration}:link:2:ILinkListener:" });
 
 		// you can turn this on if you e.g. want to attach to a profiler
 		// Thread.sleep(5000);

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test2.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test2.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test2.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test2.java Tue Apr 10 15:36:37 2007
@@ -39,7 +39,7 @@
 	public static void main(String[] args) throws Exception {
 
 		List<String> gets = Arrays
-				.asList(new String[] { "/app1?org.apache.wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app1.Home" });
+				.asList(new String[] { "/app1?wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app1.Home" });
 
 		SimpleGetCommand getCmd = new SimpleGetCommand(gets, 5);
 

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test3.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test3.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test3.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test3.java Tue Apr 10 15:36:37 2007
@@ -40,9 +40,9 @@
 	public static void main(String[] args) throws Exception {
 
 		List<String> gets = new ArrayList<String>();
-		gets.add("/app1?org.apache.wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app1.ResourceTestPage");
+		gets.add("/app1?wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app1.ResourceTestPage");
 		for (int i = 0; i < ResourceTestPage.IMAGES_PER_PAGE; i++) {
-			gets.add("/app1?org.apache.wicket:interface=one:${iteration}:listView:" + i + ":image::IResourceListener");
+			gets.add("/app1?wicket:interface=one:${iteration}:listView:" + i + ":image::IResourceListener");
 		}
 
 		SimpleGetCommand getCmd = new SimpleGetCommand(gets, 5);

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App2Test1.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App2Test1.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App2Test1.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App2Test1.java Tue Apr 10 15:36:37 2007
@@ -39,7 +39,7 @@
 	public static void main(String[] args) throws Exception {
 
 		List<String> gets = Arrays
-				.asList(new String[] { "/app2?org.apache.wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app2.Home" });
+				.asList(new String[] { "/app2?wicket:bookmarkablePage=one:org.apache.wicket.threadtest.apps.app2.Home" });
 
 		SimpleGetCommand getCmd = new SimpleGetCommand(gets, 5);
 

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/apps/app1/FormInputModel.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/apps/app1/FormInputModel.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/apps/app1/FormInputModel.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/apps/app1/FormInputModel.java Tue Apr 10 15:36:37 2007
@@ -106,7 +106,7 @@
 	 */
 	public FormInputModel() {
 		try {
-			urlProperty = new URL("http://org.apache.wicket.sourceforge.net");
+			urlProperty = new URL("http://wicket.apache.org");
 		} catch (MalformedURLException e) {
 			e.printStackTrace();
 		}

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java?view=diff&rev=527326&r1=527325&r2=527326
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java Tue Apr 10 15:36:37 2007
@@ -16,6 +16,8 @@
  */
 package wicket.util.license;
 
+import org.apache.wicket.util.license.ApacheLicenseHeaderTestCase;
+
 /**
  * Test that the license headers are in place in this project. The tests are run
  * from {@link ApacheLicenseHeaderTestCase}, but you can add project specific
@@ -30,6 +32,6 @@
 	 */
 	public ApacheLicenceHeaderTest() {
 
-//		 addHeaders = true;
+		// addHeaders = true;
 	}
 }