b332c2a776
Use a YAML file listing the projects to generate the specs.openstack.org root page and an OPML file for all of the available RSS feeds. These changes are based on the work of Maish Saidel-Keesing <maishsk@gmail.com> in https://review.openstack.org/#/c/140041/ Change-Id: I828d65f10fb7608b59e3561cedc9553d4d96ee75
20 lines
530 B
XML
20 lines
530 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<opml version="1.0">
|
|
<head>
|
|
<title>OpenStack Specs Feeds</title>
|
|
</head>
|
|
<body>
|
|
<outline text="OpenStack Specs" title="OpenStack Specs">
|
|
{% for project in all %}
|
|
<outline type="rss"
|
|
text="{{project.name}}"
|
|
title="{{project.name}}"
|
|
xmlUrl="http://specs.openstack.org/{{project.repo}}/rss.xml"
|
|
htmlUrl="http://specs.openstack.org/{{project.repo}}">
|
|
</outline>
|
|
{% endfor %}
|
|
</outline>
|
|
</body>
|
|
</opml>
|