Changesets can be listed by changeset number.
The Git repository is here.
Changeset 429
By request, remove redundant author and time information from the
text title of an RSS feed item in the 'recent posts' feed for the
forum. The author and time are available in other fields anyway.
This should help out newsreaders that guess at threading based on
title strings.
- Comitted by: rool
- Date: Friday November 18 12:17:01 2011 (over 12 years ago)
Affected files:
rool/rails/beast/trunk/app/views/layouts/_post.rxml:
prev. | current | |
xm.item do | ||
2 | | |
2 | xm.title "#{h(post.respond_to?(:topic_title) ? post.topic_title : post.topic.title)}" | |
xm.description post.body_html | ||
xm.pubDate post.created_at.rfc822 | ||
xm.guid [request.host_with_port, post.forum_id.to_s, post.topic_id.to_s, post.id.to_s].join(":"), "isPermaLink" => "false" | ||
6 | | |
6 | xm.author "#{h(post.user.display_name)}" | |
xm.link topic_url(post.forum_id, post.topic_id) | ||
end |