You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2008/02/13 04:47:47 UTC

svn commit: r627238 - in /wicket/trunk/jdk-1.4/wicket/src: main/java/org/apache/wicket/ test/java/org/apache/wicket/ajax/ test/java/org/apache/wicket/markup/html/basic/ test/java/org/apache/wicket/markup/html/form/ test/java/org/apache/wicket/markup/ht...

Author: ivaynberg
Date: Tue Feb 12 19:47:45 2008
New Revision: 627238

URL: http://svn.apache.org/viewvc?rev=627238&view=rev
Log:
WICKET-1341 Improve markup id generation so it is available at component creation time instead of render time

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_ajax_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_ajax_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/basic/SimplePageExpectedResult_13.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupDisabledTestPage_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage1_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage2_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage3_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage4_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupDisabledTestPage_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage1_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage3_expected.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/panel/InlinePanelPageExpectedResult_7.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_SubmitResult.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_Result.html
    wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_SubmitResult.html

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java Tue Feb 12 19:47:45 2008
@@ -1420,7 +1420,7 @@
 		}
 
 		final int generatedMarkupId = storedMarkupId instanceof Integer
-			? ((Integer)storedMarkupId).intValue() : nextAutoIndex();
+			? ((Integer)storedMarkupId).intValue() : Session.get().nextSequenceValue();
 
 		if (storedMarkupId == null)
 		{
@@ -1433,7 +1433,19 @@
 		// for issue http://issues.apache.org/jira/browse/WICKET-694
 		// markupId = getMarkupAttributes().getString("id");
 
-		String markupId = RequestContext.get().encodeMarkupId(getId() + generatedMarkupId);
+
+		String markupIdPrefix = "i";
+		if (!Application.get().getConfigurationType().equals(Application.DEPLOYMENT))
+		{
+			// in non-deployment mode we make the markup id include component id so it is easier to
+			// debug
+			markupIdPrefix = getId();
+		}
+
+		String markupIdPostfix = Integer.toHexString(generatedMarkupId).toLowerCase();
+		markupIdPostfix = RequestContext.get().encodeMarkupId(markupIdPostfix);
+
+		String markupId = markupIdPrefix + markupIdPostfix;
 		// make sure id is compliant with w3c requirements (starts with a
 		// letter)
 		char c = markupId.charAt(0);

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java Tue Feb 12 19:47:45 2008
@@ -147,6 +147,9 @@
 		}
 	}
 
+	/** a sequence used for whenever something session-specific needs a unique value */
+	public int sequence = 1;
+
 	/** meta data key for missing body tags logging. */
 	public static final MetaDataKey PAGEMAP_ACCESS_MDK = new MetaDataKey(
 		PageMapAccessMetaData.class)
@@ -223,7 +226,7 @@
 		{
 			// Create session using session factory
 			session = application.newSession(request, response);
-			
+
 			dirtyObjects.set(null);
 			touchedPages.set(null);
 		}
