Engine_tDOM

Version 5.1 by Nicolas Gregoire on 2012/01/10 11:53

tDOM is a XSLT engine used in TCL scripts.

Supported version

1.0

Command line

Start 'tclsh' and paste the following script :

##package require tdom

set xml [dom parse {<recon/>}]
set xsl [dom parse {<xsl:stylesheet
 version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
Version : <xsl:value-of select="system-property('xsl:version')" />
Vendor : <xsl:value-of select="system-property('xsl:vendor')" />
Vendor URL : <xsl:value-of select="system-property('xsl:vendor-url')" />
</xsl:template>
</xsl:stylesheet>}]
$xml xslt $xsl result
$result asText ##

Identification strings

 xsl:vendor-urlhttp://www.tdom.org
 xsl:vendorJochen Loewer (loewerj@hotmail.com), Rolf Ade (rolf@pointsman.de) et. al.
 xsl:version1

Special features

  • None ?