Sha256: 9074bac8a286f2cd26f1810f74a6af0679e20c06b0f97d21bd3b38c363db5b43
Contents?: true
Size: 819 Bytes
Versions: 2
Compression:
Stored size: 819 Bytes
Contents
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> <title><%= @web.name %></title> <link><%= "#{@web_url}/show/HomePage" %></link> <description>An Instiki wiki</description> <language>en-us</language> <ttl>40</ttl> <% for page in @pages_by_revision %> <item> <title><%= page.plain_name %></title> <% unless @hide_description %> <description><%= CGI.escapeHTML(page.display_content) %></description> <% end %> <pubDate><%= page.created_at.strftime "%a, %e %b %Y %H:%M:%S %Z" %></pubDate> <guid><%= "#{@web_url}/show/#{page.name}" %></guid> <link><%= "#{@web_url}/show/#{page.name}" %></link> <dc:creator><%= WikiWords.separate(page.author) %></dc:creator> </item> <% end %> </channel> </rss>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
Pimki-1.5.092 | app/views/wiki/rss_feed.rhtml |
Pimki-1.4.092 | app/views/wiki/rss_feed.rhtml |