URGENT - my first xsl

Subject: URGENT - my first xsl
From: Søren Neigaard <neigaard@xxxxxxxxxxxxxx>
Date: Thu, 10 Aug 2000 14:48:05 +0200
I'm trying to make a XSL for a dynamic XML document to wml, but I'm doing
somthing(s) wrong.

The error msg. is: The value of attribute "id" must not contain the '<'
character.

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:template match="/"> <!-- root of XML document -->
  <xsl:processing-instruction
name="cocoon-format">type="text/html"</xsl:processing-instruction>
    <wml>
      <template>
        <do type="prev" label="Back">
          <prev/>
        </do>
      </template>
      <xsl:for-each select="card">
        <card id="<xsl:value-of select="cardid"/>" title"<xsl:value-of
select="cardtitle"/>">
          <p align="center">
            <img src="<xsl:value-of select="imgsrc"/>" alt="<xsl:value-of
select="imgalt"/>"/>
          </p>
          <xsl:for-each select="link">
            <a href="<xsl:value-of select="linkhref"/>"><xsl:value-of
select="linktitle"/></a>
          </xsl:for-each>
          <xsl:for-each select="text">
            <xsl:value-of select="text"/>
          </xsl:for-each>
        </card>
      </xsl:for-each>
    </wml>
  </xsl:template>
</xsl:stylesheet>

Med venlig hilsen/Best regards
Søren Neigaard
-------------------------------
MobileThink A/S
Udviklingsparken
Sønderhøj 46
8260 Viby J
Denmark



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread