Skip to content

Commit c823632

Browse files
committed
Regen docs for 8.1.7
1 parent ca991fa commit c823632

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

doc/AdvancedHTMLParser.Parser.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@
175175

176176
<dl ><dt ><a name="AdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root')</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
177177
&nbsp;<br />
178-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
178+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
179+
&nbsp;<br />
179180
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;AdvancedTag/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root'&nbsp;[default],&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.</tt></dd></dl>
180181

181182
<dl ><dt ><a name="AdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root')</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />
@@ -480,8 +481,11 @@
480481

481482
<dl ><dt ><a name="IndexedAdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root', useIndex=True)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
482483
&nbsp;<br />
483-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
484+
&nbsp;<br />
485+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
486+
&nbsp;<br />
484487
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;AdvancedTag/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root',&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.<br />
488+
&nbsp;<br />
485489
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;useIndex&nbsp;&lt;bool&gt;&nbsp;If&nbsp;useIndex&nbsp;is&nbsp;True&nbsp;and&nbsp;class&nbsp;names&nbsp;are&nbsp;indexed&nbsp;[see&nbsp;constructor]&nbsp;only&nbsp;the&nbsp;index&nbsp;will&nbsp;be&nbsp;used.&nbsp;Otherwise&nbsp;a&nbsp;full&nbsp;search&nbsp;is&nbsp;performed.</tt></dd></dl>
486490

487491
<dl ><dt ><a name="IndexedAdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root', useIndex=True)</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />

doc/AdvancedHTMLParser.Tags.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319

320320
<dl ><dt ><a name="AdvancedTag-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Search&nbsp;children&nbsp;of&nbsp;this&nbsp;tag&nbsp;for&nbsp;tags&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name<br />
321321
&nbsp;<br />
322-
@param&nbsp;className&nbsp;-&nbsp;Class&nbsp;name<br />
322+
@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
323323
&nbsp;<br />
324324
@return&nbsp;-&nbsp;<a href="#TagCollection" >TagCollection</a>&nbsp;of&nbsp;matching&nbsp;elements</tt></dd></dl>
325325

@@ -1194,7 +1194,7 @@
11941194

11951195
<dl ><dt ><a name="TagCollection-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Get&nbsp;elements&nbsp;within&nbsp;this&nbsp;collection&nbsp;containing&nbsp;a&nbsp;specific&nbsp;class&nbsp;name<br />
11961196
&nbsp;<br />
1197-
@param&nbsp;className&nbsp;-&nbsp;A&nbsp;single&nbsp;class&nbsp;name<br />
1197+
@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
11981198
&nbsp;<br />
11991199
@return&nbsp;-&nbsp;<a href="#TagCollection" >TagCollection</a>&nbsp;of&nbsp;unique&nbsp;elements&nbsp;within&nbsp;this&nbsp;collection&nbsp;tagged&nbsp;with&nbsp;a&nbsp;specific&nbsp;class&nbsp;name</tt></dd></dl>
12001200

doc/AdvancedHTMLParser.Validator.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@
389389

390390
<dl ><dt ><a name="ValidatingAdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root')</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
391391
&nbsp;<br />
392-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
392+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
393+
&nbsp;<br />
393394
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;AdvancedTag/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root'&nbsp;[default],&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.</tt></dd></dl>
394395

395396
<dl ><dt ><a name="ValidatingAdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root')</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />

doc/AdvancedHTMLParser.html

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<table width="100%" cellspacing="0" cellpadding="2" border="0" summary="heading" >
77
<tr bgcolor="#7799ee" >
88
<td valign="bottom" >&nbsp;<br />
9-
<font color="#ffffff" face="helvetica, arial" >&nbsp;<br /><big ><big ><strong >AdvancedHTMLParser</strong></big></big> (version 8.1.6)</font></td><td align="right" valign="bottom" ><font color="#ffffff" face="helvetica, arial" ><a href="AdvancedHTMLParser.html" >index</a></font></td></tr></table>
9+
<font color="#ffffff" face="helvetica, arial" >&nbsp;<br /><big ><big ><strong >AdvancedHTMLParser</strong></big></big> (version 8.1.7)</font></td><td align="right" valign="bottom" ><font color="#ffffff" face="helvetica, arial" ><a href="AdvancedHTMLParser.html" >index</a></font></td></tr></table>
1010
<p ><tt >Copyright&nbsp;(c)&nbsp;2015,&nbsp;2016,&nbsp;2017,&nbsp;2018,&nbsp;2019&nbsp;Tim&nbsp;Savannah&nbsp;All&nbsp;Rights&nbsp;Rserved&nbsp;under&nbsp;LGPLv3.&nbsp;All&nbsp;Rights&nbsp;Reserved.<br />
1111
&nbsp;<br />
1212
&nbsp;<br />
@@ -500,7 +500,8 @@
500500

501501
<dl ><dt ><a name="AdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root')</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
502502
&nbsp;<br />
503-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
503+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
504+
&nbsp;<br />
504505
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;<a href="#AdvancedTag" >AdvancedTag</a>/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root'&nbsp;[default],&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.</tt></dd></dl>
505506

506507
<dl ><dt ><a name="AdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root')</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />
@@ -1317,7 +1318,7 @@
13171318

