blob: 5aa5df20a7edb1753d7d23bfadf63669c4b95c29 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{% extends "base.html" %}
{% block title %}Parabola - RSS Feeds{% endblock %}
{% block content %}
<div id="rss-feeds" class="box">
<h2>RSS Feeds</h2>
<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>
<h3>News and Activity Feeds</h3>
<p>Grab the <a href="/feeds/news/" class="rss" title="Parabola News
feed">news item feed</a> to keep up-to-date with the latest news from
the Parabola staff.</p>
<p>The <a
href="http://wiki.parabolagnulinux.org/feed.php"
title="ParabolaWiki Recent Changes feed" class="rss">Parabola Wiki: Recent
changes feed</a> is also available to track document changes from the
<a href="http://wiki.parabolagnulinux.org/" title="Parabola Wiki community
documentation">Parabola Wiki</a>.</p>
<h3>Package Feeds</h3>
<p>If you are interested in <a href="/feeds/packages/" class="rss"
title="Parabola package updates feed">all package updates</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 class="pretty2">
<thead>
<tr>
<th>Architecture</th>
<th>All Repos</th>
{% for repo in repos %}
<th>{{ repo }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for arch in arches %}
<tr>
<td><strong>{{ arch }}</strong></td>
<td><a href="/feeds/packages/{{ arch }}/" class="rss">Feed</a></td>
{% for repo in repos %}
<td><a href="/feeds/packages/{{ arch }}/{{ repo|lower }}/" class="rss">Feed</a></td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
<p>A <a href="https://aur.archlinux.org/rss.php" 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>, but be specially aware that sometimes,
unfree software gets uploaded there, <em>at least until we found a solution
to it.</em></p>
</div>
{% endblock %}
|