fix Atom link, add Atom and RSS 2.0 to <head>
This commit is contained in:
parent
27e23f2dd3
commit
ad65c447d5
|
@ -123,8 +123,20 @@ class PublicAction extends Action
|
||||||
{
|
{
|
||||||
$this->element('link', array('rel' => 'alternate',
|
$this->element('link', array('rel' => 'alternate',
|
||||||
'href' => common_local_url('publicrss'),
|
'href' => common_local_url('publicrss'),
|
||||||
|
'type' => 'application/rdf+xml',
|
||||||
|
'title' => _('Public Stream Feed (RSS 1.0)')));
|
||||||
|
$this->element('link', array('rel' => 'alternate',
|
||||||
|
'href' => common_local_url('api',
|
||||||
|
array('apiaction' => 'statuses',
|
||||||
|
'method' => 'public_timeline.rss')),
|
||||||
'type' => 'application/rss+xml',
|
'type' => 'application/rss+xml',
|
||||||
'title' => _('Public Stream Feed')));
|
'title' => _('Public Stream Feed (RSS 2.0)')));
|
||||||
|
$this->element('link', array('rel' => 'alternate',
|
||||||
|
'href' => common_local_url('api',
|
||||||
|
array('apiaction' => 'statuses',
|
||||||
|
'method' => 'public_timeline.atom')),
|
||||||
|
'type' => 'application/atom+xml',
|
||||||
|
'title' => _('Public Stream Feed (Atom)')));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -200,7 +212,9 @@ class PublicAction extends Action
|
||||||
'type' => 'rss',
|
'type' => 'rss',
|
||||||
'version' => 'RSS 1.0',
|
'version' => 'RSS 1.0',
|
||||||
'item' => 'publicrss'),
|
'item' => 'publicrss'),
|
||||||
1 => array('href' => common_local_url('publicatom'),
|
1 => array('href' => common_local_url('api',
|
||||||
|
array('apiaction' => 'statuses',
|
||||||
|
'method' => 'public_timeline.atom')),
|
||||||
'type' => 'atom',
|
'type' => 'atom',
|
||||||
'version' => 'Atom 1.0',
|
'version' => 'Atom 1.0',
|
||||||
'item' => 'publicatom')));
|
'item' => 'publicatom')));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user