!!! Listings aus dem Artikel "Messerscharf" !!! von Stefan Mintert, iX 8/2005, S. 60 !!! Listing 1: Funktionsdefinition !!! Listing 2: Tunnelparameter im Hauptteil !!! Listing 3: Tunnelparameter im Anhang ... ... !!! Listing 4: Mehrere Quelldokumente !!! Listing 5: personen.xml Mann Klaus Brecht Bertolt !!! Listing 6: personen2html.xslt </head> <body style="margin: 5% 5%"> <dl> <xslt:for-each-group select="personen/person" group-by="name"> <dt><xslt:value-of select="current-grouping-key()"/> <!-- hier identisch zu <xslt:value-of select="name"/> --> </dt> <dd> <ul> <xslt:apply-templates select="current-group()/vorname"> <xslt:sort/> </xslt:apply-templates> </ul> </dd> </xslt:for-each-group> </dl> </body> </html> </xslt:template> <xslt:template match="vorname"> <li><xslt:apply-templates/></li> </xslt:template> </xslt:stylesheet>