[
https://issues.apache.org/jira/browse/TAPESTRY-2757?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12779851#action_12779851
]
Ulrich Stärk commented on TAPESTRY-2757:
----------------------------------------
This was fixed but not backported to 5.0
> Securing your app. with https has code mistake in Securing Multiple Pages
> -------------------------------------------------------------------------
>
> Key: TAPESTRY-2757
> URL: https://issues.apache.org/jira/browse/TAPESTRY-2757
> Project: Tapestry
> Issue Type: Bug
> Components: Documentation
> Affects Versions: 5.0.15
> Reporter: Szemere
> 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.