Skip to content

Commit

Permalink
Regenerate docs for 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cfis committed Jan 8, 2024
1 parent b11e90f commit fc15f3d
Show file tree
Hide file tree
Showing 52 changed files with 205 additions and 194 deletions.
4 changes: 2 additions & 2 deletions libxml-ruby/Float.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -100,7 +100,7 @@ <h3>Constants</h3>

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

18 changes: 12 additions & 6 deletions libxml-ruby/HISTORY.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand All @@ -65,7 +65,8 @@ <h3>Table of Contents</h3>
<summary> <a href="#label-Release+History">Release History</a>
</summary>
<ul class="link-list" role="directory">
<li> <a href="#label-5.0.0+-2F+2024-01-07">5.0.0 / 2024-01-07</a>
<li> <a href="#label-5.0.1+-2F+2024-01-08">5.0.1 / 2024-01-08</a>
<li> <a href="#label-5.0.0+-2F+2024-01-07">5.0.0 / 2024-01-07</a>
<li> <a href="#label-4.1.2+-2F+2023-11-04">4.1.2 / 2023-11-04</a>
<li> <a href="#label-4.1.1+-2F+2023-05-01">4.1.1 / 2023-05-01</a>
<li> <a href="#label-4.1.0+-2F+2023-04-30">4.1.0 / 2023-04-30</a>
Expand Down Expand Up @@ -214,6 +215,11 @@ <h3>Pages</h3>

<h1 id="label-Release+History">Release History<span><a href="#label-Release+History">&para;</a> <a href="#top">&uarr;</a></span></h1>

<h2 id="label-5.0.1+-2F+2024-01-08">5.0.1 / 2024-01-08<span><a href="#label-5.0.1+-2F+2024-01-08">&para;</a> <a href="#top">&uarr;</a></span></h2>
<ul><li>
<p>Fix broken Document#io method that was broken by switching Parsers to use keyword arguments</p>
</li></ul>

