2008/7/15 Stewart Cambridge <[EMAIL PROTECTED]>:
> private void render(TilesRequestContext request, String definitionName) {
> ....
> Definition definition = getDefinition(definitionName, request);
> ...
> request.getRequestScope().put( "definition", definition );
> ...
> }

I don't think that it will be never added to Tiles, since your needs
are so uncommon (IMHO).
Anyway, if you want to take this path, I suggest you not to use the
request scope, but the AttributeContext, so it will be present only in
that portion of the request where the definition lives. And you can
get it as a normal attribute, with <tiles:importAttribute> or
<tiles:useAttribute>

HTH
Antonio

Reply via email to