2016-02-22 16:00:20 +01:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
2016-02-23 13:08:01 +01:00
|
|
|
feed(xml) do
|
2016-02-29 19:42:08 +01:00
|
|
|
simple_id xml, account_url(@account, format: 'atom')
|
2016-02-23 13:08:01 +01:00
|
|
|
title xml, @account.display_name
|
|
|
|
subtitle xml, @account.note
|
|
|
|
updated_at xml, stream_updated_at
|
2016-09-04 14:04:26 +02:00
|
|
|
logo xml, full_asset_url(@account.avatar.url(:medium, false))
|
2016-02-23 13:08:01 +01:00
|
|
|
|
|
|
|
author(xml) do
|
2016-02-23 19:17:37 +01:00
|
|
|
include_author xml, @account
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|
|
|
|
|
2016-09-09 20:04:34 +02:00
|
|
|
link_alternate xml, TagManager.instance.url_for(@account)
|
2016-02-29 19:42:08 +01:00
|
|
|
link_self xml, account_url(@account, format: 'atom')
|
2016-02-29 20:06:39 +01:00
|
|
|
link_hub xml, Rails.configuration.x.hub_url
|
2016-02-29 19:42:08 +01:00
|
|
|
link_salmon xml, api_salmon_url(@account.id)
|
2016-02-22 16:00:20 +01:00
|
|
|
|
2016-03-24 12:49:34 +01:00
|
|
|
@entries.each do |stream_entry|
|
2016-02-23 13:08:01 +01:00
|
|
|
entry(xml, false) do
|
2016-02-23 19:17:37 +01:00
|
|
|
include_entry xml, stream_entry
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end.to_xml
|