Plugin Disables the Ability to mix jsp and freemarker decorators
-----------------------------------------------------------------
Key: WW-2865
URL: https://issues.apache.org/struts/browse/WW-2865
Project: Struts 2
Issue Type: Bug
Components: Plugin - SiteMesh
Affects Versions: 2.1.3, 2.1.4, Future
Reporter: Matthew Payne
If one looks at the sitemesh example application, an application can have both
Freemarker and JSP decorators.
In the sitemesh plugin filter aka --->
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>
org.apache.struts2.sitemesh.FreeMarkerPageFilter
</filter-class>
</filter>
The logic blinding thinks that all decorators in decorators.xml are freemarker
templates.
This would make a configuration such as below impossible --->
<decorator name="velocity" page="velocity.vm">
<pattern>/velocity.html</pattern>
</decorator>
<decorator name="freemarker" page="freemarker.ftl">
<pattern>/freemarker.html</pattern>
</decorator>
<decorator name="test" page="test.jsp">
<pattern>/agent.jsp</pattern>
</decorator>
I would like to also note.
The related issues https://issues.apache.org/struts/browse/WW-1744
and https://issues.apache.org/struts/browse/WW-2246
Further cripple flexibility.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.