2005-01-24 19:52:04 +01:00
|
|
|
<?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>
|
2005-04-03 09:31:11 +02:00
|
|
|
<link><%= url_for :only_path => false, :web => @web_name, :action => @link_action, :id => 'HomePage' %></link>
|
2005-01-24 19:52:04 +01:00
|
|
|
<description>An Instiki wiki</description>
|
|
|
|
<language>en-us</language>
|
|
|
|
<ttl>40</ttl>
|
|
|
|
<% for page in @pages_by_revision %>
|
|
|
|
<item>
|
2005-04-28 07:10:58 +02:00
|
|
|
<title><%= h page.plain_name %></title>
|
2005-01-24 19:52:04 +01:00
|
|
|
<% unless @hide_description %>
|
2005-04-03 09:31:11 +02:00
|
|
|
<description><%= h page.display_content %></description>
|
2005-01-24 19:52:04 +01:00
|
|
|
<% end %>
|
2005-04-29 01:52:44 +02:00
|
|
|
<pubDate><%= page.created_at.getgm.strftime "%a, %d %b %Y %H:%M:%S Z" %></pubDate>
|
2005-04-03 09:31:11 +02:00
|
|
|
<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>
|
2005-01-24 19:52:04 +01:00
|
|
|
<dc:creator><%= WikiWords.separate(page.author) %></dc:creator>
|
|
|
|
</item>
|
|
|
|
<% end %>
|
|
|
|
</channel>
|
|
|
|
</rss>
|