In those days spirits were brave, the stakes were high, men were REAL men, women were REAL women, and small furry creatures from Alpha Centauri were REAL small furry creatures from Alpha Centauri.
Zaphod in The Hitchhikers Guide To The Galaxy
zoals dit:
1
| <xsl:apply-templates/> |
of dit:
1
| <xsl:apply-template select="resultline"/> |
"Kill one man, and you are a murderer. Kill millions of men, and you are a conqueror. Kill them all, and you are a god." -- Jean Rostand
In those days spirits were brave, the stakes were high, men were REAL men, women were REAL women, and small furry creatures from Alpha Centauri were REAL small furry creatures from Alpha Centauri.
Zaphod in The Hitchhikers Guide To The Galaxy
Manier 1: modes
1
2
3
4
5
6
7
8
9
10
11
12
13
| <xsl:template match="resultline">
<xsl:apply-templates select="." mode="lap-opmaak-code"/>
</xsl:template>
<xsl:template match="resultline[text() = 'AVG']">
<b>
<xsl:apply-templates select="." mode="lap-opmaak-code"/>
</b>
</xsl:template>
<xsl:template match="resultline" mode="lap-opmaak-code">
.....
</xsl:template> |
Manier 2: maak een named template met de opmaak code en roep die aan.
http://www.w3.org/TR/xslt#named-templates
Moet vaker XSLT'en, allemaal tikfouten
[ Voor 53% gewijzigd door mbravenboer op 06-05-2003 15:20 ]
Blog, Stratego/XT: Program Transformation, SDF: Syntax Definition, Nix: Software Deployment
In those days spirits were brave, the stakes were high, men were REAL men, women were REAL women, and small furry creatures from Alpha Centauri were REAL small furry creatures from Alpha Centauri.
Zaphod in The Hitchhikers Guide To The Galaxy
Verwijderd
Zou het niet zoiets moeten zijn (xslt ook voor mij weer een tijd geleden), vooral de match op AVG klopt denk ik niet...
1
2
3
4
5
6
7
8
9
10
11
12
13
| <xsl:template match="resultline">
<xsl:apply-templates select="." mode="lap-opmaak-code"/>
</xsl:template>
<xsl:template match="resultline[position = 'AVG']">
<br>
<xsl:apply-templates select="." mode="lap-opmaak-code"/>
<br>
</xsl:template>
<xsl:template match="resultline" mode="lap-opmaak-code">
..........
</xsl:template> |
Just my two cents...
Blog, Stratego/XT: Program Transformation, SDF: Syntax Definition, Nix: Software Deployment
In those days spirits were brave, the stakes were high, men were REAL men, women were REAL women, and small furry creatures from Alpha Centauri were REAL small furry creatures from Alpha Centauri.
Zaphod in The Hitchhikers Guide To The Galaxy