On 18.Sep.2003 -- 03:36 PM, Christoph Strehl wrote:or easier:
Hello there,
I am new to Cocoon and I am already having problems with my first example. I am trying to convert a XML file to HTML. My XML-file looks - simplified - like this:
<para>
Text with picture <pic>source.jpg</pic> and some text.
</para>
The xsl-file is this one:
<xsl:template match="pic"> <img src="<xsl:apply-templates/>"/> </xsl:template>
I hoped to get an ouput like <img src="source.jpg"/>, instead I get a
resource-not-found-error when trying to call the page which doesn't help
me at all to find the error.
Your XSLT is not valid. You may not put an element inside an attribute.
<img> <xsl:attribute name="src"> <xsl:apply-templates/><!-- better: xsl:value-of select="." --> <xsl:/attribute> </img>
<xsl:template match="pic">
<img src="{.}"/>
</xsl:template>Alex
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