@@ -1460,5 +1463,15 @@
 	synchronized protected int nextPageId()
 	{
 		return pageIdCounter++;
+	}
+
+	/**
+	 * Retrieves the next available session-unique value
+	 * 
+	 * @return session-unique value
+	 */
+	public synchronized int nextSequenceValue()
+	{
+		return sequence++;
 	}
 }

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_ajax_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_ajax_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_ajax_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_ajax_expected.html Tue Feb 12 19:47:45 2008
@@ -1,19 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?><ajax-response><evaluate><![CDATA[prepend();]]></evaluate><header-contribution><![CDATA[<head xmlns:wicket="http://wicket.apache.org">
 <link href="../test"/>
 <script type="text/javascript" src="javascripturl"></script>
-</head>]]></header-contribution><component id="test17" ><![CDATA[<span id="test17">
+</head>]]></header-contribution><component id="test11" ><![CDATA[<span id="test11">
 test
-</span>]]></component><component id="test28" ><![CDATA[<span id="test28">
+</span>]]></component><component id="test22" ><![CDATA[<span id="test22">
 test
-</span>]]></component><component id="test39" ><![CDATA[<span id="test39">
+</span>]]></component><component id="test33" ><![CDATA[<span id="test33">
 test
 </span>]]></component><header-contribution><![CDATA[<head xmlns:wicket="http://wicket.apache.org">
 <link href="../test2"/>
 <script type="text/javascript" src="javascripturlB"></script>
-</head>]]></header-contribution><component id="btest110" ><![CDATA[<span id="btest110">
+</head>]]></header-contribution><component id="btest14" ><![CDATA[<span id="btest14">
 test
-</span>]]></component><component id="btest211" ><![CDATA[<span id="btest211">
+</span>]]></component><component id="btest25" ><![CDATA[<span id="btest25">
 test
-</span>]]></component><component id="btest312" ><![CDATA[<span id="btest312">
+</span>]]></component><component id="btest36" ><![CDATA[<span id="btest36">
 test
 </span>]]></component><evaluate><![CDATA[domReady();]]></evaluate><evaluate><![CDATA[domReadyB();]]></evaluate><evaluate><![CDATA[append();]]></evaluate><evaluate><![CDATA[onLoad();]]></evaluate><evaluate><![CDATA[onLoadB();]]></evaluate></ajax-response>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage2_expected.html Tue Feb 12 19:47:45 2008
@@ -29,24 +29,24 @@
 /*-->]]>*/</script>
 
 </head><body>
-<span wicket:id="test1" id="test17"><wicket:panel>
+<span wicket:id="test1" id="test11"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="test2" id="test28"><wicket:panel>
+<span wicket:id="test2" id="test22"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="test3" id="test39"><wicket:panel>
+<span wicket:id="test3" id="test33"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="btest1" id="btest110"><wicket:panel>
+<span wicket:id="btest1" id="btest14"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="btest2" id="btest211"><wicket:panel>
+<span wicket:id="btest2" id="btest25"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="btest3" id="btest312"><wicket:panel>
+<span wicket:id="btest3" id="btest36"><wicket:panel>
 test
 </wicket:panel></span>
-<a href="?wicket:interface=:0:link::ILinkListener::" wicket:id="link" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:link::IBehaviorListener:0:',null,null, function() {return Wicket.$('link13') != null;}.bind(this));return !wcall;" id="link13">Test</a>
+<a href="?wicket:interface=:0:link::ILinkListener::" wicket:id="link" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:link::IBehaviorListener:0:',null,null, function() {return Wicket.$('link7') != null;}.bind(this));return !wcall;" id="link7">Test</a>
 </body>
 </html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_ajax_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_ajax_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_ajax_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_ajax_expected.html Tue Feb 12 19:47:45 2008
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?><ajax-response><evaluate><![CDATA[prepend();]]></evaluate><header-contribution><![CDATA[<head xmlns:wicket="http://wicket.apache.org">
 <link href="../test"/>
 <script type="text/javascript" src="javascripturl"></script>
-</head>]]></header-contribution><component id="test14" ><![CDATA[<span id="test14">
+</head>]]></header-contribution><component id="test11" ><![CDATA[<span id="test11">
 test
-</span>]]></component><component id="test25" ><![CDATA[<span id="test25">
+</span>]]></component><component id="test22" ><![CDATA[<span id="test22">
 test
-</span>]]></component><component id="test36" ><![CDATA[<span id="test36">
+</span>]]></component><component id="test33" ><![CDATA[<span id="test33">
 test
 </span>]]></component><evaluate><![CDATA[domReady();]]></evaluate><evaluate><![CDATA[append();]]></evaluate><evaluate><![CDATA[onLoad();]]></evaluate></ajax-response>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/AjaxHeaderContributionPage_expected.html Tue Feb 12 19:47:45 2008
