Skip to content

Commit

Permalink
docs: Regenerated HTML documentation
Browse files Browse the repository at this point in the history
git-svn-id: http://pugixml.googlecode.com/svn/trunk@910 99668b35-9821-0410-8761-19e4c4f06640
  • Loading branch information
[email protected] committed Apr 30, 2012
1 parent 22a999f commit a50f47f
Show file tree
Hide file tree
Showing 5 changed files with 405 additions and 166 deletions.
2 changes: 1 addition & 1 deletion docs/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
</div>
</div></div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: April 29, 2012 at 22:49:51 GMT</small></p></td>
<td align="left"><p><small>Last revised: April 30, 2012 at 15:36:33 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td>
</tr></table>
<hr>
Expand Down
5 changes: 3 additions & 2 deletions docs/manual/access.html
Original file line number Diff line number Diff line change
Expand Up @@ -757,13 +757,14 @@
<code class="computeroutput"><span class="identifier">xml_text</span></code> is essentially a
helper class that operates on <code class="computeroutput"><span class="identifier">xml_node</span></code>
values. It is bound to a node of type <a class="link" href="dom.html#node_pcdata">node_pcdata</a>
or [node_cdata]. You can use the following function to retrieve this node:
or <a class="link" href="dom.html#node_cdata">node_cdata</a>. You can use the following
function to retrieve this node:
</p>
<pre class="programlisting"><span class="identifier">xml_node</span> <span class="identifier">xml_text</span><span class="special">::</span><span class="identifier">data</span><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span>
</pre>
<p>
Essentially, assuming <code class="computeroutput"><span class="identifier">text</span></code>
is an <code class="computeroutput"><span class="identifier">xml_text</span></code> object, callling
is an <code class="computeroutput"><span class="identifier">xml_text</span></code> object, calling
<code class="computeroutput"><span class="identifier">text</span><span class="special">.</span><span class="identifier">get</span><span class="special">()</span></code> is
equivalent to calling <code class="computeroutput"><span class="identifier">text</span><span class="special">.</span><span class="identifier">data</span><span class="special">().</span><span class="identifier">value</span><span class="special">()</span></code>.
</p>
Expand Down
17 changes: 8 additions & 9 deletions docs/manual/modify.html
Original file line number Diff line number Diff line change
Expand Up @@ -425,15 +425,14 @@
<p>
This function tries to set the contents to the specified string, and returns
the operation result. The operation fails if the text object was retrieved
from a node that can not have a value and that is not an element node (i.e.
it is a <a class="link" href="dom.html#node_declaration">node_declaration</a> node), if
the text object is empty, or if there is insufficient memory to handle the
request. The provided string is copied into document managed memory and can
be destroyed after the function returns (for example, you can safely pass
stack-allocated buffers to this function). Note that if the text object was
retrieved from an element node, this function creates the PCDATA child node
if necessary (i.e. if the element node does not have a PCDATA/CDATA child
already).
from a node that can not have a value and is not an element node (i.e. it
is a <a class="link" href="dom.html#node_declaration">node_declaration</a> node), if the
text object is empty, or if there is insufficient memory to handle the request.
The provided string is copied into document managed memory and can be destroyed
after the function returns (for example, you can safely pass stack-allocated
buffers to this function). Note that if the text object was retrieved from
an element node, this function creates the PCDATA child node if necessary
(i.e. if the element node does not have a PCDATA/CDATA child already).
</p>
<a name="xml_text::set_value"></a><p>
In addition to a string function, several functions are provided for handling
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/saving.html
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@
<p>
When you are saving the document using <code class="computeroutput"><span class="identifier">xml_document</span><span class="special">::</span><span class="identifier">save</span><span class="special">()</span></code> or <code class="computeroutput"><span class="identifier">xml_document</span><span class="special">::</span><span class="identifier">save_file</span><span class="special">()</span></code>, a default XML document declaration is
output, if <code class="computeroutput"><span class="identifier">format_no_declaration</span></code>
is not speficied and if the document does not have a declaration node. However,
is not specified and if the document does not have a declaration node. However,
the default declaration is not customizable. If you want to customize the
declaration output, you need to create the declaration node yourself.
</p>
Expand Down
Loading

0 comments on commit a50f47f

Please sign in to comment.