Sha256: a78de517196e515efec8224d5558ac2766b5f76482f8aa8b4ed782255ac3b1e1

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 KB

Contents

<?xml version="1.0"?>

<rss version="2.0">

  <channel>

    <title><%= title %></title>

    <% if url %><link><%= url %></link><% end %>

    <% if homepage %><link><%= homepage %></link><% end %>

    <description>Release History</description>

    <language>en-us</language>

    <pubDate><%= Time.now.rfc822 %></pubDate>

    <lastBuildDate><%= Time.now.rfc822 %></lastBuildDate>

    <docs>http://blogs.law.harvard.edu/tech/rss</docs>

    <generator>VCLog</generator>

    <managingEditor><%= email %> (<%= user %>)</managingEditor>

    <webMaster><%= email %> (<%= user %>)</webMaster>

<% releases.sort.each do |release| %>

<% tag = release.tag %>

    <item>

      <title><%= tag.name %></title>

      <author><%= tag.author %></author>

      <link><%= url %>#<%= tag.id %></link>

      <pubDate><%= tag.date.rfc822 %></pubDate>

      <guid isPermaLink="false"><%= url %>#<%= tag.id %></guid>

      <description><![CDATA[

        <p><%= tag.message %></p>

<% if !options.summary %>

<% release.groups.each do |number, changes| %>

        <h2><%= changes.size %> <%= changes[0].label %></h2>

        <ul class="log">

<% changes.sort{|a,b| b.date <=> a.date}.each do |entry| %>

          <li class="entry">
            <%= entry.message.rstrip %><br/>

            <%= entry.author %> <%= entry.date.strftime('%Y-%m-%d %H:%M:%S') %>

            <% if options.reference %>(#<%= h entry.id %>)<% end %>           
          </li>

<% end %>

        </ul>

<% end %>

<% end %>

      ]]></description>

    </item>

<% end %>

  </channel>

</rss>

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rubycut-vclog-1.9.5.1 lib/vclog/templates/history.rss.erb
rubycut-vclog-1.9.5 lib/vclog/templates/history.rss.erb
rubycut-vclog-1.9.4 lib/vclog/templates/history.rss.erb
vclog-1.9.2 lib/vclog/templates/history.rss.erb
vclog-1.9.1 lib/vclog/templates/history.rss.erb