94
|
1 <entry>
|
|
2 <id><%= atom_id "#{tweet.user.id}/#{tweet.id}" %></id>
|
106
|
3 <published><%= tweet.created_at.xmlschema %></published>
|
|
4 <updated><%= tweet.created_at.xmlschema %></updated>
|
94
|
5 <link rel="alternate" type="text/html" href="<%= tweet.uri %>"/>
|
172
|
6 <title><%= truncate tweet.unescaped_text, :length => 30 %></title>
|
168
|
7 <content type="xhtml">
|
|
8 <div xmlns="http://www.w3.org/1999/xhtml">
|
|
9 <%= render :partial => "tweet", :formats => :html, :locals => { :tweet => tweet } %>
|
|
10 </div>
|
94
|
11 </content>
|
|
12 <author>
|
|
13 <name><%= tweet.user.screen_name %></name>
|
|
14 </author>
|
|
15 </entry>
|