Changes for page Engine_tDOM

Last modified by Nicolas Gregoire on 2012/01/14 17:00

From version Icon 5.1 Icon
edited by Nicolas Gregoire
on 2012/01/10 11:53
Change comment: There is no comment for this version
To version Icon 6.1 Icon
edited by Nicolas Gregoire
on 2012/01/10 11:55
Change comment: There is no comment for this version

Summary

Details

Icon Page properties
Content
... ... @@ -10,20 +10,20 @@
10 10  
11 11  Start 'tclsh' and paste the following script :
12 12  
13 -~#~#package require tdom
13 +package require tdom
14 14  \\set xml [dom parse {<recon/>}]
15 15  set xsl [dom parse {<xsl:stylesheet
16 - version="1.0"
17 - xmlns:xsl="http:~/~/www.w3.org/1999/XSL/Transform">
18 -<xsl:output method="text"/>
19 -<xsl:template match="/">
20 -Version : <xsl:value-of select="system-property('xsl:version')" />
21 -Vendor : <xsl:value-of select="system-property('xsl:vendor')" />
22 -Vendor URL : <xsl:value-of select="system-property('xsl:vendor-url')" />
23 -</xsl:template>
16 + version="1.0"
17 + xmlns:xsl="http:~/~/www.w3.org/1999/XSL/Transform">
18 + <xsl:output method="text"/>
19 + <xsl:template match="/">
20 + Version : <xsl:value-of select="system-property('xsl:version')" />
21 + Vendor : <xsl:value-of select="system-property('xsl:vendor')" />
22 + Vendor URL : <xsl:value-of select="system-property('xsl:vendor-url')" />
23 + </xsl:template>
24 24  </xsl:stylesheet>}]
25 25  $xml xslt $xsl result
26 -$result asText ~#~#
26 +$result asText
27 27  
28 28  == Identification strings ==
29 29