about summary refs log tree commit diff
path: root/app/views/accounts/show.atom.ruby
diff options
context:
space:
mode:
authorShel R <Yiskah.Raphen@gmail.com>2017-04-07 23:08:41 -0400
committerGitHub <noreply@github.com>2017-04-07 23:08:41 -0400
commit315ff648c8ab9f3bb34e2b6b1f77453159e260c4 (patch)
treeb3793cec5458e83ad0d7053d7f85a174d05a5523 /app/views/accounts/show.atom.ruby
parent94536af96d9884e2acb2c34d0cf8948b1de7dd5d (diff)
parent41923d1c6ba28df6652aefd9619acc33a5cf467a (diff)
Merge branch 'master' into list-oulipo-social
Diffstat (limited to 'app/views/accounts/show.atom.ruby')
-rw-r--r--app/views/accounts/show.atom.ruby27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/views/accounts/show.atom.ruby b/app/views/accounts/show.atom.ruby
deleted file mode 100644
index e15021178..000000000
--- a/app/views/accounts/show.atom.ruby
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-Nokogiri::XML::Builder.new do |xml|
-  feed(xml) do
-    simple_id  xml, account_url(@account, format: 'atom')
-    title      xml, @account.display_name
-    subtitle   xml, @account.note
-    updated_at xml, stream_updated_at
-    logo       xml, full_asset_url(@account.avatar.url(:original))
-
-    author(xml) do
-      include_author xml, @account
-    end
-
-    link_alternate xml, TagManager.instance.url_for(@account)
-    link_self      xml, account_url(@account, format: 'atom')
-    link_next      xml, account_url(@account, format: 'atom', max_id: @entries.last.id) if @entries.size == 20
-    link_hub       xml, api_push_url
-    link_salmon    xml, api_salmon_url(@account.id)
-
-    @entries.each do |stream_entry|
-      entry(xml, false) do
-        include_entry xml, stream_entry
-      end
-    end
-  end
-end.to_xml