Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Added documentation for isHTML5CustonName.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4459505e11369b0b74f162f952d67fa4066172f4bd9fe59551e2c7e2baa65710
User & Date: rolf 2024-07-04 01:32:47
Context
2024-07-08
17:52
More changes needed for Tcl 9 detected while preparing a new release. check-in: de5237af97 user: rolf tags: trunk
2024-07-04
01:33
Merged from trunk. check-in: 9ead70b249 user: rolf tags: prepare-release
01:32
Added documentation for isHTML5CustonName. check-in: 4459505e11 user: rolf tags: trunk
2024-07-02
22:35
Temporary work around for a bug of the gcc build chain on RiscV. See [faa62e0934]. check-in: 55d88884ed user: rolf tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to doc/dom.xml.

608
609
610
611
612
613
614









615
616
617
618
619
620
621
          <command><cmd>dom</cmd> <method>isCharData</method>
<m>string</m></command>
          <desc>Returns 1 if every character in <m>string</m> is
a valid XML Char according to production 2 of the <ref href="http://www.w3.org/TR/2000/REC-xml-20001006.html">XML 1.0</ref>
recommendation. Otherwise it returns 0.</desc>
        </commanddef>










        <commanddef>
          <command><cmd>dom</cmd> <method>clearString</method> ?<m>-replace</m>? <m>string</m></command>
          <desc>Returns the string given as argument cleared out from
          any characters not allowed as XML parsed character data. If
          the <m>-replace</m> option is given then instead of removing
          such characters are replaced with \uFFFD.</desc>
        </commanddef>







>
>
>
>
>
>
>
>
>







608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
          <command><cmd>dom</cmd> <method>isCharData</method>
<m>string</m></command>
          <desc>Returns 1 if every character in <m>string</m> is
a valid XML Char according to production 2 of the <ref href="http://www.w3.org/TR/2000/REC-xml-20001006.html">XML 1.0</ref>
recommendation. Otherwise it returns 0.</desc>
        </commanddef>

        <commanddef>
          <command><cmd>dom</cmd> <method>isHTML5CustomName</method> <m>string</m></command>
          <desc>Returns 1 if <m>string</m> is a HTML5 valid custom
          element name (according to
          https://html.spec.whatwg.org/#valid-custom-element-name at
          26 June 2024, it's a living standard). Otherwise it returns
          0.</desc>
        </commanddef>
        
        <commanddef>
          <command><cmd>dom</cmd> <method>clearString</method> ?<m>-replace</m>? <m>string</m></command>
          <desc>Returns the string given as argument cleared out from
          any characters not allowed as XML parsed character data. If
          the <m>-replace</m> option is given then instead of removing
          such characters are replaced with \uFFFD.</desc>
        </commanddef>