2018-05-18 21:44:14 +02:00
|
|
|
$# This file is part of Vervis.
|
|
|
|
$#
|
2024-07-18 12:57:41 +02:00
|
|
|
$# Written in 2018, 2019, 2022, 2024 by fr33domlover <fr33domlover@riseup.net>.
|
2018-05-18 21:44:14 +02:00
|
|
|
$#
|
|
|
|
$# ♡ Copying is an act of love. Please copy, reuse and share.
|
|
|
|
$#
|
|
|
|
$# The author(s) have dedicated all copyright and related and neighboring
|
|
|
|
$# rights to this software to the public domain worldwide. This software is
|
|
|
|
$# distributed without any warranty.
|
|
|
|
$#
|
|
|
|
$# You should have received a copy of the CC0 Public Domain Dedication along
|
|
|
|
$# with this software. If not, see
|
|
|
|
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>By
|
|
|
|
<td>
|
2022-09-16 13:41:58 +02:00
|
|
|
$maybe (person, actor) <- mpersonWritten
|
|
|
|
^{personLinkW person actor}
|
2018-05-18 21:44:14 +02:00
|
|
|
$nothing
|
2019-08-06 15:23:11 +02:00
|
|
|
#{authorName author}
|
|
|
|
$maybe (committer, _) <- patchCommitted patch
|
|
|
|
;
|
2022-09-16 13:41:58 +02:00
|
|
|
$maybe (person, actor) <- mpersonCommitted
|
|
|
|
^{personLinkW person actor}
|
2019-08-06 15:23:11 +02:00
|
|
|
$nothing
|
|
|
|
#{authorName committer}
|
2018-05-18 21:44:14 +02:00
|
|
|
<tr>
|
|
|
|
<td>At
|
2019-08-06 15:23:11 +02:00
|
|
|
<td>
|
|
|
|
#{showDate written}
|
|
|
|
$maybe (_, committed) <- patchCommitted patch
|
|
|
|
; #{showDate committed}
|
2018-05-18 21:44:14 +02:00
|
|
|
<tr>
|
|
|
|
<td>Title
|
2018-05-25 00:29:08 +02:00
|
|
|
<td>#{patchTitle patch}
|
2018-05-18 21:44:14 +02:00
|
|
|
<tr>
|
|
|
|
<td>Description
|
|
|
|
<td>
|
|
|
|
<p>#{patchDescription patch}
|
|
|
|
|
2024-07-18 12:57:41 +02:00
|
|
|
<p>Parent commits:
|
|
|
|
<ol>
|
|
|
|
$forall parent <- parents
|
|
|
|
<li>#{parent}
|
|
|
|
|
|
|
|
<p>Diff:
|
|
|
|
<pre>#{patchDiff patch}
|