Re: Calling a block of transformations

2005-08-25 Thread Reinhard Poetz
Stewart, Gary wrote: Hi there, Another newbie question I'm afraid. There are a set of transformers that I commonly call from a lot of pipelines and that I'd like to be able to possibly change at a later date. You're looking for map:resource. See

RE: Calling a block of transformations

2005-08-25 Thread Chris Marasti-Georg
Check into resources. They are basically a group of tags that you can call easily... I use one at the end of all my pipelines to strip namespaces from the final xhtml and serialize... It would look somehting like this: map:resources map:resource name=xforms-convert

RE: Calling a block of transformations

2005-08-25 Thread Stewart, Gary
-Original Message- From: Reinhard Poetz [mailto:[EMAIL PROTECTED] You can combine a group of sitemap components within a resource and call them from other pipelines by map:call resource=[name]/. Please note that this will be deprecated in Cocoon 2.2 in favour of the concept

Re: Calling a block of transformations

2005-08-25 Thread JD Daniels
I depend heavily on resources... Is there any form of virtual sitemap components in the 2.1.x tree? Reinhard Poetz wrote: Stewart, Gary wrote: Hi there, Another newbie question I'm afraid. There are a set of transformers that I commonly call from a lot of pipelines and that I'd like to be

RE: Calling a block of transformations

2005-08-25 Thread Stewart, Gary
-Original Message- From: JD Daniels [mailto:[EMAIL PROTECTED] I depend heavily on resources... Is there any form of virtual sitemap components in the 2.1.x tree? Reinhard did say deprecated so I imagine you'll still be able to use resources for some versions to come. Gary

Re: Calling a block of transformations

2005-08-25 Thread Reinhard Poetz
JD Daniels wrote: I depend heavily on resources... as most of us that want to avoid code duplication do ;-) of course resources will go through an appropriate deprecation cycle Is there any form of virtual sitemap components in the 2.1.x tree? no, only in trunk (they should work there) --