Hi,
I'm using cocoon 2.1.2 to serialize svg after transforming it with a XSL.
I'm using a pipeline configured as follows, in a sitemap.xm file:
<map:pipeline type="caching">
<map:match pattern="*.gif">
<map:generate src="{1}.svg"/>
<map:transform src="stylesheets/{1}.xsl" type="xslt">
<map:parameter name="width" value="{request:xsl_width}"/>
<map:parameter name="label" value="{request:xsl_label}"/>
</map:transform>
<map:serialize type="svg2gif"/>
</map:match>
</map:pipeline>
The problem occurs when the resulting svg from the XSL transformation is
serialized:
In the svg i have a processing instruction href to a css file, which is
causing the problem because it cannot be properly located as the base url is
set to http://localhost/
So my question is how can i set the base url of a resulting document from a
xsl transformation?
Thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]