Skip to content

Commit

Permalink
deploy: e50ca34
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Oct 8, 2024
1 parent b2d2702 commit d084d07
Show file tree
Hide file tree
Showing 34 changed files with 199 additions and 199 deletions.
2 changes: 1 addition & 1 deletion Development.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>Contributors of the <a href="https://github.com/py-pdf/fpdf2">py-pdf/fpdf2</
name: 'Lucas-C',
contributions: ['blog', 'code', 'doc', 'infra', 'maintenance', 'question', 'bug'],
location: 'Angers & Nantes, France',
pulls: 262,
pulls: 264,
issues: 74,
},
{
Expand Down
12 changes: 6 additions & 6 deletions fpdf/actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L7-L24" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L7-L24" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class Action(ABC):
def __init__(self, next_action=None):
Expand Down Expand Up @@ -107,7 +107,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L55-L67" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L55-L67" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class GoToAction(Action):
&#34;As of 2022, this does not seem honored by neither Adobe Acrobat nor Sumatra readers.&#34;
Expand Down Expand Up @@ -153,7 +153,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L70-L81" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L70-L81" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class GoToRemoteAction(Action):
def __init__(self, file, dest, next_action=None):
Expand Down Expand Up @@ -197,7 +197,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L84-L96" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L84-L96" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class LaunchAction(Action):
&#34;As of 2022, this does not seem honored by neither Adobe Acrobat nor Sumatra readers.&#34;
Expand Down Expand Up @@ -243,7 +243,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L40-L52" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L40-L52" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class NamedAction(Action):
def __init__(self, action_name, next_action=None):
Expand Down Expand Up @@ -289,7 +289,7 @@ <h2 id="args">Args</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/actions.py#L27-L37" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/actions.py#L27-L37" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class URIAction(Action):
def __init__(self, uri, next_action=None):
Expand Down
10 changes: 5 additions & 5 deletions fpdf/annotations.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/annotations.py#L85-L120" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/annotations.py#L85-L120" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class AnnotationDict(AnnotationMixin):
&#34;A PDF annotation that get serialized as an inline &lt;&lt;dictionnary&gt;&gt;&#34;
Expand Down Expand Up @@ -181,7 +181,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/annotations.py#L25-L75" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/annotations.py#L25-L75" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class AnnotationMixin:
def __init__(
Expand Down Expand Up @@ -250,7 +250,7 @@ <h3>Subclasses</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/annotations.py#L164-L177" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/annotations.py#L164-L177" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class FileSpec(NamedTuple):
embedded_file: PDFEmbeddedFile
Expand Down Expand Up @@ -305,7 +305,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/annotations.py#L78-L82" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/annotations.py#L78-L82" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class PDFAnnotation(AnnotationMixin, PDFObject):
&#34;A PDF annotation that get serialized as an obj&lt;&lt;/&gt;&gt;endobj block&#34;
Expand Down Expand Up @@ -339,7 +339,7 @@ <h3>Inherited members</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/annotations.py#L123-L161" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/annotations.py#L123-L161" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class PDFEmbeddedFile(PDFContentStream):
def __init__(
Expand Down
8 changes: 4 additions & 4 deletions fpdf/bidi.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/bidi.py#L150-L184" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/bidi.py#L150-L184" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class BidiCharacter:
__slots__ = [
Expand Down Expand Up @@ -152,7 +152,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/bidi.py#L516-L787" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/bidi.py#L516-L787" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class BidiParagraph:
__slots__ = (
Expand Down Expand Up @@ -517,7 +517,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/bidi.py#L187-L196" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/bidi.py#L187-L196" class="git-link">Browse git</a>
</summary>
<pre><code class="python">@dataclass
class DirectionalStatus:
Expand Down Expand Up @@ -555,7 +555,7 @@ <h3>Instance variables</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/bidi.py#L199-L418" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/bidi.py#L199-L418" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class IsolatingRun:
__slots__ = [&#34;characters&#34;, &#34;previous_direction&#34;, &#34;next_direction&#34;]
Expand Down
2 changes: 1 addition & 1 deletion fpdf/deprecation.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/b488dccc4dfb78fd9c316a9a755f6bafbeb5854a/fpdf/deprecation.py#L37-L71" class="git-link">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/e50ca3450533ce582a19b23ea0d8dd9ff071bcaf/fpdf/deprecation.py#L37-L71" class="git-link">Browse git</a>
</summary>
<pre><code class="python">class WarnOnDeprecatedModuleAttributes(ModuleType):
def __call__(self):
Expand Down
Loading

0 comments on commit d084d07

Please sign in to comment.