You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes" />
|
|
<xsl:template match="/">
|
|
<xsl:text disable-output-escaping="yes">
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title>Filmographie d'Ingrid Bergman</title>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
</xsl:text>
|
|
<xsl:apply-templates select="//role">
|
|
<xsl:sort order="ascending" select="./@date"/>
|
|
</xsl:apply-templates>
|
|
<xsl:text disable-output-escaping="yes">
|
|
</table>
|
|
</body>
|
|
</html>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
|
|
<!--
|
|
replace every role element by a film element
|
|
-->
|
|
<xsl:template match="role">
|
|
<xsl:text disable-output-escaping="yes">
|
|
<tr>
|
|
<td>
|
|
</xsl:text>
|
|
<xsl:value-of select="."/>
|
|
<xsl:text disable-output-escaping="yes">
|
|
</td>
|
|
</tr>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
|
|
</xsl:stylesheet>
|
|
|