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

Overview
Comment:Merged from trunk.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | prepare-release
Files: files | file ages | folders
SHA3-256: 9ead70b249873acc756f34c6ef7457a4f72a683440326f010d616b9e7e21d86c
User & Date: rolf 2024-07-04 01:33:39
Context
2024-07-04
01:56
Regenerated included doc. check-in: e54a5f4ff4 user: rolf tags: prepare-release
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
01:17
Started release work. check-in: fc340a256f user: rolf tags: prepare-release
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>