view app/views/tweets/_tweet.atom.erb @ 237:961d362e42c7 legit-client

The url in entity media isn't unique as they all point to the same thing
author nanaya <me@nanaya.net>
date Sat, 15 Jul 2023 01:47:34 +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>