summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2017-07-10 21:46:17 +0200
committerJelle van der Waa <jelle@vdwaa.nl>2018-06-08 19:52:45 +0200
commit2f55536485a53b957ac70ad9a78c55338d2b6b6b (patch)
tree77264adc6774636c0c72596785d14de4d9dcbf8f /templates
parent50a51bef297c0122b4a67416c785d4ffeb880cba (diff)
downloadarchweb-2f55536485a53b957ac70ad9a78c55338d2b6b6b.tar.gz
archweb-2f55536485a53b957ac70ad9a78c55338d2b6b6b.zip
feeds: Add package removal / deletion feed
Add new feeds for newly added packages and packages which where removed from the repository's.
Diffstat (limited to 'templates')
-rw-r--r--templates/public/feeds.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/templates/public/feeds.html b/templates/public/feeds.html
index fb02dd9d..435930db 100644
--- a/templates/public/feeds.html
+++ b/templates/public/feeds.html
@@ -59,6 +59,68 @@
<p>A <a href="https://aur.archlinux.org/rss/" class="rss" title="AUR newest packages feed">newest packages feed</a>
is also available from the <a href="https://aur.archlinux.org/" title="AUR Homepage">Arch User Repository (AUR)</a>.</p>
+ <p>Recently added packages.</p>
+ <table class="pretty2">
+ <thead>
+ <tr>
+ <th></th>
+ <th>All Arches</th>
+ {% for arch in arches %}
+ <th>{{ arch }}</th>
+ {% endfor %}
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><strong>All Repos</strong></td>
+ <td><a href="/feeds/packages/added/" class="rss">Feed</a></td>
+ {% for arch in arches %}
+ <td><a href="/feeds/packages/added/{{ arch }}/" class="rss">Feed</a></td>
+ {% endfor %}
+ </tr>
+ {% for repo in repos %}
+ <tr>
+ <td><strong>{{ repo }}</strong></td>
+ <td><a href="/feeds/packages/added/all/{{ repo|lower }}/" class="rss">Feed</a></td>
+ {% for arch in arches %}
+ <td><a href="/feeds/packages/added/{{ arch }}/{{ repo|lower }}/" class="rss">Feed</a></td>
+ {% endfor %}
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+
+ <p>Recently removed packages.</p>
+ <table class="pretty2">
+ <thead>
+ <tr>
+ <th></th>
+ <th>All Arches</th>
+ {% for arch in arches %}
+ <th>{{ arch }}</th>
+ {% endfor %}
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><strong>All Repos</strong></td>
+ <td><a href="/feeds/packages/removed/" class="rss">Feed</a></td>
+ {% for arch in arches %}
+ <td><a href="/feeds/packages/removed/{{ arch }}/" class="rss">Feed</a></td>
+ {% endfor %}
+ </tr>
+ {% for repo in repos %}
+ <tr>
+ <td><strong>{{ repo }}</strong></td>
+ <td><a href="/feeds/packages/removed/all/{{ repo|lower }}/" class="rss">Feed</a></td>
+ {% for arch in arches %}
+ <td><a href="/feeds/packages/removed/{{ arch }}/{{ repo|lower }}/" class="rss">Feed</a></td>
+ {% endfor %}
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+
<h3>Release Feed</h3>
<p>Grab the <a href="/feeds/releases/" class="rss" title="Arch Linux release feed">ISO release feed</a>