You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "quurks (JIRA)" <ji...@apache.org> on 2014/09/16 12:59:34 UTC

[jira] [Created] (TAP5-2386) UnknownActivationContextCheck breaks ActivationRequestParameter when used with PageActivationContext

quurks created TAP5-2386:
----------------------------

             Summary: UnknownActivationContextCheck breaks ActivationRequestParameter when used with PageActivationContext
                 Key: TAP5-2386
                 URL: https://issues.apache.org/jira/browse/TAP5-2386
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.4
            Reporter: quurks


{code}
@UnknownActivationContextCheck(false|true)
public class TestPage {
    @ActivationRequestParameter private String arp;
    @PageActivationContext private String pac;

    public String getMessage() {
        return String.format("ActivationRequestParameter: %s, PageActivationContext: %s", arp, pac);
    }
}
{code}
||Expected||UnknownActivationContextCheck||URL||ActivationRequestParameter||PageActivationContext||
|yes|false|/test/Alpha?arp=Beta|Beta|Alpha|
|yes|true|/test?arp=Beta|Beta|null|
|*no*|true|/test/Alpha?arp=Beta|{color:red}null{color}|Alpha|





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)