Mercurial > rsstweet
annotate app/views/tweets/show.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 |
rev | line source |
---|---|
94 | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom"> | |
234 | 3 <id><%= atom_id(@user[:id]) %></id> |
94 | 4 |
234 | 5 <link rel="alternate" type="text/html" href="https://twitter.com/<%= @user[:username] %>" /> |
94 | 6 <link rel="self" type="application/atom+xml" href="<%= request.url %>" /> |
7 | |
234 | 8 <title><%= "#{@user[:name].printable} (#{@user[:username]})" %></title> |
9 <icon><%= @user[:avatar_url] %></icon> | |
10 <logo><%= @user[:avatar_url] %></logo> | |
95 | 11 |
234 | 12 <updated><%= (@tweets.first.try(:[], :created_at) || Time.at(0)).xmlschema %></updated> |
94 | 13 |
96
148d8c17cb79
Less monkeypatching rails, more monkeypatching tweet
nanaya <me@myconan.net>
parents:
95
diff
changeset
|
14 <%= render :partial => "tweet", :collection => @tweets, :cached => true %> |
94 | 15 </feed> |