Index: openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl,v diff -u -N -r1.79 -r1.80 --- openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 15 Mar 2018 12:33:05 -0000 1.79 +++ openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 11 Apr 2018 21:35:07 -0000 1.80 @@ -30,7 +30,7 @@ semi-HTML input and preserve that formatting. This will also cause spaces/tabs to not be replaced with nbsp's, because this can too easily mess up HTML tags. @param includes_html Set this if the text parameter already contains some HTML which should be preserved. - @param encode This will encode international characters into it's html equivalent, like "ü" into ü + @param encode This will encode international characters into its html equivalent, like "ü" into ü @author Branimir Dolicki (branimir@arsdigita.com) @author Lars Pind (lars@pinds.com) @@ -1336,8 +1336,7 @@ } { Returns a best-guess plain text version of an HTML fragment. Parses the HTML and does some simple formatting. The parser and - formatting - is pretty stupid, but it's better than nothing. + formatting is pretty stupid, but it's better than nothing. @param maxlen the line length you want your output wrapped to. @param showtags causes any unknown (and uninterpreted) tags to get shown in the output. @@ -1411,7 +1410,7 @@ while 1 { if {[incr count] > 3000 } { # JCD: the programming bug is that an unmatched < - # in the input runs off forever looking for it's + # in the input runs off forever looking for its # closing > and in some long text like program # listings you can have lots of quotes before you # find that > @@ -1782,7 +1781,7 @@

- This proc is more suitable for pretty-printing that it's + This proc is more suitable for pretty-printing that its sister-proc, util_expand_entities_ie_style. The two differences are that this one is more strict: it requires proper entities i.e., both opening ampersand and closing semicolon, @@ -1816,7 +1815,7 @@

- Unlike it's sister proc, util_expand_entities, + Unlike its sister proc, util_expand_entities, it also expands numeric entities (#999 or #xff style). @author Lars Pind (lars@pinds.com)