bonjour, jessaie de produire du html avec xslt.
voici mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
 
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" id="cv" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
<xsl:output method="html" encoding="ISO-8859-1" indent="yes"/>
 
<xsl:strip-space elements="*"/>
 
 
	<xsl:template match="/">
 
		<HTML>
 
		<HEAD>
 
		  <TITLE>CV en HTML</TITLE>
 
		</HEAD>
 
		<BODY BGCOLOR="#FFFFFF">
 
		<xsl:apply-templates />
 
		</BODY>
 
		</HTML>
 
	</xsl:template >
 
	<xsl:template match="cv">
 
	<BR><xsl:apply-templates/></BR>
 
	</xsl:template >
 
	<xsl:template match="detailperso" >
 
		<ul>
			<li>
 
			<xsl:value-of select="numsecu"/>
			<xsl:value-of select="prenom"/>
			<xsl:value-of select="nom"/>
			<xsl:value-of select="age"/>
			<xsl:value-of select="address"/>
			<xsl:value-of select="ville"/>
			<xsl:value-of select="tel"/>
 
			</li>
		</ul>
 
	</xsl:template >
 
	<xsl:template match="academic" >
 
		<xsl:apply-templates/>
 
	</xsl:template >
 
	<xsl:template match="detailperso" >
 
		<ul>
			<li>
 
			<xsl:value-of select="licence"/>
			<xsl:apply-templates select="date"/>
			<xsl:value-of select="description"/>
 
			</li>
		</ul>
 
	</xsl:template >
 
	<xsl:template match="date" >
 
	<xsl:value-of select="@jour"/><xsl:value-of select="@moi"/><xsl:value-of select="@annee"/>
 
	</xsl:template >
 
	<xsl:template match="experienceprofessionnelle" >
 
	<BR> <xsl:apply-templates select="entreprise"/></BR>
	<BR><xsl:value-of select="emploi"/></BR>
 
	</xsl:template>
 
	<xsl:template match="entreprise">
 
	<xsl:value-of select="@duree"/><xsl:value-of select="@nom"/>
 
	</xsl:template>
 
</xsl:stylesheet>
le résultat est une page html toute blanche. (sauf cv en html qui est affiché dans la barre du haut).
Je précise que j'ai essayé sous konqueror firefox et IE.
Qu'est ce qui se passe ?
merci