@@ -18,15 +18,15 @@
 /*-->]]>*/</script>
 
 </head><body>
-<span wicket:id="test1" id="test14"><wicket:panel>
+<span wicket:id="test1" id="test11"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="test2" id="test25"><wicket:panel>
+<span wicket:id="test2" id="test22"><wicket:panel>
 test
 </wicket:panel></span>
-<span wicket:id="test3" id="test36"><wicket:panel>
+<span wicket:id="test3" id="test33"><wicket:panel>
 test
 </wicket:panel></span>
-<a href="?wicket:interface=:0:link::ILinkListener::" wicket:id="link" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:link::IBehaviorListener:0:',null,null, function() {return Wicket.$('link7') != null;}.bind(this));return !wcall;" id="link7">Test</a>
+<a href="?wicket:interface=:0:link::ILinkListener::" wicket:id="link" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:link::IBehaviorListener:0:',null,null, function() {return Wicket.$('link4') != null;}.bind(this));return !wcall;" id="link4">Test</a>
 </body>
 </html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/basic/SimplePageExpectedResult_13.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/basic/SimplePageExpectedResult_13.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/basic/SimplePageExpectedResult_13.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/basic/SimplePageExpectedResult_13.html Tue Feb 12 19:47:45 2008
@@ -1,7 +1,7 @@
 <? xml version= "1.0" encoding ="UTF-8" ?>
 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
-<html lang="de" wicket:id="html" xmlns:wicket="" xmlns="http://www.w3.org/1999/xhtml" xmlns:lang="[current language]" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:html::IBehaviorListener:0:',null,null, function() {return Wicket.$('html0') != null;}.bind(this));return !wcall;" id="html0">
+<html lang="de" wicket:id="html" xmlns:wicket="" xmlns="http://www.w3.org/1999/xhtml" xmlns:lang="[current language]" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:html::IBehaviorListener:0:',null,null, function() {return Wicket.$('html1') != null;}.bind(this));return !wcall;" id="html1">
   <head><link rel="stylesheet" type="text/css" href="../BasePage.css" />
 <script type="text/javascript" src="resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js"></script>
 <script type="text/javascript" src="resources/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax.js"></script>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupDisabledTestPage_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupDisabledTestPage_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupDisabledTestPage_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupDisabledTestPage_expected.html Tue Feb 12 19:47:45 2008
@@ -4,9 +4,9 @@
     <!--  In addition test that chars are not converted from upper to lower and vice versa -->
 	<FORM action="?wicket:interface=:0:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
 		<span wicket:id="group">
-			<Input value="check2" type="checkbox" disabled="disabled" wicket:id="check1" checked="checked" name="group">check1</input>
+			<Input value="check1" type="checkbox" disabled="disabled" wicket:id="check1" checked="checked" name="group">check1</input>
 			<span wicket:id="container">
-				<input value="check3" type="checkbox" disabled="disabled" wicket:id="check2" checked="checked" name="group">check2</input>
+				<input value="check2" type="checkbox" disabled="disabled" wicket:id="check2" checked="checked" name="group">check2</input>
 			</span>
 		</span>
 	</FORM>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage1_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage1_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage1_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage1_expected.html Tue Feb 12 19:47:45 2008
@@ -4,9 +4,9 @@
     <!--  In addition test that chars are not converted from upper to lower and vice versa -->
 	<FORM action="?wicket:interface=:0:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
 		
-			<Input value="check2" type="checkbox" wicket:id="check1" name="group">check1</input>
+			<Input value="check1" type="checkbox" wicket:id="check1" name="group">check1</input>
 			<span wicket:id="container">
-				<input value="check3" type="checkbox" wicket:id="check2" name="group">check2</input>
+				<input value="check2" type="checkbox" wicket:id="check2" name="group">check2</input>
 			</span>
 		
 	</FORM>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage2_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage2_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage2_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage2_expected.html Tue Feb 12 19:47:45 2008
