Thomas J.S.: xml-Inhalt in hash

Beitrag lesen

hallo,

Meine ersten Veruche sind kläglich gescheitert:

*-------------

<xsl:template match="/">
  <xsl:for-each select="*">
    <xsl:value-of select="name(.)"/>
xsl:text - </xsl:text>
<xsl:value-of select="."/><br />
  </xsl:for-each>
</xsl:template>

*--------------

war fast richtig:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <head><title></title></head>
  <body>

<xsl:for-each select="//*">
  <p>
    <xsl:value-of select="name(.)"/>
 xsl:text - </xsl:text>
 <xsl:value-of select="."/><br />
 </p>
  </xsl:for-each>

</body>
  </html>

</xsl:template>
</xsl:stylesheet>

-----------------------------

im Endausbau soll daraus werden
*----------
document/header/name - Ein Dokument
document/header/title - Untertitel
document/header/date - 20020518
document/content/text - blabla
*----------

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <head><title></title></head>
  <body>

<xsl:for-each select="//*">
  <p>
  <xsl:for-each select="ancestor::*"><xsl:value-of select="name(.)" />/</xsl:for-each>
    <xsl:value-of select="name(.)"/>
 xsl:text - </xsl:text>
 <xsl:value-of select="."/><br />
 </p>
  </xsl:for-each>

</body>
  </html>

</xsl:template>
</xsl:stylesheet>

-----------

den rest kriegst du schon hin ;-)

grüße
thomas