Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | xslt.tcl better usable for memory debugging. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5bb0267890697f88feb4031c52102f24 |
User & Date: | rolf 2013-09-20 21:17:32 |
Context
2013-09-20
| ||
23:44 | Integrated toXPath bug fix. check-in: 85d99b56af user: rolf tags: trunk | |
21:18 | Updated from trunk. check-in: 697274d232 user: rolf tags: toXPath | |
21:17 | xslt.tcl better usable for memory debugging. check-in: 5bb0267890 user: rolf tags: trunk | |
2013-09-19
| ||
00:10 | Made OASIS-suite.tcl better usable. Started comparing with the provided ref output. check-in: 1387f10c23 user: rolf tags: trunk | |
Changes
Changes to apps/xslt.tcl.
113 114 115 116 117 118 119 |
puts [$resultDoc asText] } default { puts stderr "Unknown output method '$outputOpt'!" exit 1 } } |
> > |
113 114 115 116 117 118 119 120 121 |
puts [$resultDoc asText]
}
default {
puts stderr "Unknown output method '$outputOpt'!"
exit 1
}
}
proc exit args {}
|
Changes to tests/OASIS-suite.tcl.
234 235 236 237 238 239 240 241 242 |
}
}
processArgs $argc $argv
set catalogDoc [readCatalog $catalogfile]
runTests [$catalogDoc documentElement]
# See http://mini.net/tcl/3248 for an explanation.
proc exit args {}
|
< |
234 235 236 237 238 239 240 241 |
} } processArgs $argc $argv set catalogDoc [readCatalog $catalogfile] runTests [$catalogDoc documentElement] proc exit args {} |