Brian Leathem created RF-13191:
----------------------------------
Summary: The RichFaces base deployment for integration tests incorrectly
disables control skinning
Key: RF-13191
URL:
https://issues.jboss.org/browse/RF-13191
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Brian Leathem
Assignee: Brian Leathem
Fix For: 5.0.0.Alpha2
See:
https://github.com/richfaces/richfaces/blob/master/build/build-resources/...
Integration test environments should as closely as possible follow real environments.
Since this parameter can be over-ridden in an individual deployment (see below), I
recommend we remove this configuration in the default deployment.
{code}
deployment.webXml(new Function<WebAppDescriptor, WebAppDescriptor>() {
public WebAppDescriptor apply(WebAppDescriptor input) {
input.getOrCreateContextParam()
.paramName("org.richfaces.skin")
.paramValue("plain");
return input;
};
{code}
Note: after making this change, all tests will need to be run, and any tests that rely on
this configuration will have to be adjusted to set the context-param on their individual
deployment.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira