map:call transfers to a pipeline fragment defined in map:resources, but I don't think it will help you specifically now that I see what you are trying to do.
How about using an xslt transform after the SourceWritingTransformer with something that completely replaces all nodes with a cinclude?
eg, <xsl:template match="/"> <cinclude.../> </xsl:template>
so you'd do ... <map:transform type="write-source"/> <map:transform src="that.xsl"/> <map:transform type="cinclude"/> ...
I don't like that very much and I'd love to hear a more graceful solution from other users of the SWTransformer.
HTH, Geoff
At 12:04 PM 6/3/2003, you wrote:
--- Geoff Howard <[EMAIL PROTECTED]> wrote: > At 10:00 AM 6/3/2003, you wrote: > ... > ><map:generate src="..."/> > ><map:transform type="xslt" src="..."/> > ><map:redirect-to uri="chunk_{1}"/> > > map:redirect-to issues a client side redirect. > under what > circumstances would you want to do that along with > an pipeline > content? are you looking for something like > map:call? or > map:aggregate?
Interesting, what is map:call? In my example, I need to do the following:
1. submit a form 2. perform transformations 3. write to a file (SourceWritingTransformer) 4. display a page (other than the page with the form)with updated content
Can I use map:call for that?
> > >Also it is not possible to use <map:read/> or > <map:generate/> after a > >transformation. > > Right, this is on purpose. If you need this, you > should either use > map:aggregate or xinclude or cinclude. > > >I tried also to use a XSL that produces input to > xinclude but xinclude > >can't wpork with cocoon:// URLs but needs a > absolute path in the > >base-Attribute. > >So this also doesn't work. > > Try cinclude. > > Geoff > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] >
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]