Mercurial > rsstweet
view app/views/tweets/show.atom.erb @ 240:c454ea4f7b34 legit-client
Add support for note tweets (with no formatting)
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 15 Jul 2023 03:24:56 +0900 |
parents | 7a773720d81f |
children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom"> <id><%= atom_id(@user[:id]) %></id> <link rel="alternate" type="text/html" href="https://twitter.com/<%= @user[:username] %>" /> <link rel="self" type="application/atom+xml" href="<%= request.url %>" /> <title><%= "#{@user[:name].printable} (#{@user[:username]})" %></title> <icon><%= @user[:avatar_url] %></icon> <logo><%= @user[:avatar_url] %></logo> <updated><%= (@tweets.first.try(:[], :created_at) || Time.at(0)).xmlschema %></updated> <%= render :partial => "tweet", :collection => @tweets, :cached => true %> </feed>