You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
593 B

  1. Nokogiri::XML::Builder.new do |xml|
  2. xml.XRD(xmlns: 'http://docs.oasis-open.org/ns/xri/xrd-1.0') do
  3. xml.Subject @canonical_account_uri
  4. xml.Alias TagManager.instance.url_for(@account)
  5. xml.Link(rel: 'http://webfinger.net/rel/profile-page', type: 'text/html', href: TagManager.instance.url_for(@account))
  6. xml.Link(rel: 'http://schemas.google.com/g/2010#updates-from', type: 'application/atom+xml', href: account_url(@account, format: 'atom'))
  7. xml.Link(rel: 'salmon', href: api_salmon_url(@account.id))
  8. xml.Link(rel: 'magic-public-key', href: @magic_key)
  9. end
  10. end.to_xml