Author: knopp
Date: Sun Jul 29 09:22:16 2007
New Revision: 560754
URL: http://svn.apache.org/viewvc?view=rev&rev=560754
Log:
WICKET-30 - Changed separators back to ( )
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/request/target/coding/HybridUrlCodingStrategy.java
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/request/target/coding/HybridUrlCodingStrategy.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/request/target/coding/HybridUrlCodingStrategy.java?view=diff&rev=560754&r1=560753&r2=560754
==============================================================================
---
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/request/target/coding/HybridUrlCodingStrategy.java
(original)
+++
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/request/target/coding/HybridUrlCodingStrategy.java
Sun Jul 29 09:22:16 2007
@@ -44,13 +44,13 @@
* the state is preserved on refresh.
* <p>
* The url with [EMAIL PROTECTED] HybridUrlCodingStrategy} looks like
- * /mount/path/param1/value1(3) or /mount/path/param1/value1(3:2) where 3 is
+ * /mount/path/param1/value1|3| or /mount/path/param1/value1|3:2| where 3 is
* page Id and 2 is version number.
* <p>
* Also to preserve state on refresh with ajax-only pages the
* [EMAIL PROTECTED] HybridUrlCodingStrategy} does an immediate redirect after
hitting
* bookmarkable URL, e.g. it immediately redirects from /mount/path to
- * /mount/path(3) where 3 is the next page id. This preserves the page instance
+ * /mount/path|3| where 3 is the next page id. This preserves the page instance
* on subsequent page refresh.
*
* @author Matej Knopp
@@ -437,12 +437,12 @@
protected char getBeginSeparator()
{
- return '|';
+ return '(';
}
protected char getEndSeparator()
{
- return '|';
+ return ')';
}
/**