Bonjour,
J’ai un problème avec une transformation XML vers CSV à l’aide d’un XSL. J’utilise des paramètres pour propager des attributs des nœuds parents vers les fils. Mais ces informations ne se propagent pas correctement, même pas du tout visiblement.
Mon XML a ce type de format :
ROOT
REPORT (attribut1, attribut2, attribut3)
ATTRIB (attribut4, attribut5)
PERF(attribut6, attribut7)
PERF(attribut8, attribut9)
ATTRIB (attribut10, attribut11)
PERF(attribut12, attribut13)
PERF(attribut14, attribut15)
Et mon fichier cvs doit avoir le format suivant :
attribut1 ; attribut2 ; attribut3 ; Attribut4 ; attribut5 ; 0
attribut1 ; attribut2 ; attribut3 ; Attribut6 ; attribut7 ; attribut5
attribut1 ; attribut2 ; attribut3 ; Attribut8 ; attribut9 ; attribut5
attribut1 ; attribut2 ; attribut3 ; Attribut10 ; attribut11 ; 0
attribut1 ; attribut2 ; attribut3 ; Attribut12 ; attribut13 ; attribut11
attribut1 ; attribut2 ; attribut3 ; Attribut14 ; attribut15 ; attribut11
Voici mon fichier XSL :
Merci pour votre aide.
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136 <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="ISO-8859-1"/> <xsl:template match="APTec"> <xsl:for-each select="report"> <xsl:call-template name="report" /> </xsl:for-each> </xsl:template> <xsl:template match="report" name="report"> <xsl:for-each select="attrib"> <xsl:call-template name="attrib" > <xsl:with-param name="parentLineNumber" select="@numeroLigne"/> <xsl:with-param name="Heure" select="@Heure"/> <xsl:with-param name="Date" select="@Date"/> <xsl:with-param name="CodePeriode" select="@CodePeriode"/> <xsl:with-param name="CodeDecibel" select="@CodeDecibel"/> <xsl:with-param name="DateAP" select="@DateAP"/> <xsl:with-param name="Label" select="@Label"/> <xsl:with-param name="TypeAnalyseCode" select="@TypeAnalyseCode"/> <xsl:with-param name="TypeMethodologieCode" select="@TypeMethodologieCode"/> </xsl:call-template> </xsl:for-each> </xsl:template> <xsl:template match="attrib" name="attrib"> <xsl:param name="parentLineNumber" /> <xsl:param name="Heure" /> <xsl:param name="Date" /> <xsl:param name="CodePeriode" /> <xsl:param name="CodeDecibel" /> <xsl:param name="DateAP" /> <xsl:param name="Label" /> <xsl:param name="TypeAnalyseCode" /> <xsl:param name="TypeMethodologieCode" /> <xsl:value-of select="$Date" /> <xsl:text>;</xsl:text> <xsl:value-of select="$Heure" /> <xsl:text>;</xsl:text> <xsl:value-of select="$CodeDecibel" /> <xsl:text>;</xsl:text> <xsl:value-of select="$Label" /> <xsl:text>;</xsl:text> <xsl:value-of select="$DateAP" /> <xsl:text>;</xsl:text> <xsl:value-of select="$CodePeriode" /> <xsl:text>;</xsl:text> <xsl:value-of select="$TypeAnalyseCode" /> <xsl:text>;</xsl:text> <xsl:value-of select="$TypeMethodologieCode" /> <xsl:text>;</xsl:text> <xsl:text>1</xsl:text> <xsl:text>;</xsl:text> <xsl:value-of select="@Valeur" /> <xsl:text>;</xsl:text> <xsl:value-of select="$Label" /> <xsl:text>;</xsl:text> <xsl:value-of select="@numeroLigne" /> <xsl:text>;</xsl:text> <xsl:value-of select="$parentLineNumber" /> <xsl:text> </xsl:text> <xsl:for-each select="perf"> <xsl:call-template name="perf" > <xsl:with-param name="numeroLigne" select="@numeroLigne"/> <xsl:with-param name="parentLineNumber" select="$parentLineNumber"/> <xsl:with-param name="Heure" select="$Heure"/> <xsl:with-param name="Date" select="$Date"/> <xsl:with-param name="CodePeriode" select="$CodePeriode"/> <xsl:with-param name="CodeDecibel" select="$CodeDecibel"/> <xsl:with-param name="DateAP" select="$DateAP"/> <xsl:with-param name="Label" select="$Label"/> <xsl:with-param name="TypeAnalyseCode" select="$TypeAnalyseCode"/> <xsl:with-param name="TypeMethodologieCode" select="$TypeMethodologieCode"/> </xsl:call-template> </xsl:for-each > <xsl:for-each select="attrib"> <xsl:call-template name="attrib" > <xsl:with-param name="parentLineNumber" select="@numeroLigne"/> <xsl:with-param name="Heure" select="$Heure"/> <xsl:with-param name="Date" select="$Date"/> <xsl:with-param name="CodePeriode" select="$CodePeriode"/> <xsl:with-param name="CodeDecibel" select="$CodeDecibel"/> <xsl:with-param name="DateAP" select="$DateAP"/> <xsl:with-param name="Label" select="$Label"/> <xsl:with-param name="TypeAnalyseCode" select="$TypeAnalyseCode"/> <xsl:with-param name="TypeMethodologieCode" select="$TypeMethodologieCode"/> </xsl:call-template> </xsl:for-each> </xsl:template> <xsl:template match="perf" name="perf" > <xsl:param name="parentLineNumber" /> <xsl:param name="numeroLigne" /> <xsl:param name="Heure" /> <xsl:param name="Date" /> <xsl:param name="CodePeriode" /> <xsl:param name="CodeDecibel" /> <xsl:param name="DateAP" /> <xsl:param name="Label" /> <xsl:param name="TypeAnalyseCode" /> <xsl:param name="TypeMethodologieCode" /> <xsl:param name="TypeEffetCode" /> <xsl:value-of select="$Date" /> <xsl:text>;</xsl:text> <xsl:value-of select="$Heure" /> <xsl:text>;</xsl:text> <xsl:value-of select="$CodeDecibel" /> <xsl:text>;</xsl:text> <xsl:value-of select="$Label" /> <xsl:text>;</xsl:text> <xsl:value-of select="$DateAP" /> <xsl:text>;</xsl:text> <xsl:value-of select="$CodePeriode" /> <xsl:text>;</xsl:text> <xsl:value-of select="$TypeAnalyseCode" /> <xsl:text>;</xsl:text> <xsl:value-of select="$TypeMethodologieCode" /> <xsl:text>;</xsl:text> <xsl:value-of select="@TypeInformationCode" /> <xsl:text>;</xsl:text> <xsl:value-of select="@Valeur" /> <xsl:text>;</xsl:text> <xsl:value-of select="$numeroLigne" /> <xsl:text>;</xsl:text> <xsl:value-of select="$parentLineNumber" /> <xsl:text> </xsl:text> </xsl:template> </xsl:stylesheet>
Partager