Index: openacs-4/packages/xotcl-core/tcl/html-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/html-procs.tcl,v diff -u -N -r1.3 -r1.4 --- openacs-4/packages/xotcl-core/tcl/html-procs.tcl 27 Oct 2014 16:42:01 -0000 1.3 +++ openacs-4/packages/xotcl-core/tcl/html-procs.tcl 7 Aug 2017 23:48:30 -0000 1.4 @@ -8,29 +8,29 @@ # set taken from W3C on http://www.w3.org/TR/html4/index/elements.html # - # If the following flag is set to false, tdom makes no checks + # If the following flag is set to false, tDOM makes no checks # for valid XML character encodings. In particular, XML does not # allow characters below 0x20 besides #x9 | #xA | #xD (see XML # 1.0 fourth edition http://www.w3.org/TR/REC-xml/) although # these are valid UTF-8 characters (see rfc3629 or rfc2279). In # other words, XML does not accept all valid UTF-8 strings. HTML # does not seem to have this limitation. # - # CAUTION: Notice that when this flag is set, tdom accepts - # invalid XML characters even in XML documents. If the tdom + # CAUTION: Notice that when this flag is set, tDOM accepts + # invalid XML characters even in XML documents. If the tDOM # tree is generated in XML and send to a different parser, a # thorough XML parser will reject the document. So, this flag # has to be used with caution. # - # However, when the flag is not set, tdom complains about + # However, when the flag is not set, tDOM complains about # invalid input, so it would be necessary to strip all invalid # XML characters via string map etc., which is not nice # in the code and bad performance wise. dom setTextCheck false # - # Miscelaneous commands. Not part of html specs + # Miscellaneous commands. Not part of html specs # but needed for generation of special dom nodes. # @@ -46,7 +46,7 @@ # # -option name of HTML attribute # value attribute value - # script tcl script to run in command's context. + # script Tcl script to run in command's context. # # Example: table -border 1 {...} #