How do I get source:fragment in SourceWritingTransformer to contain:

1. A document on the file system. I have tried:
<source:fragment>
  <xi:include href="rect.svg" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</source:fragment>

and I tied...

<source:fragment>
  <xsl:value-of select="document(rect.svg)"/>
</source:fragment>


2. A xml nodeset at run time. I have tried
<source:fragment>
  <xsl:value-of select="$mySvg"/>
</source:fragment>


Currently I can only write a file to the file system if its pasted inside
<source:fragment>
  <svg xmlns="http://www.w3.org/2000/svg"; width="100" height="100">
    <rect width="100" height="100" />
  </svg>
</source:fragment>


Any help appreciated.

Linc



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