1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?xml version="1.0"?>
<xrds:XRDS
xmlns="xri://$xrd*($v*2.0)"
xmlns:xrds="xri://$xrds"
xmlns:openid="http://openid.net/xmlns/1.0"
xmlns:tal="http://xml.zope.org/namespaces/tal">
<XRD>
<Service priority="0">
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI tal:content="view/openid_server_url">
https://login.launchpad.net/+openid
</URI>
<LocalID tal:content="view/openid_identity_url">
https://login.launchpad.net/+id/xxx
</LocalID>
</Service>
<Service priority="1">
<Type>http://openid.net/signon/1.1</Type>
<URI tal:content="view/openid_server_url">
https://login.launchpad.net/+openid
</URI>
<openid:Delegate tal:content="view/openid_identity_url">
https://login.launchpad.net/+id/xxx
</openid:Delegate>
</Service>
<Service priority="2">
<Type>http://openid.net/signon/1.0</Type>
<URI tal:content="view/openid_server_url">
https://login.launchpad.net/+openid
</URI>
<openid:Delegate tal:content="view/openid_identity_url">
https://login.launchpad.net/+id/xxx
</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
|