Remove a file that's not necessary with the last changeset.

git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@424 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
lukemelia 2007-02-04 05:56:11 +00:00
parent fcab16a5c2
commit 6fce959bf8

View file

@ -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 += "<p>#{count_undone_todos(c)}. "
context_description += "Context is #{c.hidden? ? 'Hidden' : 'Active'}. "
context_description += "</p>"
xml.description(context_description)
end
end
end
end