You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <de...@tapestry.apache.org> on 2007/12/31 19:52:43 UTC

[jira] Assigned: (TAPESTRY-1988) Page activation paremeter with escaped ( %2f ) slash ( " / " ) character not passed correctly

     [ https://issues.apache.org/jira/browse/TAPESTRY-1988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAPESTRY-1988:
----------------------------------------------

    Assignee: Howard M. Lewis Ship

> Page activation paremeter with escaped ( %2f ) slash ( " / " ) character not passed correctly
> ---------------------------------------------------------------------------------------------
>
>                 Key: TAPESTRY-1988
>                 URL: https://issues.apache.org/jira/browse/TAPESTRY-1988
>             Project: Tapestry
>          Issue Type: Bug
>    Affects Versions: 5.0.3, 5.0.4, 5.0.5, 5.0.6
>            Reporter: Kalin Krustev
>            Assignee: Howard M. Lewis Ship
>         Attachments: context_encode_decode_fix_to_5.0.6.patch, context_encode_decode_fix_to_trunk.patch
>
>
> Trying to pass string containing escaped slash as parameter value to onActivate() results in Tapestry interpreting it as passing two parameters.
> Example:
> test.java
> ============
> public class Test {
> 	private String param1;
> 	void onActivate(String p1){
> 		param1=p1;
> 	}
> 	public String getParam1() {
> 		return param1;
> 	}
> }
> test.tml
> ============
> <div test="true" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
>   Param 1:${Param1}
> </div>
> url
> ============
> http://localhost/test/aaa%2fbbb
> output
> ============
> aaa
> should output
> ============
> aaa/bbb

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org