Jens Nonnewitz: Generate IDs nach SNMP-MIB Prinzip

Beitrag lesen

Hi Thomas,

funktioniert bereits super. Wie müsste ich den Code umändern, damit das Root-Item auch mit einbezogen wird?

Und da hab ich noch eine kleine Frage. Wie schafft man es, dass das ganze XML File von dieser Nummerierung betroffen ist, auch wenn ich z.B. nicht alles im XSL davon darstellen möchte?

  
<?xml version="1.0"?>  
<root>  
 <fnode>  
   <table>  
     <thead>  
     </thead>  
     <tbody>  
      .....  
     </tbody>  
   </table>  
   <sfnode>  
   </sfnode>  
 </fnode>  
 <fnode2>  
 </fnode2>  
</root>  
  

  
<xsl:template match="/">  
    <html>  
      <head>  
        <title>Ausgabe</title>  
      </head>  
      <body>  
          <xsl:apply-templates select="root/fnode/table"/>  
      </body>  
    </html>  
  </xsl:template>