comparison app/views/tweets/_tweet.atom.erb @ 172:df4be896ab8b

Improved escaping and truncating
author nanaya <me@nanaya.pro>
date Wed, 08 Aug 2018 20:37:29 +0900
parents 0c60db0a3686
children 70e90ea4b870
comparison
equal deleted inserted replaced
171:90db232f39e7 172:df4be896ab8b
1 <entry> 1 <entry>
2 <id><%= atom_id "#{tweet.user.id}/#{tweet.id}" %></id> 2 <id><%= atom_id "#{tweet.user.id}/#{tweet.id}" %></id>
3 <published><%= tweet.created_at.xmlschema %></published> 3 <published><%= tweet.created_at.xmlschema %></published>
4 <updated><%= tweet.created_at.xmlschema %></updated> 4 <updated><%= tweet.created_at.xmlschema %></updated>
5 <link rel="alternate" type="text/html" href="<%= tweet.uri %>"/> 5 <link rel="alternate" type="text/html" href="<%= tweet.uri %>"/>
6 <title><%= ellipsize tweet.attrs[:full_text] %></title> 6 <title><%= truncate tweet.unescaped_text, :length => 30 %></title>
7 <content type="xhtml"> 7 <content type="xhtml">
8 <div xmlns="http://www.w3.org/1999/xhtml"> 8 <div xmlns="http://www.w3.org/1999/xhtml">
9 <%= render :partial => "tweet", :formats => :html, :locals => { :tweet => tweet } %> 9 <%= render :partial => "tweet", :formats => :html, :locals => { :tweet => tweet } %>
10 </div> 10 </div>
11 </content> 11 </content>