diff --git a/tracks/app/views/feed/contexts_rss.rxml b/tracks/app/views/feed/contexts_rss.rxml deleted file mode 100644 index 82703c7c..00000000 --- a/tracks/app/views/feed/contexts_rss.rxml +++ /dev/null @@ -1,19 +0,0 @@ -headers["Content-Type"] = "text/xml; charset=utf-8" -xml.rss("version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do - xml.channel do - xml.title(@title) - xml.link(contexts_url) - xml.description(@description) - @contexts.each do |c| - xml.item do - xml.title(c.name) - xml.link(context_url(c)) - context_description = '' - context_description += "

#{count_undone_todos(c)}. " - context_description += "Context is #{c.hidden? ? 'Hidden' : 'Active'}. " - context_description += "

" - xml.description(context_description) - end - end - end -end \ No newline at end of file