Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 429
- Log:
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.
- Author:
- rool
- Date:
- Fri Nov 18 12:17:01 +0000 2011
- Size:
- 389 Bytes
1 | xm.item do |
2 | xm.title "#{h(post.respond_to?(:topic_title) ? post.topic_title : post.topic.title)}" |
3 | xm.description post.body_html |
4 | xm.pubDate post.created_at.rfc822 |
5 | xm.guid [request.host_with_port, post.forum_id.to_s, post.topic_id.to_s, post.id.to_s].join(":"), "isPermaLink" => "false" |
6 | xm.author "#{h(post.user.display_name)}" |
7 | xm.link topic_url(post.forum_id, post.topic_id) |
8 | end |