Merged [5510] from ietf@augustcellars.com:

Increase the set of information being returned on the atom viewer to reflect IETF specific information.
 - Legacy-Id: 5522
Note: SVN reference [5510] has been migrated to Git commit ca1fc8b754
This commit is contained in:
Henrik Levkowetz 2013-03-09 20:15:15 +00:00
commit f5b4396479

View file

@ -25,6 +25,23 @@
{%autoescape off %}
<content type="html">{{ entry.desc|linebreaksbr|force_escape }}</content>
{%endautoescape %}
<ietf xmlns="http://ietf.org/atom/datatracker/community">
<type>{{ entry.type }}</type>
{% if entry.doc.stream.slug %}<stream>{{ entry.doc.stream.slug }}</stream>{% endif %}
<group>{{ entry.doc.group.acronym }}</group>
{% if entry.doc.shepherd.name %}<shepherd>{{entry.doc.shepherd.name }}</shepherd>{% endif %}
{% if entry.doc.ad.name %}<ad>{{entry.doc.ad.name}}</ad>{% endif %}
{% for state in entry.doc.states.all %}
<state type="{{ state.type }}">{{ state.slug }}</state>
{% endfor %}
{% for tag in entry.doc.tags.objects %}
<tag>{{ tag.slug }}</tag>
{% endfor %}
{% if entry.type == "new_revision" %}
<abstract>{{entry.doc.abstract}}</abstract>
<version>{{entry.doc.rev}}</version>
{% endif %}
</ietf>
</entry>
{% endfor %}