Exemple : Un programme XSLT pour générer du HTML
Exemple : Fichier XML source
CTRL+C pour copier, CTRL+V pour coller
1
2
<document titre="XSLT">
3
4
<!--Première division-->
5
6
<div titre="XSLT : Un besoin">
7
<paragraphe>XML est un format de <important>représentation</important> de l'information.</paragraphe>
8
<paragraphe>XML n'est pas un format de présentation.</paragraphe>
9
</div>
10
11
<!--Seconde division-->
12
13
<div titre="XSLT : Un langage">
14
<paragraphe>XSLT est un langage de <important>manipulation</important> de documents XML.</paragraphe>
15
<paragraphe>XSLT est utilisé pour exporter une source XML sous un autre format, par exemple HTML.</paragraphe>
16
</div>
17
</document>
<?xml version="1.0" encoding="iso-8859-1"?> <document titre="XSLT"> <!--Première division--> <div titre="XSLT : Un besoin"> <paragraphe>XML est un format de <important>représentation</important> de l'information.</paragraphe> <paragraphe>XML n'est pas un format de présentation.</paragraphe> </div> <!--Seconde division--> <div titre="XSLT : Un langage"> <paragraphe>XSLT est un langage de <important>manipulation</important> de documents XML.</paragraphe> <paragraphe>XSLT est utilisé pour exporter une source XML sous un autre format, par exemple HTML.</paragraphe> </div> </document>
Exemple : Fichier HTML cible souhaité
CTRL+C pour copier, CTRL+V pour coller
1
<html>
2
3
<!--Head-->
4
5
<head>
6
<title>XSLT</title>
7
<meta content="text/html" charset="iso-8859-1"/>
8
</head>
9
10
<!--Body-->
11
12
<body>
13
<h1>XSLT : Un besoin</h1>
14
<p>XML est un format de <B>représentation</B> de l'information.</p>
15
<p>XML n'est pas un format de présentation.</p>
16
<h1>XSLT : Un langage</h1>
17
<p>XSLT est un langage de <B>manipulation</B> de documents XML.</p>
18
<p>XSLT est utilisé pour exporter une source XML sous un autre format, par exemple HTML</p>
19
</body>
20
</html>
<html> <!--Head--> <head> <title>XSLT</title> <meta content="text/html" charset="iso-8859-1"/> </head> <!--Body--> <body> <h1>XSLT : Un besoin</h1> <p>XML est un format de <B>représentation</B> de l'information.</p> <p>XML n'est pas un format de présentation.</p> <h1>XSLT : Un langage</h1> <p>XSLT est un langage de <B>manipulation</B> de documents XML.</p> <p>XSLT est utilisé pour exporter une source XML sous un autre format, par exemple HTML</p> </body> </html>
Exemple : Programme XSLT permettant la transformation
CTRL+C pour copier, CTRL+V pour coller
1
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
4
5
<!--1ère règle-->
6
7
<xsl:template match="document">
8
<html>
9
<head>
10
<title><xsl:value-of select="@titre"/></title>
11
<meta content="text/html" charset="iso-8859-1"/>
12
</head>
13
<body>
14
<xsl:apply-templates/>
15
</body>
16
</html>
17
</xsl:template>
18
19
<!--2nde règle-->
20
21
<xsl:template match="div">
22
<h1><xsl:value-of select="@titre"/></h1>
23
<xsl:apply-templates/>
24
</xsl:template>
25
26
<!--3ème règle-->
27
28
<xsl:template match="paragraphe">
29
<p><xsl:apply-templates/></p>
30
</xsl:template>
31
32
<!--4ème règle-->
33
34
<xsl:template match="important">
35
<b><xsl:value-of select="."/></b>
36
</xsl:template>
37
</xsl:stylesheet>
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" indent="yes" encoding="iso-8859-1"/> <!--1ère règle--> <xsl:template match="document"> <html> <head> <title><xsl:value-of select="@titre"/></title> <meta content="text/html" charset="iso-8859-1"/> </head> <body> <xsl:apply-templates/> </body> </html> </xsl:template> <!--2nde règle--> <xsl:template match="div"> <h1><xsl:value-of select="@titre"/></h1> <xsl:apply-templates/> </xsl:template> <!--3ème règle--> <xsl:template match="paragraphe"> <p><xsl:apply-templates/></p> </xsl:template> <!--4ème règle--> <xsl:template match="important"> <b><xsl:value-of select="."/></b> </xsl:template> </xsl:stylesheet>