blob: a3502cf50225aebf948aaab58595368ab3d0752e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{% 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>
<p>Grab the <a href="/feeds/news/">news item feed <img src="/media/rss.png" alt="RSS Feed" /></a>
to keep up-to-date with the latest news from the Arch Linux development staff.</p>
<p>If you are interested in
<a href="/feeds/packages/">all package updates <img src="/media/rss.png" alt="RSS Feed" /></a>,
then grab this feed. Note that when a package is updated for multiple
architectures, you will see each individual update show up here.
Alternatively, you can select a packages feed from the below table that is
more tailored to your specific needs. If you are only interested in one
architecture, there are a variety of feeds you can choose from. Note that
feeds for a specific architecture, such as 'i686', will also include all
package updates for 'any' (architecture-independent) packages.</p>
<table id="feedlist" class="center">
<tr>
<th>Architecture</th>
<th>All Repos</th>
{% for repo in repos %}
<th>{{ repo }}</th>
{% endfor %}
</tr>
{% for arch in arches %}
<tr>
<td><strong>{{ arch }}</strong></td>
<td><a href="/feeds/packages/{{ arch }}/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td>
{% for repo in repos %}
<td><a href="/feeds/packages/{{ arch }}/{{ repo|lower }}/">Feed <img src="/media/rss.png" alt="RSS Feed" /></a></td>
{% endfor %}
</tr>
{% endfor %}
</table>
</div>
<br /><br />
{% endblock %}
|