@@ -1,11 +1,11 @@
 <html>
 <head><title>CheckGroupTestPage2</title></head>
 <body>
-	<form action="?wicket:interface=:1:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
+	<form action="?wicket:interface=:1:form::IFormSubmitListener::" wicket:id="form" method="post" id="form2"><div style="display:none"><input type="hidden" name="form2_hf_0" id="form2_hf_0" /></div>
 		
-			<input value="check2" type="checkbox" wicket:id="check1" checked="checked" name="group">check1</input>
+			<input value="check1" type="checkbox" wicket:id="check1" checked="checked" name="group">check1</input>
 			<span wicket:id="container">
-				<input value="check3" type="checkbox" wicket:id="check2" name="group">check2</input>
+				<input value="check2" type="checkbox" wicket:id="check2" name="group">check2</input>
 			</span>
 		
 	</form>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage3_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage3_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage3_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage3_expected.html Tue Feb 12 19:47:45 2008
@@ -1,11 +1,11 @@
 <html>
 <head><title>CheckGroupTestPage3</title></head>
 <body>
-	<form action="?wicket:interface=:2:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
+	<form action="?wicket:interface=:2:form::IFormSubmitListener::" wicket:id="form" method="post" id="form3"><div style="display:none"><input type="hidden" name="form3_hf_0" id="form3_hf_0" /></div>
 		
-			<input value="check2" type="checkbox" wicket:id="check1" name="group">check1</input>
+			<input value="check1" type="checkbox" wicket:id="check1" name="group">check1</input>
 			<span wicket:id="container">
-				<input value="check3" type="checkbox" wicket:id="check2" checked="checked" name="group">check2</input>
+				<input value="check2" type="checkbox" wicket:id="check2" checked="checked" name="group">check2</input>
 			</span>
 		
 	</form>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage4_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage4_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage4_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/CheckGroupTestPage4_expected.html Tue Feb 12 19:47:45 2008
@@ -1,11 +1,11 @@
 <html>
 <head><title>CheckGroupTestPage4</title></head>
 <body>
-	<form action="?wicket:interface=:3:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
+	<form action="?wicket:interface=:3:form::IFormSubmitListener::" wicket:id="form" method="post" id="form4"><div style="display:none"><input type="hidden" name="form4_hf_0" id="form4_hf_0" /></div>
 		
-			<input value="check2" type="checkbox" wicket:id="check1" checked="checked" name="group">check1</input>
+			<input value="check1" type="checkbox" wicket:id="check1" checked="checked" name="group">check1</input>
 			<span wicket:id="container">
-				<input value="check3" type="checkbox" wicket:id="check2" checked="checked" name="group">check2</input>
+				<input value="check2" type="checkbox" wicket:id="check2" checked="checked" name="group">check2</input>
 			</span>
 		
 	</form>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupDisabledTestPage_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupDisabledTestPage_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupDisabledTestPage_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupDisabledTestPage_expected.html Tue Feb 12 19:47:45 2008
@@ -3,9 +3,9 @@
 <body>
 	<form action="?wicket:interface=:0:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
 		<span wicket:id="group">
-			<input value="radio2" type="radio" disabled="disabled" wicket:id="radio1" name="group">radio1</input>
+			<input value="radio1" type="radio" disabled="disabled" wicket:id="radio1" name="group">radio1</input>
 			<span wicket:id="container">
-				<input value="radio3" type="radio" disabled="disabled" wicket:id="radio2" checked="checked" name="group">radio2</input>
+				<input value="radio2" type="radio" disabled="disabled" wicket:id="radio2" checked="checked" name="group">radio2</input>
 			</span>
 		</span>
 	</form>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage1_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage1_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage1_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage1_expected.html Tue Feb 12 19:47:45 2008
@@ -3,9 +3,9 @@
 <body>
 	<form action="?wicket:interface=:0:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
 		
