teensyweb/
teensyweb/app/models/
teensyweb/app/views/account/
teensyweb/app/views/layouts/
teensyweb/app/views/notifications/
teensyweb/app/views/repository/
teensyweb/config/
teensyweb/config/environments/
teensyweb/db/migrate/
teensyweb/doc/
teensyweb/lib/
teensyweb/public/images/
teensyweb/public/javascripts/
teensyweb/public/stylesheets/
teensyweb/script/
teensyweb/script/performance/
teensyweb/script/process/
teensyweb/test/
teensyweb/test/fixtures/
teensyweb/test/fixtures/notifications/
xml.rss('version' => '2.0') do
  xml.channel do 
    xml.title(TWCONFIG['site_name'])
    xml.link(@request.protocol + @request.host_with_port + url_for(:rss => nil))
    xml.description(page_title)
    @pages.each { |p|
      xml.item do 
        xml.title(p.name)
        xml.link(@request.protocol + @request.host_with_port + url_for(:controller => "wiki", :action => "show", :id => p.name))
        xml.pubDate(CGI.rfc1123_date p.updated_at)
      end
    }
  end
end