Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fix minor grammar typo in domDoc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
22a1a70a314aced6838dd0cd8fbab044 |
User & Date: | jeff@bovine.net 2011-12-20 00:54:50 |
Context
2012-05-17
| ||
20:30 | Fixed wrong size on memcpy on 64 bit (when sizeof(int)!=sizeof(int*)) check-in: c62dffee03 user: rolf@point.pointsman.de tags: trunk | |
2011-12-20
| ||
00:54 | fix minor grammar typo in domDoc check-in: 22a1a70a31 user: jeff@bovine.net tags: trunk | |
2011-03-30
| ||
16:17 | as per email exchange with Richard Hipp on March 29th, 2011, we can move the license of his very old XML parsing code (from TMML) into public domain: " Call it public domain. Do whatever you like with it. (Just please remove my name from the comment.) " drh@sqlite.org check-in: 1968382659 user: jolo@osslab-jl.emea.hpqcorp.net tags: trunk | |
Changes
Changes to doc/domDoc.html.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<dt> <b class="method">createElement</b> <i class="m">tagName</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new element node with node name <i class="m">tagName</i>, append it to the hidden fragment list in the document object and returns the node object. If <i class="m">objVar</i> is given the new node object store in this variable.</dd> <dt> <b class="method">createElementNS</b> <i class="m">url</i> <i class="m">tagName</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new element node within a namespace having <i class="m">uri</i> as the URI and node name <i class="m">tagName</i>, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If <i class="m">objVar</i> is given the new node object store in this variable.</dd> <dt> <b class="method">createTextNode</b> <i class="m">text</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new text node with node value <i class="m">text</i>, appends it to the hidden fragment list in the document |
| | |
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<dt> <b class="method">createElement</b> <i class="m">tagName</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new element node with node name <i class="m">tagName</i>, append it to the hidden fragment list in the document object and returns the node object. If <i class="m">objVar</i> is given the new node object is stored in this variable.</dd> <dt> <b class="method">createElementNS</b> <i class="m">url</i> <i class="m">tagName</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new element node within a namespace having <i class="m">uri</i> as the URI and node name <i class="m">tagName</i>, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If <i class="m">objVar</i> is given the new node object is stored in this variable.</dd> <dt> <b class="method">createTextNode</b> <i class="m">text</i> ?<i class="m">objVar</i>?</dt> <dd>Creates (allocates) a new text node with node value <i class="m">text</i>, appends it to the hidden fragment list in the document |
Changes to doc/domDoc.n.
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
matching (glob style) \fIlocalname\fR and having the given namespace \&\fIuri\fR. .TP \&\fB\fBcreateElement\fP \fItagName\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new element node with node name \&\fItagName\fR, append it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given the new node object store in this variable. .TP \&\fB\fBcreateElementNS\fP \fIurl\fB \fItagName\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new element node within a namespace having \fIuri\fR as the URI and node name \fItagName\fR, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given the new node object store in this variable. .TP \&\fB\fBcreateTextNode\fP \fItext\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new text node with node value \&\fItext\fR, appends it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given, the new node object is stored in this variable. .TP |
| | |
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
matching (glob style) \fIlocalname\fR and having the given namespace \&\fIuri\fR. .TP \&\fB\fBcreateElement\fP \fItagName\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new element node with node name \&\fItagName\fR, append it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given the new node object is stored in this variable. .TP \&\fB\fBcreateElementNS\fP \fIurl\fB \fItagName\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new element node within a namespace having \fIuri\fR as the URI and node name \fItagName\fR, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given the new node object is stored in this variable. .TP \&\fB\fBcreateTextNode\fP \fItext\fB ?\fIobjVar\fB? \&\fRCreates (allocates) a new text node with node value \&\fItext\fR, appends it to the hidden fragment list in the document object and returns the node object. If \fIobjVar\fR is given, the new node object is stored in this variable. .TP |
Changes to doc/domDoc.xml.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
</commanddef> <commanddef> <command><method>createElement</method> <m>tagName</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new element node with node name <m>tagName</m>, append it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given the new node object store in this variable.</desc> </commanddef> <commanddef> <command><method>createElementNS</method> <m>url</m> <m>tagName</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new element node within a namespace having <m>uri</m> as the URI and node name <m>tagName</m>, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given the new node object store in this variable.</desc> </commanddef> <commanddef> <command><method>createTextNode</method> <m>text</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new text node with node value <m>text</m>, appends it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given, the new |
| | |
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
</commanddef> <commanddef> <command><method>createElement</method> <m>tagName</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new element node with node name <m>tagName</m>, append it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given the new node object is stored in this variable.</desc> </commanddef> <commanddef> <command><method>createElementNS</method> <m>url</m> <m>tagName</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new element node within a namespace having <m>uri</m> as the URI and node name <m>tagName</m>, which could include the namespace prefix, append it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given the new node object is stored in this variable.</desc> </commanddef> <commanddef> <command><method>createTextNode</method> <m>text</m> ?<m>objVar</m>?</command> <desc>Creates (allocates) a new text node with node value <m>text</m>, appends it to the hidden fragment list in the document object and returns the node object. If <m>objVar</m> is given, the new |