Advertisement
Jobjob

BDDII - Q4 2010

May 26th, 2015
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2.     <!-- root -->
  3.     <xsl:template match="/">
  4.         <artistes>
  5.             <xsl:apply-templates select="/ART/ARTISTS/artist"/>
  6.         </artistes>
  7.     </xsl:template>
  8.     <!-- artist -->
  9.     <xsl:template match="artist">
  10.         <artiste>
  11.             <nom>
  12.                 <xsl:value-of select="text()"/>
  13.             </nom>
  14.             <xsl:apply-templates select="@id"/>
  15.         </artiste>
  16.     </xsl:template>
  17.     <!-- @id -->
  18.     <xsl:template match="@id">
  19.         <peintures>
  20.             <xsl:apply-templates select="/ART/PAINTINGS/painting[artist/@id = current()]/title"/>
  21.         </peintures>
  22.         <fresques>
  23.             <xsl:apply-templates select="/ART/FRESCOS/fresco[artist/@id = current()]/title"/>
  24.         </fresques>
  25.     </xsl:template>
  26.     <!-- titre -->
  27.     <xsl:template match="title">
  28.         <titre>
  29.             <xsl:value-of select="text()"/>
  30.         </titre>
  31.     </xsl:template>
  32. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement