From 3bb6c880d2d0476245cfe7bf8afa579e4ee5ba11 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Fri, 13 May 2011 11:15:32 +0200 Subject: replace hand-drawn feeds with the django syndication framework --- src/templates/apps/room/atom.xml | 20 -------------------- src/templates/apps/room/list.html | 1 + src/templates/apps/room/rss2.xml | 26 -------------------------- 3 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 src/templates/apps/room/atom.xml delete mode 100644 src/templates/apps/room/rss2.xml (limited to 'src/templates') diff --git a/src/templates/apps/room/atom.xml b/src/templates/apps/room/atom.xml deleted file mode 100644 index 17b36dd..0000000 --- a/src/templates/apps/room/atom.xml +++ /dev/null @@ -1,20 +0,0 @@ - -{% load prefix %} - - {{title}} - {{rfc3339_date}} - - - {% if rooms %} - {% for room in rooms %} - - {{room.name}} - {% if room.description %} - {{room.description}} - {% endif %} - - {{room.updated}} - - {% endfor %} - {% endif %} - \ No newline at end of file diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html index 6900a6d..f529650 100644 --- a/src/templates/apps/room/list.html +++ b/src/templates/apps/room/list.html @@ -17,6 +17,7 @@ {% block meta %} {% if tags %} + {% endif %} {% endblock %} {% block content %} diff --git a/src/templates/apps/room/rss2.xml b/src/templates/apps/room/rss2.xml deleted file mode 100644 index 24a3189..0000000 --- a/src/templates/apps/room/rss2.xml +++ /dev/null @@ -1,26 +0,0 @@ - -{% load prefix %} - - - {{title}} - {{description}} - - {{rfc822_date}} - {{baseurl}}/room/+{{tags}} - - {% if rooms %} - {% for room in rooms %} - - {{room.name}} - {% if room.description %} - {{room.description}} - {% endif %} - {{room.url}} - - {% endfor %} - {% endif %} - - \ No newline at end of file -- cgit v1.1