Sha256: 50d0193140e96f3a768c4db46aee2f3b7c61c9be997d9e15c96fb069c4756839

Contents?: true

Size: 576 Bytes

Versions: 9

Compression:

Stored size: 576 Bytes

Contents

xml.instruct! :xml, :version=>"1.0", :encoding=>"UTF-8"
xml.instruct! 'xml-stylesheet', :type=>"text/css", :href => url_for("/stylesheets/rss.css")

xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/",
        "xmlns:trackback" => "http://madskills.com/public/xml/rss/module/trackback/" do
  xml.channel do
    xml.title feed_title
    xml.link url_for(:only_path => false, :format => :rss)
    xml.language "en-us"
    xml.ttl "40"
    xml.description this_blog.blog_subtitle

    rss20_feed.each do |value|
      value.to_rss(xml)
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
typo-5.0.1 app/views/articles/_rss20_feed.rss.builder
typo-5.0.2 app/views/articles/_rss20_feed.rss.builder
typo-5.0.3.98.1 app/views/articles/_rss20_feed.rss.builder
typo-5.0 app/views/articles/_rss20_feed.rss.builder
typo-5.0.3.98 app/views/articles/_rss20_feed.rss.builder
typo-5.1.2 app/views/articles/_rss20_feed.rss.builder
typo-5.1.1 app/views/articles/_rss20_feed.rss.builder
typo-5.1.3 app/views/articles/_rss20_feed.rss.builder
typo-5.1 app/views/articles/_rss20_feed.rss.builder