DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25165>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25165

tile plugin not initialized when using two struts-configs for a single module.





------- Additional Comments From [EMAIL PROTECTED]  2003-12-22 21:15 -------
Tiles does support inherited resource definitions, if that's what you're 
looking for.  I use them in my application.  If this is what you are looking 
for.  In the main struts-config-xml, I have defined:

<plug-in className="org.apache.struts.tiles.TilesPlugin">
        <set-property property="definitions-config" value="/WEB-
INF/conf/tiles/tiles-defs.xml"/>
        <set-property property="definitions-debug" value="0"/>
        <set-property property="definitions-parser-details" value="0"/>
        <set-property property="definitions-parser-validate" value="true"/>
        <set-property property="moduleAware" value="true"/>
</plug-in>

In a "child" module (the "bin" module in this example), I have:

<plug-in className="org.apache.struts.tiles.TilesPlugin">
        <set-property property="definitions-config" value="/WEB-
INF/conf/tiles/tiles-defs.xml,/WEB-INF/conf/tiles/tiles-defs-bin.xml"/>
        <set-property property="definitions-debug" value="0"/>
        <set-property property="definitions-parser-details" value="0"/>
        <set-property property="definitions-parser-validate" value="true"/>
        <set-property property="moduleAware" value="true"/>
</plug-in>

Is this what you are looking for?  If so, please post to struts-user and I can 
give you more information.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to