Mercurial > rsstweet
view app/views/tweets/_tweet.atom.erb @ 254:89f6c0016bab default tip
Update to latest rails
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 03 Sep 2024 19:21:25 +0900 |
parents | 7a773720d81f |
children |
line wrap: on
line source
<entry> <% created_at = tweet[:created_at].xmlschema %> <id><%= atom_id "#{tweet[:user][:id]}/#{tweet[:id]}" %></id> <published><%= created_at %></published> <updated><%= created_at %></updated> <link rel="alternate" type="text/html" href="<%= status_url(tweet) %>"/> <title><%= truncate tweet[:message], :length => 30 %></title> <content type="html"> <%= render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }).to_str %> </content> <author> <name><%= tweet[:user][:username] %></name> </author> </entry>