mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
home: Add submitting packages section
Link to the ArchWiki and lists any SSH fingerprints configured in the AUR configuration file. Fixes FS#45322. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
815e437f0c
commit
fd1794a737
1 changed files with 22 additions and 0 deletions
|
@ -71,6 +71,28 @@ html_header( __("Home") );
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<h4><?= __('Submitting Packages') ?></h4>
|
||||||
|
<div class="article-content">
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
echo __(
|
||||||
|
'Git over SSH is now used to submit packages to the AUR. See the %sSubmitting packages%s section of the Arch User Repository ArchWiki page for more details.',
|
||||||
|
'<a href="https://wiki.archlinux.org/index.php/Arch_User_Repository#AUR_4">',
|
||||||
|
'</a>'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<?php if (config_section_exists('fingerprints')): ?>
|
||||||
|
<p>
|
||||||
|
<?= __('The following SSH fingerprints are used for the AUR:') ?>
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<?php foreach (config_items('fingerprints') as $type => $fingerprint): ?>
|
||||||
|
<li><code><?= htmlspecialchars($type) ?></code>: <code><?= htmlspecialchars($fingerprint) ?></code></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
<h4><?= __('Discussion') ?></h4>
|
<h4><?= __('Discussion') ?></h4>
|
||||||
<div class="article-content">
|
<div class="article-content">
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue