evorepo/templates/public/feeds.html
Dan McGee 6fe8aec0ab feeds: add per arch, per repo feed ability
Make the feed framework a lot more flexible and give the possibility to have
a feed for each architecture. You can drill down even more than also get a
feed for a particular repo; some might find this helpful for something like
tracking [testing]. Implements FS#12939.

I also bumped up the number of items available in each of these feeds; since
it is full of a bunch of small items it might be more helpful to have more
available and it should also prevent fewer ones from being missed.

The UI isn't exactly spectacular, but I figured some sort of page is better
than none listing all the various feeds you can pull from.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-02-04 19:03:32 -06:00

28 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - RSS Feeds{% endblock %}
{% block content %}
<div class="box">
<h2 class="title">RSS Feeds</h2>
<br /><br />
<p>Several RSS feeds are available for consumption from the Arch website.
The majority of these are package related and allow feeds to be customized
for the updates you care about.</p>
<table cellspacing="20">
<tr><td>News items feed</td>
<td><a href="/feeds/news/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td></tr>
<tr><td>Packages feed for <em>all</em> architectures, <em>all</em> repositories</td>
<td><a href="/feeds/packages/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td></tr>
{% for arch in arches %}
<tr><td>Packages feed for architecture {{ arch }}, <em>all</em> repositories</td>
<td><a href="/feeds/packages/{{ arch }}/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td></tr>
{% for repo in repos %}
<tr><td>Packages feed for architecture {{ arch }}, repository {{ repo }}</td>
<td><a href="/feeds/packages/{{ arch }}/{{ repo }}/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td></tr>
{% endfor %}
{% endfor %}
</table>
</div>
<br /><br />
{% endblock %}