Mercurial > rsstweet
annotate app/views/tweets/show.atom.erb @ 140:bef9b0c1d273
Ensure printable name everywhere
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 13 Dec 2017 04:22:11 +0900 |
parents | ee5876dd9b45 |
children | 7a773720d81f |
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"> | |
95 | 3 <id><%= atom_id(@user.id) %></id> |
94 | 4 |
139 | 5 <link rel="alternate" type="text/html" href="https://twitter.com/<%= @user.screen_name %>" /> |
94 | 6 <link rel="self" type="application/atom+xml" href="<%= request.url %>" /> |
7 | |
140 | 8 <title><%= "#{@user.name.printable} (#{@user.screen_name})" %></title> |
95 | 9 <icon><%= @user.profile_image_url_https %></icon> |
122 | 10 <logo><%= @user.profile_image_url_https %></logo> |
95 | 11 |
106 | 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> |