Hmm, I was wondering that myself. We're using Spring with SiteMesh.
On Wed, May 16, 2012 at 11:09 AM, Joe Walnes <j
...@walnes.com> wrote:
> The <layout> tag is not part of SiteMesh. I'm not sure what it is. What
> other frameworks are you using?
> On Wed, May 16, 2012 at 11:47 AM, dylanmac <dylan...@gmail.com> wrote:
>> Hi -
>> I'm trying to capture URL patterns in my layout-config file using
>> wildcards, but I think I may be violating its pattern matching
>> abilities.
>> I want to be able to apply a css file to any URLs that contain the
>> string "resources/" such as:
>> /resources/index.htm
>> /advisor_resources/index.htm
>> /institutional_resources/index.htm
>> The way I am trying to capture these patterns in layout-config is like
>> this:
>> <layout name="resources" extends="main" url="/*resources/*">
>> <property name="css" merge="true" value="/css/
>> resources.index.css"/>
>> </layout>
>> This isn't working. Is it possible to use wildcards in this way to
>> capture the pattern?