-			<input value="radio2" type="radio" wicket:id="radio1" name="group">radio1</input>
+			<input value="radio1" type="radio" wicket:id="radio1" name="group">radio1</input>
 			<span wicket:id="container">
-				<input value="radio3" type="radio" wicket:id="radio2" checked="checked" name="group">radio2</input>
+				<input value="radio2" type="radio" wicket:id="radio2" checked="checked" name="group">radio2</input>
 			</span>
 		
 	</form>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage3_expected.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage3_expected.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage3_expected.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/RadioGroupTestPage3_expected.html Tue Feb 12 19:47:45 2008
@@ -2,8 +2,8 @@
 <body>
 <form action="?wicket:interface=:0:form::IFormSubmitListener::" wicket:id="form" method="post" id="form1"><div style="display:none"><input type="hidden" name="form1_hf_0" id="form1_hf_0" /></div>
 	
-		<input value="radio2" type="radio" wicket:id="check1" checked="checked" name="radio">Yes
-		<input value="radio3" type="radio" wicket:id="check2" checked="checked" name="radio">No
+		<input value="radio1" type="radio" wicket:id="check1" checked="checked" name="radio">Yes
+		<input value="radio2" type="radio" wicket:id="check2" checked="checked" name="radio">No
 	
 </form>
 </body>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/panel/InlinePanelPageExpectedResult_7.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/panel/InlinePanelPageExpectedResult_7.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/panel/InlinePanelPageExpectedResult_7.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/panel/InlinePanelPageExpectedResult_7.html Tue Feb 12 19:47:45 2008
@@ -20,7 +20,7 @@
 
 
 
-<a href="#" wicket:id="ajaxRefresh" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:provider:ajaxRefresh::IBehaviorListener:0:',null,null, function() {return Wicket.$('ajaxRefresh3') != null;}.bind(this));return !wcall;" id="ajaxRefresh3">AJAX refresh</a>
+<a href="#" wicket:id="ajaxRefresh" onclick="var wcall=wicketAjaxGet('?wicket:interface=:0:provider:ajaxRefresh::IBehaviorListener:0:',null,null, function() {return Wicket.$('ajaxRefresh2') != null;}.bind(this));return !wcall;" id="ajaxRefresh2">AJAX refresh</a>
 
 </wicket:panel></div>
 

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_Result.html Tue Feb 12 19:47:45 2008
@@ -1,36 +1,36 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Default_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,40 +1,40 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 0</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 0</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_Result.html Tue Feb 12 19:47:45 2008
@@ -1,36 +1,36 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Hybrid_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,40 +1,40 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_Result.html Tue Feb 12 19:47:45 2008
@@ -1,36 +1,36 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_Indexed_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,40 +1,40 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_Result.html Tue Feb 12 19:47:45 2008
@@ -1,36 +1,36 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">0</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatefulPage_QueryString_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,40 +1,40 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-
-		<p>
-			This page is stateful as it has a callback (the link that points to
-			this page). If the actual session wasn't created before, this page
-			triggered it's creation.
-		</p>
-
-		<p>
-			This link is what makes this page stateful:
-			<br />
-			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
-		</p>
-
-
-		<p>
-		<form action="statefull/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-		</p>
-			<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+
+		<p>
+			This page is stateful as it has a callback (the link that points to
+			this page). If the actual session wasn't created before, this page
+			triggered it's creation.
+		</p>
+
+		<p>
+			This link is what makes this page stateful:
+			<br />
+			<a href="?wicket:interface=:0:actionLink::ILinkListener::" wicket:id="actionLink">Link clicked <span wicket:id="linkClickCount">1</span> times</a>
+		</p>
+
+
+		<p>
+		<form action="statefull/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+		</p>
+			<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test, link click count: 1</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_Result.html Tue Feb 12 19:47:45 2008
@@ -1,31 +1,31 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Default_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,35 +1,35 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform0"><div style="display:none"><input type="hidden" name="statelessform0_hf_0" id="statelessform0_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_Result.html Tue Feb 12 19:47:45 2008
@@ -1,31 +1,31 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Hybrid_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,35 +1,35 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform0"><div style="display:none"><input type="hidden" name="statelessform0_hf_0" id="statelessform0_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_Result.html Tue Feb 12 19:47:45 2008
@@ -1,31 +1,31 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="stateless/wicket:interface/%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_Indexed_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,35 +1,35 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform0"><div style="display:none"><input type="hidden" name="statelessform0_hf_0" id="statelessform0_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../../../../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="../../../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="../../../stateless/wicket:interface/%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A/" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_Result.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_Result.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_Result.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_Result.html Tue Feb 12 19:47:45 2008
@@ -1,31 +1,31 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="stateless/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
-		<input value="" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="stateless/?wicket:interface=%3A0%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform1"><div style="display:none"><input type="hidden" name="statelessform1_hf_0" id="statelessform1_hf_0" /></div>
+		<input value="" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>

