> Tech > Figures 2, 3 et 4

Figures 2, 3 et 4

Tech - Par Renaud ROSSET - Publié le 24 juin 2010
email

Figure 2 : Exemple de document Tricks

<?xml version="1.à˜" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/xsl" href="tricks.xsl"?>
<demo>
<heading title="iSeries Network Demo">XSLT Template Tricks</heading>
<trick>The <xsl:apply-templates> element defines a set of nodes to
process.</trick>
<trick>Use <xsl:value-of> to write the string value of an expression.</trick>
<trick>Iterate through a list with the <xsl:for-each> instruction.</trick>
</demo>

Figure 3 : La feuille de style XSLT transforme XML en HTML

<?xml version="1.à˜" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.à˜"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="demo/heading/@title"/></title>
</head>
<xsl:apply-templates/>
</html>
</xsl:template>
<xsl:template match="demo">
<body>
<h1><xsl:value-of select="heading"/></h1>
<ol>
<xsl:for-each select="trick">
<li><xsl:apply-templates/></li>
</xsl:for-each>
</ol>
</body>
</xsl:template>
</xsl:stylesheet>

Figure 4 : Document HTML Tricks

<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>iSeries Network Demo</title>
</head>
<body>
<h1>XSLT Template Tricks</h1>
<ol>
<li>The <xsl:apply-templates> element defines a set of nodes to process.</li>
<li>Use <xsl:value-of> to write the string value of an expression.</li>
<li>Iterate through a list with the <xsl:for-each> instruction.</li>
</ol>
</body>
</html>

Téléchargez cette ressource

Travail à distance – Guide complet pour les Directions IT et Métiers

Travail à distance – Guide complet pour les Directions IT et Métiers

Le travail à distance met à l'épreuve la maturité numérique des entreprises en termes de Cybersécurité, d'espace de travail, de bien-être des collaborateurs, de communication et gestion de projet à distance. Découvrez, dans ce nouveau Guide Kyocera, quels leviers activer prioritairement pour mettre en place des solutions de travail à domicile efficaces, pérennes et sécurisées.

Tech - Par Renaud ROSSET - Publié le 24 juin 2010