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)" <ji...@apache.org> on 2010/10/29 20:59:19 UTC

[jira] Closed: (TAP5-1288) Securing your app. with https has code mistake in Securing Multiple Pages

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

Howard M. Lewis Ship closed TAP5-1288.
--------------------------------------

       Resolution: Fixed
    Fix Version/s: 5.2.3

Fixed in the CWiki.

> Securing your app. with https has code mistake in Securing Multiple Pages
> -------------------------------------------------------------------------
>
>                 Key: TAP5-1288
>                 URL: https://issues.apache.org/jira/browse/TAP5-1288
>             Project: Tapestry 5
>          Issue Type: Bug
>            Reporter: Szemere
>             Fix For: 5.2.3
>
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Securing your application with HTTPS has code mistake in Securing Multiple Pages
> url http://tapestry.apache.org/tapestry5/guide/secure.html
> MetaDataLocator should be ApplicationDefaults in:
> public void contributeMetaDataLocator(MappedConfiguration<String,String> configuration)
> {
>     configuration.add("admin:" + MetaDataConstants.SECURE_PAGE, "true");
> }
> -->
> public void contributeApplicationDefaults(MappedConfiguration<String,String> configuration)
> {
>     configuration.add("admin:" + MetaDataConstants.SECURE_PAGE, "true");
> }
> public void contributeMetaDataLocator(MappedConfiguration<String,String> configuration)
> {
>     configuration.add(MetaDataConstants.SECURE_PAGE, "true");
> }
> -->
> public void contributeApplicationDefaults(MappedConfiguration<String,String> configuration)
> {
>     configuration.add(MetaDataConstants.SECURE_PAGE, "true");
> }

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