webmcp

view framework/env/auth/openid/xrds_document.lua @ 23:3a6fe8663b26

Code cleanup and documentation added; Year in copyright notice changed to 2009-2010

Details:
- Changed quoting style in auth.openid.xrds_document{...}
- Fixed documentation for auth.openid.initiate{...}
- Added documentation for mondelefant
- Code-cleanup in mondelefant:
-- removed unneccessary lines "rows = PQntuples(res); cols = PQnfields(res);"
-- avoided extra copy of first argument (self) in mondelefant_conn_query
-- no rawget in meta-method "__index" of database result lists and objects
-- removed unreachable "return 0;" in meta-method "__newindex" of database result lists and objects
- Year in copyright notice changed to 2009-2010
- Version string changed to "1.1.1"
author jbe
date Fri Jun 04 19:00:34 2010 +0200 (2010-06-04)
parents 47ddf0f86009
children
line source
1 --[[--
2 auth.openid.xrds_document{
3 return_to_module = return_to_module,
4 return_to_view = return_to_view
5 }
7 This function returns an XRDS document with Content-Type
8 application/xrds+xml. For more information see documentation on
9 auth.openid.xrds_document{...}.
11 --]]--
13 function auth.openid.xrds_document(args)
14 slot.set_layout(nil, "application/xrds+xml")
15 slot.put_into("data",
16 '<?xml version="1.0" encoding="UTF-8"?>\n',
17 '<xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)">\n',
18 ' <XRD>\n',
19 ' <Service>\n',
20 ' <Type>http://specs.openid.net/auth/2.0/return_to</Type>\n',
21 ' <URI>',
22 encode.url{
23 base = request.get_absolute_baseurl(),
24 module = args.return_to_module,
25 view = args.return_to_view
26 },
27 '</URI>\n',
28 ' </Service>\n',
29 ' </XRD>\n',
30 '</xrds:XRDS>\n'
31 )
32 end

Impressum / About Us