Mercurial > rsstweet
diff app/views/tweets/show.atom.erb @ 106:3ad8e6d20e79
Fix atom feed compliances
- date format according to xml
- no spacing for updated tag
author | nanaya <me@myconan.net> |
---|---|
date | Sun, 16 Oct 2016 05:45:21 +0900 |
parents | 148d8c17cb79 |
children | 5075b243d7d0 |
line wrap: on
line diff
--- a/app/views/tweets/show.atom.erb Sun Oct 16 05:39:59 2016 +0900 +++ b/app/views/tweets/show.atom.erb Sun Oct 16 05:45:21 2016 +0900 @@ -8,9 +8,7 @@ <title><%= "#{@user.name} (#{@user.screen_name})" %></title> <icon><%= @user.profile_image_url_https %></icon> - <updated> - <%= @tweets.first.try(:created_at) || Time.at(0) %> - </updated> + <updated><%= (@tweets.first.try(:created_at) || Time.at(0)).xmlschema %></updated> <%= render :partial => "tweet", :collection => @tweets, :cached => true %> </feed>