<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="data.xml" -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.0" exclude-result-prefixes="#all">
<xsl:output method="html" media-type="text/html; charset=utf-8" encoding="utf-8" indent="yes"/>
	<xsl:template match="phpbb">
		<html xml:lang="fr" lang="fr">
			<head>
				<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
				<meta http-equiv="Content-Language" content="fr" />
				<meta NAME="Author" content="Dimble"/>
				<meta NAME="Copyright" content="Dimble 2007-2010"/>
				<meta NAME="Publisher" content="Dimble"/>
				<title>CEMIF - Messages</title>
				<link rel="shortcut icon" href="http://cemif.free.fr/images/logocemif.ico"/>
			</head>
			<body bgcolor="#1C8DE3">
				<h1 align="center">Messages contenus dans le dossier exporté</h1>
				<xsl:for-each select="privmsg">
					Message de <b><xsl:value-of select="sender"/></b><br/>
					<em>Envoyé le <xsl:value-of select="substring(date,1,10)"/><!-- <xsl:value-of select="format-dateTime(date, '[D01] [MNn] [Y] à [H01]:[m01]')"/>--></em><br/>
					Titre : <xsl:value-of select="subject"/><br/>
					Message : <br/><xsl:apply-templates select="message" /><br/>
					<hr/>
				</xsl:for-each>
				<p align="center"><xsl:text disable-output-escaping="no">&#169; Copyright Dimble 2007-2010, tous droits réservés.</xsl:text></p>
			</body>
		</html>	
	</xsl:template>
	<xsl:template match="message" >
		<pre width="100"><xsl:value-of select="."/></pre>
	</xsl:template>

</xsl:stylesheet>


