[ 
https://issues.apache.org/jira/browse/WICKET-1511?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12588618#action_12588618
 ] 

Ryan Gravener commented on WICKET-1511:
---------------------------------------

If this is implemented, can the check pairs.length % 2 != 0 in 
AbstractRequestTargetUrlCodingStrategy be removed, and instead have the odd 
parameter be a key with its value being true ?

I believe this would allow for urls like: http://example.com/feed/rgravener

where feed is the path and rgravener is the key.

> Control BookmarkablePageLink Parameter's order
> ----------------------------------------------
>
>                 Key: WICKET-1511
>                 URL: https://issues.apache.org/jira/browse/WICKET-1511
>             Project: Wicket
>          Issue Type: Wish
>          Components: wicket
>    Affects Versions: 1.3.2
>            Reporter: Takeshi Matsuba
>
> I want to control parameter's order
> At Application class ,WebPage class is mounted.
> mountBookmarkablePage("/page", Hoo.class);
> At WebPage class, BookmarkablePageLink created.
> PageParameters param = new PageParameters();
> param.put("param1", "string1");
> param.put("param2", "string2");
> BookmarkablePageLink link = new BookmarkablePageLink("link", Hoo.class, 
> param);
> I expect that URL like this.
> /page/param1/string1/param2/string2
> But actual like this.
> /page/param2/string2/param1/string1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to