<h2 id="label-5.0.0+-2F+2024-01-07">5.0.0 / 2024-01-07<span><a href="#label-5.0.0+-2F+2024-01-07">&para;</a> <a href="#top">&uarr;</a></span></h2>
<ul><li>
<p>This release is major version bump because it removes access to global parser options that libxml2 version 2.12.0 deprecated (see <a href="https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.0">gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.0</a>) In the unlikely event your code uses these options, then you will need to update it. Specifically, instead of setting global parser options, pass them directly to either Parsers or ParserContexts when creating them. Options are defined as constants in <a href="LibXML/XML/Parser/Options.html"><code>LibXML::XML::Parser::Options</code></a> and LibXML::HTML::Parser::Options</p>
Expand Down Expand Up @@ -487,7 +493,7 @@ <h2 id="label-2.3.0+-2F+2012-03-18+Charlie+Savage">2.3.0 / 2012-03-18 Charlie Sa
</li><li>
<p>Added full pass-through access to libxml2 xmlC14NDocDumpMemory method via <a href="LibXML/XML/Document.html#method-i-canonicalize"><code>LibXML::XML::Document#canonicalize</code></a> method with optional arguments.</p>
</li><li>
<p>Added full test data for C14N based off of W3C spec. (<a href="http://www.w3.org/TR/xml-c14n#Examples">www.w3.org/TR/xml-c14n#Examples</a>)</p>
<p>Added full test data for C14N based off of W3C spec. (<a href="http://www.w3.org/TR/xml-c14n#Examples">www.w3.org/TR/xml-c14n#Examples</a>)</p>
</li><li>
<p>Update sax handler to support encodings on Ruby 1.9 and higher.</p>
</li></ul>
Expand Down Expand Up @@ -804,7 +810,7 @@ <h2 id="label-0.9.6+-2F+2008-12-08+Charlie+Savage">0.9.6 / 2008-12-08 Charlie Sa

<p>They have been replaced by a the new XML::Namespaces class. Use this class to inspect a node’s namespace, its default namespace, its namespace definitions and which namespaces are in scope. It can be accessed via the the XML::Node#namespaces method.</p>
</li><li>
<p>Rationalized XML::Document#save, XML::Document#to_s and XML::Node#to_s to take an optional hash table of parameters that control how output is generated. Supported parameters include setting indentation on or off, the indentation level and the output encoding. This is an API change and may break existing calls to XML::Document#save. However, the previous API was broken - setting the encoding resulted in an error so its unlikely anyone is using it.</p>
<p>Rationalized XML::Document#save, XML::Document#to_s and XML::Node#to_s to take an optional hash table of parameters that control how output is generated. Supported parameters include setting indentation on or off, the indentation level and the output encoding. This is an API change and may break existing calls to XML::Document#save. However, the previous API was broken - setting the encoding resulted in an error so its unlikely anyone is using it.</p>
</li><li>
<p>Rationalized XML::Document#debug, XML::Node#debug, XML::XPath::XPathObject#Debug.</p>
</li><li>
Expand Down Expand Up @@ -886,7 +892,7 @@ <h2 id="label-0.8.3+-2F+2008-07-21+Charlie+Savage">0.8.3 / 2008-07-21 Charlie Sa

<h2 id="label-0.8.2+-2F+2008-07-21+Charlie+Savage">0.8.2 / 2008-07-21 Charlie Savage<span><a href="#label-0.8.2+-2F+2008-07-21+Charlie+Savage">&para;</a> <a href="#top">&uarr;</a></span></h2>
<ul><li>
<p>To use <a href="LibXML.html"><code>LibXML</code></a> you can either require ‘xml’ or require ‘libxml’. The differences is that require ‘xml’ mixes the <a href="LibXML.html"><code>LibXML</code></a> module into the global namespace, thereby allowing you to write code such as document = XML::Document.new. Note that this is different from 0.8.0 and 0.8.1 and may require updating your code.</p>
<p>To use <a href="LibXML.html"><code>LibXML</code></a> you can either require ‘xml’ or require ‘libxml’. The differences is that require ‘xml’ mixes the <a href="LibXML.html"><code>LibXML</code></a> module into the global namespace, thereby allowing you to write code such as document = XML::Document.new. Note that this is different from 0.8.0 and 0.8.1 and may require updating your code.</p>
</li><li>
<p>Support RelaxNG validation (thanks to Morus Walter)</p>
</li><li>
Expand Down Expand Up @@ -1120,7 +1126,7 @@ <h3 id="label-2003-08-01+-22Martin+Povolny-22+-3Cmartin-40solnet.cz-3E">2003-08-

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

8 changes: 4 additions & 4 deletions libxml-ruby/LICENSE.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -76,19 +76,19 @@ <h3>Pages</h3>
Copyright (c) 2002-2007 Sean Chittenden and contributors
Copyright (c) 2001 Wai-Sun &quot;Squidster&quot; Chia</pre>

<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>

<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>

<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>

</main>



<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

4 changes: 2 additions & 2 deletions libxml-ruby/LibXML.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -85,7 +85,7 @@ <h1 id="module-LibXML" class="module">

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

4 changes: 2 additions & 2 deletions libxml-ruby/LibXML/XML.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -1037,7 +1037,7 @@ <h3>Public Class Methods</h3>

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

6 changes: 3 additions & 3 deletions libxml-ruby/LibXML/XML/Attr.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -773,7 +773,7 @@ <h3>Public Instance Methods</h3>
</div>

<div class="method-description">
<p>Removes this attribute from it’s parent. Note the attribute and its content is freed and can no longer be used. If you try to use it you will get a segmentation fault.</p>
<p>Removes this attribute from it’s parent. Note the attribute and its content is freed and can no longer be used. If you try to use it you will get a segmentation fault.</p>

<div class="method-source-code" id="remove-21-source">
<pre>static VALUE rxml_attr_remove_ex(VALUE self)
Expand Down Expand Up @@ -976,7 +976,7 @@ <h3>Public Instance Methods</h3>

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

6 changes: 3 additions & 3 deletions libxml-ruby/LibXML/XML/AttrDecl.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -108,7 +108,7 @@ <h1 id="class-LibXML::XML::AttrDecl" class="class">

<section class="description">

<p>At attribute declaration is used in XML::Dtds to define what attributes are allowed on an element. An attribute declaration defines an attribues name, data type and default value (if any).</p>
<p>At attribute declaration is used in XML::Dtds to define what attributes are allowed on an element. An attribute declaration defines an attribues name, data type and default value (if any).</p>

</section>

Expand Down Expand Up @@ -532,7 +532,7 @@ <h3>Public Instance Methods</h3>

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

8 changes: 4 additions & 4 deletions libxml-ruby/LibXML/XML/Attributes.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2>
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search (/) for a class, method, ..." spellcheck="false"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>

Expand Down Expand Up @@ -310,7 +310,7 @@ <h3>Public Instance Methods</h3>
</div>

<div class="method-description">
<p>Returns the specified attribute. If the attribute does not exist but the document has an associated DTD that defines a default value for the attribute, then a <a href="AttrDecl.html"><code>XML::AttrDecl</code></a> is returned.</p>
<p>Returns the specified attribute. If the attribute does not exist but the document has an associated DTD that defines a default value for the attribute, then a <a href="AttrDecl.html"><code>XML::AttrDecl</code></a> is returned.</p>

<p>name: The name of the attribute, not including a namespace.</p>

Expand Down Expand Up @@ -353,7 +353,7 @@ <h3>Public Instance Methods</h3>
</div>

<div class="method-description">
<p>Returns the specified attribute. If the attribute does not exist but the document has an associated DTD that defines a default value for the attribute, then a <a href="AttrDecl.html"><code>XML::AttrDecl</code></a> is returned.</p>
<p>Returns the specified attribute. If the attribute does not exist but the document has an associated DTD that defines a default value for the attribute, then a <a href="AttrDecl.html"><code>XML::AttrDecl</code></a> is returned.</p>

<p>namespace: The URI of the attribute’s namespace. name: The name of the attribute, not including a namespace.</p>

Expand Down Expand Up @@ -490,7 +490,7 @@ <h3>Public Instance Methods</h3>

<footer id="validator-badges" role="contentinfo">
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.6.2.
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.5.0.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>

Loading

0 comments on commit fc15f3d

Please sign in to comment.