13181319
<dl ><dt ><a name="AdvancedTag-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Search&nbsp;children&nbsp;of&nbsp;this&nbsp;tag&nbsp;for&nbsp;tags&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name<br />
13191320
&nbsp;<br />
1320-
@param&nbsp;className&nbsp;-&nbsp;Class&nbsp;name<br />
1321+
@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
13211322
&nbsp;<br />
13221323
@return&nbsp;-&nbsp;<a href="#TagCollection" >TagCollection</a>&nbsp;of&nbsp;matching&nbsp;elements</tt></dd></dl>
13231324

@@ -1956,8 +1957,11 @@
19561957

19571958
<dl ><dt ><a name="IndexedAdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root', useIndex=True)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
19581959
&nbsp;<br />
1959-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
1960+
&nbsp;<br />
1961+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
1962+
&nbsp;<br />
19601963
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;<a href="#AdvancedTag" >AdvancedTag</a>/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root',&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.<br />
1964+
&nbsp;<br />
19611965
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;useIndex&nbsp;&lt;bool&gt;&nbsp;If&nbsp;useIndex&nbsp;is&nbsp;True&nbsp;and&nbsp;class&nbsp;names&nbsp;are&nbsp;indexed&nbsp;[see&nbsp;constructor]&nbsp;only&nbsp;the&nbsp;index&nbsp;will&nbsp;be&nbsp;used.&nbsp;Otherwise&nbsp;a&nbsp;full&nbsp;search&nbsp;is&nbsp;performed.</tt></dd></dl>
19621966

19631967
<dl ><dt ><a name="IndexedAdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root', useIndex=True)</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />
@@ -2798,7 +2802,7 @@
27982802

27992803
<dl ><dt ><a name="TagCollection-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className)</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Get&nbsp;elements&nbsp;within&nbsp;this&nbsp;collection&nbsp;containing&nbsp;a&nbsp;specific&nbsp;class&nbsp;name<br />
28002804
&nbsp;<br />
2801-
@param&nbsp;className&nbsp;-&nbsp;A&nbsp;single&nbsp;class&nbsp;name<br />
2805+
@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
28022806
&nbsp;<br />
28032807
@return&nbsp;-&nbsp;<a href="#TagCollection" >TagCollection</a>&nbsp;of&nbsp;unique&nbsp;elements&nbsp;within&nbsp;this&nbsp;collection&nbsp;tagged&nbsp;with&nbsp;a&nbsp;specific&nbsp;class&nbsp;name</tt></dd></dl>
28042808

@@ -3062,7 +3066,8 @@
30623066

30633067
<dl ><dt ><a name="ValidatingAdvancedHTMLParser-getElementsByClassName" ><strong >getElementsByClassName</strong></a>(self, className, root='root')</dt><dd ><tt >getElementsByClassName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;containing&nbsp;a&nbsp;given&nbsp;class&nbsp;name.<br />
30643068
&nbsp;<br />
3065-
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;A&nbsp;one-word&nbsp;class&nbsp;name<br />
3069+
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;className&nbsp;&lt;str&gt;&nbsp;-&nbsp;One&nbsp;or&nbsp;more&nbsp;space-separated&nbsp;class&nbsp;names<br />
3070+
&nbsp;<br />
30663071
&nbsp;&nbsp;&nbsp;&nbsp;@param&nbsp;root&nbsp;&lt;<a href="#AdvancedTag" >AdvancedTag</a>/'root'&gt;&nbsp;-&nbsp;Search&nbsp;starting&nbsp;at&nbsp;a&nbsp;specific&nbsp;node,&nbsp;if&nbsp;provided.&nbsp;if&nbsp;string&nbsp;'root'&nbsp;[default],&nbsp;the&nbsp;root&nbsp;of&nbsp;the&nbsp;parsed&nbsp;tree&nbsp;will&nbsp;be&nbsp;used.</tt></dd></dl>
30673072

30683073
<dl ><dt ><a name="ValidatingAdvancedHTMLParser-getElementsByName" ><strong >getElementsByName</strong></a>(self, name, root='root')</dt><dd ><tt >getElementsByName&nbsp;-&nbsp;Searches&nbsp;and&nbsp;returns&nbsp;all&nbsp;elements&nbsp;with&nbsp;a&nbsp;specific&nbsp;name.<br />
@@ -3339,6 +3344,6 @@
33393344

33403345
<tr ><td bgcolor="#55aa55" ><tt >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td >&nbsp;</td>
33413346
<td width="100%" ><strong >__all__</strong> = ('AdvancedHTMLParser', 'IndexedAdvancedHTMLParser', 'AdvancedHTMLFormatter', 'AdvancedTag', 'TagCollection', 'ValidatingAdvancedHTMLParser', 'MissedCloseException', 'InvalidCloseException', 'HTMLValidationException', 'MultipleRootNodeException', 'StyleAttribute', 'toggleAttributesDOM', 'isTextNode', 'isTagNode', 'AdvancedHTMLMiniFormatter', 'AdvancedHTMLSlimTagFormatter', 'AdvancedHTMLSlimTagMiniFormatter')<br />
3342-
<strong >__int_version_tuple__</strong> = (8, 1, 6)<br />
3343-
<strong >__version_tuple__</strong> = ('8', '1', '6')</td></tr></table>
3347+
<strong >__int_version_tuple__</strong> = (8, 1, 7)<br />
3348+
<strong >__version_tuple__</strong> = ('8', '1', '7')</td></tr></table>
33443349
</p></p></p></p></body></html>

0 commit comments

Comments
 (0)