Allow spaces in XML replies.
[pithos] / pithos / api / templates / objects.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <container name="{{ container }}">
4   {% for object in objects %}
5   {% if object.subdir %}
6   <subdir name="{{ object.subdir }}" />
7   {% else %}
8   <object>
9   {% for key, value in object.items %}
10     <{{ key }}>{{ value }}</{{ key }}>
11   {% endfor %}
12   </object>
13   {% endif %}
14   {% endfor %}
15 </container>