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