Descriptor sanitization
by Julien Viet
I want soon to remove support for old XML descriptor "portlet-preferences" that is not used anymore in GateIn except for unit tests. This file is legacy of eXo Portal 2.5 was deprecated in GateIn 3.0 in favor of the inline port let preferences in a <portet-application> tag.
This will remove some hack code necessary to properly support it.
I want also to update the existing descriptors to use the correct XML as some of the XML is not correct.
let me know if it raise any concern.
cheers
Julien
12 years, 6 months
Git migration update
by Boleslaw Dawidowicz
Just a small update
1) All SVN repositories that we planned to move are currently on github. Full list here:
https://community.jboss.org/wiki/GateInPortal-GitMigrationAndUsage
2) There is a dedicated mailing list called gatein-pull-requests(a)lists.jboss.org. Each repository on our http://github.com/gatein space has this mailing list configured with email service hook. This means all pull requests and push notifications go there. You can subscribe here:
https://lists.jboss.org/mailman/listinfo/gatein-pull-requests
Ideally in the future this lists should also be a place to communicate about pull request (for example when one needs to be corrected).
3) Each repository on github has an IRC service hook pointing to #gatein channel on free node. This is other way in which you can track push and pull requests activities.
Bolek
12 years, 6 months
/admin security constraint in portal.war
by Ken Finnigan
All,
Wanted to find out whether there is still a need to have the below security constraint within web.xml of portal.war:
<security-constraint>
<web-resource-collection>
<web-resource-name>admin authentication</web-resource-name>
<url-pattern>/admin/*</url-pattern>
<http-method>POST</http-method>
<http-method>GET</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
If not, any objections to removing it?
Thanks
Ken Finnigan
12 years, 6 months