Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / api / templates / versions_list.atom @ 483c9197

History | View | Annotate | Download (829 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3
<feed xmlns="http://www.w3.org/2005/Atom">
4
  <title type="text">Available API Versions</title>
5
  <updated>{{ now }}</updated>
6
  <id>http://ocean.grnet.gr/</id>
7
  <author>
8
    <name>Synnefo</name>
9
    <uri>http://ocean.grnet.gr/</uri>
10
  </author>
11
  <link rel="self" href="http://ocean.grnet.gr/"/>
12

    
13
  {% for version in versions %}
14
  <entry>
15
    <id>http://servers.api.openstack.org/{{ version.id }}/</id>
16
    <title type="text">Version {{ version.id }}</title>
17
    <updated>{{ version.updated }}</updated>
18
    {% for link in version.links %}
19
      <link rel="{{ link.rel }}" href="{{ link.href }}"/>
20
    {% endfor %}
21
    <content type="text">Version {{ version.id }} {{ version.status }} ({{ version.updated }})</content>
22
  </entry>
23
  {% endfor %}
24
</feed>
25
{% endspaceless %}