Modified: wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_SubmitResult.html
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_SubmitResult.html?rev=627238&r1=627237&r2=627238&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_SubmitResult.html (original)
+++ wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/request/target/coding/StatelessPage_QueryString_SubmitResult.html Tue Feb 12 19:47:45 2008
@@ -1,35 +1,35 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<html xmlns="http://www.w3.org/1999/xhtml">
-	<head>
-		<title>Wicket Examples - stateless</title>
-		<link href="../../style.css" rel="stylesheet" type="text/css"/>
-	</head>
-	<body>
-		<br />
-		<a href="../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
-		
-		<form action="../stateless/?wicket:interface=%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform0"><div style="display:none"><input type="hidden" name="statelessform0_hf_0" id="statelessform0_hf_0" /></div>
-		<input value="test" type="text" wicket:id="textfield" name="textfield">
-		<input type="submit"> 
-		</form>
-
-		<p>
-			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
-			If a page doesn't have any, there is no use keeping it around in the
-			session. Furthermore, as long as you don't have any stateful pages,
-			the actual session creation will be deferred. A Wicket session object
-			is available, but is a temporary one.
-		</p>
-		
-		<p>
-			<span wicket:id="feedback"><wicket:panel>
-  <ul wicket:id="feedbackul">
-    <li wicket:id="messages" class="feedbackPanelINFO">
-      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
-    </li>
-  </ul>
-</wicket:panel></span>
-		</p>
-
-	</body>
-</html>
+<?xml version='1.0' encoding='UTF-8'?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+	<head>
+		<title>Wicket Examples - stateless</title>
+		<link href="../../style.css" rel="stylesheet" type="text/css"/>
+	</head>
+	<body>
+		<br />
+		<a href="../?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.autolink.Index" wicket:id="indexLink">go to index</a>
+		
+		<form action="../stateless/?wicket:interface=%3A1%3Astatelessform%3A%3AIFormSubmitListener%3A%3A" wicket:id="statelessform" method="post" id="statelessform2"><div style="display:none"><input type="hidden" name="statelessform2_hf_0" id="statelessform2_hf_0" /></div>
+		<input value="test" type="text" wicket:id="textfield" name="textfield">
+		<input type="submit"> 
+		</form>
+
+		<p>
+			This page is stateless as it doesn't have any callbacks (like statefull links or forms).
+			If a page doesn't have any, there is no use keeping it around in the
+			session. Furthermore, as long as you don't have any stateful pages,
+			the actual session creation will be deferred. A Wicket session object
+			is available, but is a temporary one.
+		</p>
+		
+		<p>
+			<span wicket:id="feedback"><wicket:panel>
+  <ul wicket:id="feedbackul">
+    <li wicket:id="messages" class="feedbackPanelINFO">
+      <span wicket:id="message" class="feedbackPanelINFO">Submitted text: test</span>
+    </li>
+  </ul>
+</wicket:panel></span>
+		</p>
+
+	</body>
+</html>