view app/views/tweets/show.atom.erb @ 234:7a773720d81f legit-client

Totally legit client
author nanaya <me@nanaya.net>
date Fri, 14 Jul 2023 22:42:20 +0900
parents bef9b0c1d273
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>