diff -r 8f1d6a6cd7f6 -r 1d314f629611 src/cm/templates/site/export.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/templates/site/export.xml Tue Jul 31 16:37:23 2012 +0200 @@ -0,0 +1,40 @@ +{% load com %} +{% autoescape off %} + + + {{ title }} + {{ date|date:"c" }}+{{ tz|leading_zeros:"2" }} + {{ name }} + {{ email }} + {{ format }} + + {% if tags %} + {{ tags }} + {% endif %} + {% if comments %} + + {% for c in comments %} + + {{ c.id }} + {% if c.reply_to_id %} + {{ c.reply_to_id }} + {% endif %} + {{ c.title }} + {{ c.modified|date:"c" }}+{{ tz|leading_zeros:"2" }} + {{ c.name }} + {{ c.email }} + {{ c.format }} + {{ c.content }} + {% if c.tags %} + {{ c.tags }} + {% endif %} + {{ c.start_wrapper }} + {{ c.end_wrapper }} + {{ c.start_offset }} + {{ c.end_offset }} + + {% endfor %} + + {% endif %} + +{% endautoescape %}