Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 24
- Log:
Initial import of Collaboa 0.5.6 from downloaded Tarball. Collaboa is
a Ruby On Rails based bug tracker and SVN repository browsing tool.
- Author:
- adh
- Date:
- Mon Jul 24 21:54:39 +0100 2006
- Size:
- 607 Bytes
1 | xml.instruct! |
2 | xml.rss("version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do |
3 | xml.channel do |
4 | xml.title(@rss_title) |
5 | xml.link(format_host_url) |
6 | xml.description(@rss_title) |
7 | @items.each { |item| |
8 | xml.item do |
9 | xml.title(h(item[:title])) |
10 | xml.description(format_and_make_links(item[:content])) |
11 | xml.pubDate(item[:date].strftime("%a, %d %b %Y %H:%M:%S %Z")) |
12 | xml.tag!("dc:creator", item[:author]) |
13 | xml.guid("Collaboa-#{item[:date].to_i}", "isPermaLink" => "false") |
14 | xml.link(format_host_url + item[:link]) |
15 | end |
16 | } |
17 | end |
18 | end |