docs: Regenerated HTML documentation

git-svn-id: http://pugixml.googlecode.com/svn/trunk@792 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-10-31 17:58:31 +00:00
parent f463f6b744
commit a049c2db1d
3 changed files with 12 additions and 13 deletions

View File

@ -184,7 +184,7 @@ pugixml
</div> </div>
</div></div> </div></div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: October 31, 2010 at 07:44:52 GMT</small></p></td> <td align="left"><p><small>Last revised: October 31, 2010 at 17:44:02 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td> <td align="right"><div class="copyright-footer"></div></td>
</tr></table> </tr></table>
<hr> <hr>

View File

@ -318,21 +318,20 @@
</p> </p>
<div class="itemizedlist"><ul class="itemizedlist" type="disc"> <div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem"> <li class="listitem">
<a name="format_no_declaration"></a><code class="literal">format_no_declaration</code> allows <a name="format_no_declaration"></a><code class="literal">format_no_declaration</code> disables
to disable default node declaration output. By default, if the document default node declaration output. By default, if the document is saved
is saved via <code class="computeroutput"><span class="identifier">save</span></code> or via <code class="computeroutput"><span class="identifier">save</span></code> or <code class="computeroutput"><span class="identifier">save_file</span></code> function, and it does not
<code class="computeroutput"><span class="identifier">save_file</span></code> function, and have any document declaration, a default declaration is output before
it does not have any document declaration, a default declaration is output the document contents. Enabling this flag disables this declaration.
before the document contents. Enabling this flag disables this declaration.
This flag has no effect in <code class="computeroutput"><span class="identifier">xml_node</span><span class="special">::</span><span class="identifier">print</span></code> This flag has no effect in <code class="computeroutput"><span class="identifier">xml_node</span><span class="special">::</span><span class="identifier">print</span></code>
functions: they never output the default declaration. This flag is <span class="bold"><strong>off</strong></span> by default. <br><br> functions: they never output the default declaration. This flag is <span class="bold"><strong>off</strong></span> by default. <br><br>
</li> </li>
<li class="listitem"> <li class="listitem">
<a name="format_write_bom"></a><code class="literal">format_write_bom</code> allows to enable <a name="format_write_bom"></a><code class="literal">format_write_bom</code> enables Byte Order
Byte Order Mark (BOM) output. By default, no BOM is output, so in case Mark (BOM) output. By default, no BOM is output, so in case of non UTF-8
of non UTF-8 encodings the resulting document's encoding may not be recognized encodings the resulting document's encoding may not be recognized by
by some parsers and text editors, if they do not implement sophisticated some parsers and text editors, if they do not implement sophisticated
encoding detection. Enabling this flag adds an encoding-specific BOM encoding detection. Enabling this flag adds an encoding-specific BOM
to the output. This flag has no effect in <code class="computeroutput"><span class="identifier">xml_node</span><span class="special">::</span><span class="identifier">print</span></code> to the output. This flag has no effect in <code class="computeroutput"><span class="identifier">xml_node</span><span class="special">::</span><span class="identifier">print</span></code>
functions: they never output the BOM. This flag is <span class="bold"><strong>off</strong></span> functions: they never output the BOM. This flag is <span class="bold"><strong>off</strong></span>

View File

@ -527,8 +527,8 @@
<span class="keyword">bool</span> <span class="identifier">xpath_variable</span><span class="special">::</span><span class="identifier">set</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">xpath_node_set</span><span class="special">&amp;</span> <span class="identifier">value</span><span class="special">);</span> <span class="keyword">bool</span> <span class="identifier">xpath_variable</span><span class="special">::</span><span class="identifier">set</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">xpath_node_set</span><span class="special">&amp;</span> <span class="identifier">value</span><span class="special">);</span>
</pre> </pre>
<p> <p>
These function modify the variable value. Note that no type conversions are These functions modify the variable value. Note that no type conversions
performed; if the type mismatch occurs, the functions return <code class="computeroutput"><span class="keyword">false</span></code>; they also return <code class="computeroutput"><span class="keyword">false</span></code> are performed; if the type mismatch occurs, the functions return <code class="computeroutput"><span class="keyword">false</span></code>; they also return <code class="computeroutput"><span class="keyword">false</span></code>
on allocation failure. The variable values are copied to the internal variable on allocation failure. The variable values are copied to the internal variable
storage, so you can modify or destroy them after the functions return. storage, so you can modify or destroy them after the functions return.
</p> </p>