Skip to content

Commit

Permalink
deploy: cdf981f
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Jan 13, 2025
1 parent 7b03682 commit c68da00
Show file tree
Hide file tree
Showing 37 changed files with 1,049 additions and 1,044 deletions.
28 changes: 14 additions & 14 deletions contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,27 @@ <h1>Contributors of the <a href="https://github.com/py-pdf/fpdf2">py-pdf/fpdf2</
const EMOJI_KEY = {"a11y": "\ufe0f\u267f\ufe0f", "audio": "\ud83d\udd0a", "blog": "\ud83d\udcdd", "bug": "\ud83d\udc1b", "business": "\ud83d\udcbc", "code": "\ud83d\udcbb", "content": "\ud83d\udd8b", "data": "\ud83d\udd23", "design": "\ud83c\udfa8", "doc": "\ud83d\udcd6", "eventOrganizing": "\ud83d\udccb", "example": "\ud83d\udca1", "financial": "\ud83d\udcb5", "fundingFinding": "\ud83d\udd0d", "ideas": "\ud83e\udd14", "infra": "\ud83d\ude87", "maintenance": "\ud83d\udea7", "mentoring": "\ud83e\uddd1\u200d\ud83c\udfeb", "platform": "\ud83d\udce6", "plugin": "\ud83d\udd0c", "projectManagement": "\ud83d\udcc6", "question": "\ud83d\udcac", "research": "\ud83d\udd2c", "review": "\ud83d\udc40", "security": "\ud83d\udee1\ufe0f", "talk": "\ud83d\udce2", "test": "\u26a0\ufe0f", "tool": "\ud83d\udd27", "translation": "\ud83c\udf0d", "tutorial": "\u2705"};

const contributors = [
{
name: 'Lucas-C',
contributions: ['blog', 'code', 'doc', 'infra', 'maintenance', 'question', 'bug'],
location: 'Angers & Nantes, France',
pulls: 285,
issues: 76,
},
{
name: 'johnnynunez',
contributions: [],
location: 'Barcelona',
pulls: 0,
issues: 2,
},
{
name: 'mschoettle',
contributions: ['doc'],
location: 'Montreal, Canada',
pulls: 1,
issues: 1,
},
{
name: 'Lucas-C',
contributions: ['blog', 'code', 'doc', 'infra', 'maintenance', 'question', 'bug'],
location: 'Angers & Nantes, France',
pulls: 284,
issues: 76,
},
{
name: 'simkessy',
contributions: [],
Expand All @@ -56,13 +63,6 @@ <h1>Contributors of the <a href="https://github.com/py-pdf/fpdf2">py-pdf/fpdf2</
pulls: 37,
issues: 4,
},
{
name: 'johnnynunez',
contributions: [],
location: 'Barcelona',
pulls: 0,
issues: 1,
},
{
name: 'viniciustozzi',
contributions: [],
Expand Down
24 changes: 12 additions & 12 deletions fpdf/actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,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/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L7-L24" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L7-L24" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">class Action(ABC):
def __init__(self, next_action=None):
Expand Down Expand Up @@ -103,7 +103,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L15-L16" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L15-L16" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
raise NotImplementedError</code></pre>
Expand All @@ -120,7 +120,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L55-L67" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L55-L67" class="git-link" target="_blank">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 @@ -156,7 +156,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L62-L67" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L62-L67" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
return super()._serialize(
Expand All @@ -177,7 +177,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L70-L81" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L70-L81" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">class GoToRemoteAction(Action):
def __init__(self, file, dest, next_action=None):
Expand Down Expand Up @@ -213,7 +213,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L76-L81" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L76-L81" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
return super()._serialize(
Expand All @@ -234,7 +234,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L84-L96" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L84-L96" class="git-link" target="_blank">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 @@ -270,7 +270,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L91-L96" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L91-L96" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
return super()._serialize(
Expand All @@ -291,7 +291,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L40-L52" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L40-L52" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">class NamedAction(Action):
def __init__(self, action_name, next_action=None):
Expand Down Expand Up @@ -328,7 +328,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L47-L52" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L47-L52" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
return super()._serialize(
Expand All @@ -349,7 +349,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L27-L37" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L27-L37" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">class URIAction(Action):
def __init__(self, uri, next_action=None):
Expand Down Expand Up @@ -384,7 +384,7 @@ <h3>Methods</h3>
<details class="source">
<summary>
<span>Expand source code</span>
<a href="https://github.com/py-pdf/fpdf2/blob/9994c7b12179bf9b40d8de0aa7bc3d0ef7a3b868/fpdf/actions.py#L32-L37" class="git-link" target="_blank">Browse git</a>
<a href="https://github.com/py-pdf/fpdf2/blob/cdf981f835eaeba7f80b7e4e16824453af794d93/fpdf/actions.py#L32-L37" class="git-link" target="_blank">Browse git</a>
</summary>
<pre><code class="python">def serialize(self, _security_handler=None, _obj_id=None):
return super()._serialize(
Expand Down
Loading

0 comments on commit c68da00

Please sign in to comment.