Sha256: 793633270f25a5d3a417e1eed36a755fa48a24ed93ab6b2d4b15b33ff4cc01ff

Contents?: true

Size: 1014 Bytes

Versions: 2

Compression:

Stored size: 1014 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><%= url_for :only_path => false, :web => @web_name, :action => @link_action, :id => 'HomePage' %></link>
		<description>An Instiki wiki</description>
		<language>en-us</language>
		<ttl>40</ttl>
  <% for page in @pages_by_revision %>
		<item>
      <title><%= h page.plain_name %></title>
    <% unless @hide_description %>
      <description><%= h page.display_content %></description>
    <% end %>
      <pubDate><%= page.created_at.getgm.strftime "%a, %d %b %Y %H:%M:%S Z" %></pubDate>
      <guid><%= url_for :only_path => false, :web => @web_name, :action => @link_action, :id => page.name %></guid>
      <link><%= url_for :only_path => false, :web => @web_name, :action => @link_action, :id => 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
instiki-0.10.1 app/views/wiki/rss_feed.rhtml
instiki-0.10.2 app/views/wiki/rss_feed.rhtml