Specification in Panzer draft for Salmon, paragraph 3.3 mentions:
"The 'salmon' link relation may specify a Salmon endpoint used to notify
a resource, typically a user account, about external mentions of that
resource. For a user account, the salmon mention link SHOULD appear in
the Webfinger [Webfinger] XRD document for the user account."
Source:
http://salmon-protocol.googlecode.com/svn/trunk/draft-panzer-salmon-00.html#SMLR
14 lines
912 B
Text
14 lines
912 B
Text
<?xml version="1.0" encoding="UTF-8"?>
|
|
<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">
|
|
<Subject>acct:<%=@person.diaspora_handle%></Subject>
|
|
<Alias>"<%= @person.url %>"</Alias>
|
|
<Link rel="http://microformats.org/profile/hcard" type="text/html" href="<%=@person.url%>hcard/users/<%=@person.guid%>"/>
|
|
<Link rel="http://joindiaspora.com/seed_location" type = 'text/html' href="<%=@person.url%>"/>
|
|
<Link rel="http://joindiaspora.com/guid" type = 'text/html' href="<%=@person.guid%>"/>
|
|
|
|
<Link rel='http://webfinger.net/rel/profile-page' type='text/html' <%=person_href(@person, :absolute => true)%>/>
|
|
<Link rel="http://schemas.google.com/g/2010#updates-from" type="application/atom+xml" href="<%=@person.public_url%>.atom"/>
|
|
<Link rel="salmon" href="<%= @person.receive_url %>"/>
|
|
|
|
<Link rel="diaspora-public-key" type = 'RSA' href="<%=Base64.strict_encode64(@person.exported_key)%>"/>
|
|
</XRD>
|