Computing Systems Court |
---|
Our Site:--->www.c-s-c.123.st |
Important--->Source site for this examples: www.zvon.org |
XML Source
<source> <employee> <firstName>Joe</firstName> <surname>Smith</surname> </employee> </source> Output
<div>[template: firstName outputs Joe ]</div> <div>[template: surname outputs Smith ]</div> HTML view
[template: firstName outputs Joe ]
[template: surname outputs Smith ] |
XSLT stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="firstName|surname"> <div> <xsl:text>[template: </xsl:text> <xsl:value-of select="name()"/> <xsl:text> outputs </xsl:text> <xsl:apply-templates/> <xsl:text> ]</xsl:text> </div> </xsl:template> </xsl:stylesheet> |
XML Source
<source> <employee> <firstName>Joe</firstName> <surname>Smith</surname> </employee> </source> Output
<div>[template: source outputs <div>[template: employee outputs <div>[template: firstName outputs Joe ]</div> <div>[template: surname outputs Smith ]</div> ]</div> ]</div> HTML view
[template: source outputs
[template: employee outputs
][template: firstName outputs Joe ]
[template: surname outputs Smith ]
] |
XSLT stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="*"> <div> <xsl:text>[template: </xsl:text> <xsl:value-of select="name()"/> <xsl:text> outputs </xsl:text> <xsl:apply-templates/> <xsl:text> ]</xsl:text> </div> </xsl:template> </xsl:stylesheet> |