typo and update to rfc7033 (webfinger) as well as webfinger diagnostic page

This commit is contained in:
redmatrix 2015-05-24 17:59:31 -07:00
parent d9061fd09e
commit d537fc854b
3 changed files with 15 additions and 10 deletions

View File

@ -203,9 +203,9 @@ function search_content(&$a,$update = 0, $load = false) {
}
if($tag)
$o .= '<h2>' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
$o .= '<h2>' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '</h2>';
else
$o .= '<h2>' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
$o .= '<h2>' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '</h2>';
$o .= conversation($a,$items,'search',$update,'client');

View File

@ -14,10 +14,15 @@ function webfinger_content(&$a) {
if(x($_GET,'addr')) {
$addr = trim($_GET['addr']);
if(strpos($addr,'@' !== false))
$res = webfinger($addr);
else
$res = lrdd($addr);
if(strpos($addr,'@') !== false) {
$res = webfinger_rfc7033($addr);
if(! $res)
$res = old_webfinger($addr);
}
else {
if(function_exists('lrdd'))
$res = lrdd($addr);
}
$o .= '<pre>';
$o .= str_replace("\n",'<br />',print_r($res,true));
$o .= '</pre>';

View File

@ -65,7 +65,7 @@ function wfinger_init(&$a) {
$result['aliases'] = array();
$result['properties'] = array('http://webfinger.example/ns/name' => $r[0]['channel_name']);
$result['properties'] = array('http://webfinger.net/ns/name' => $r[0]['channel_name']);
foreach($aliases as $alias)
if($alias != $resource)
@ -75,18 +75,18 @@ function wfinger_init(&$a) {
$result['links'] = array(
array(
'rel' => 'http://webfinger.example/rel/avatar',
'rel' => 'http://webfinger.net/rel/avatar',
'type' => $r[0]['xchan_photo_mimetype'],
'href' => $r[0]['xchan_photo_l']
),
array(
'rel' => 'http://webfinger.example/rel/profile-page',
'rel' => 'http://webfinger.net/rel/profile-page',
'href' => z_root() . '/profile/' . $r[0]['channel_address'],
),
array(
'rel' => 'http://webfinger.example/rel/blog',
'rel' => 'http://webfinger.net/rel/blog',
'href' => z_root() . '/channel/' . $r[0]['channel_address'],
),