Sha256: d51c8d83f1e9e244f95364021515f668c2b8299402d476c08e7af422e05a800f
Contents?: true
Size: 957 Bytes
Versions: 4
Compression:
Stored size: 957 Bytes
Contents
<?xml version="1.0" encoding="utf-8" ?> <rss version="2.0" "xmlns:dc"="http://purl.org/dc/elements/1.1"> <channel> <?r year_range = [2009, Date.today.year].uniq.join('-') author = "#{ Blog.options.author.name }, (#{ Blog.options.author.email })" ?> <title>#{ Blog.options.title }</title> <link>#{ request.domain Blog::Main.r("/") }</link> <description>#{ Blog.options.subtitle }</description> <copyright> Copyright © #{year_range} by #{author} Verbatim copying is permitted as long as this message is preserved. </copyright> <managingEditor>#{ author }</managingEditor> <webMaster>#{ author }</webMaster> <pubDate>#{ @updated.iso8601 }</pubDate> <generator>#{ @generator }</generator> <docs>http://blogs.law.harvard.edu/tech/rss</docs> <ttl>240</ttl> <?r @entries.each do |entry| ?> #{ Blog::Entries.partial_content('feed.rss', :entry => entry) } <?r end ?> </channel> </rss>
Version data entries
4 entries across 4 versions & 2 rubygems