Mercurial > rsstweet
annotate app/views/tweets/show.atom.erb @ 251:43cbceac80ab
Remove model test and add client test
| author | nanaya <me@nanaya.net> |
|---|---|
| date | Mon, 17 Jul 2023 20:54:04 +0900 |
| parents | 7a773720d81f |
| children | c6a50441a58d |
| 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> |
