* Richard Lewis:

> How can  I get a transforming  XSLT stylesheet to complete  the URI of
> the image from the name given in the <image> element so that it points
> to the image correctly?

The best way to deal with resources path is to pass a parameter to the
transformation in the sitemap, and get that parameter in the stylesheet.

sitemap:

<map:transform src='my.xsl'>
  <map:parameter name='resource.path' value='/resources/images'/>
</map:transform>

xsl:

<xsl:param name='resource.path'/>

<img src='{$resource.path}/ok.png'/>

HTH,
-- 
Jean-Baptiste Quenot
Anyware Technologies
http://www.anyware-tech.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to