trac1095 Profile page had bad alternate links for RSS and Atom feeds

This commit is contained in:
Zach Copley 2009-02-03 16:31:41 -08:00
parent 05e11ea021
commit c16ddd6775

View File

@ -170,26 +170,22 @@ class ShowstreamAction extends Action
function showFeeds() function showFeeds()
{ {
// Feeds
$this->element('link', array('rel' => 'alternate', $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('api',
array('apiaction' => 'statuses',
'method' => 'entity_timeline.rss',
'argument' => $this->user->nickname)),
'type' => 'application/rss+xml', 'type' => 'application/rss+xml',
'title' => sprintf(_('Notice feed for %s'), $this->user->nickname))); 'href' => common_local_url('userrss',
$this->element('link', array('rel' => 'alternate feed', array('nickname' => $this->user->nickname)),
'title' => sprintf(_('Notice feed for %s (RSS)'),
$this->user->nickname)));
$this->element('link',
array('rel' => 'alternate',
'href' => common_local_url('api', 'href' => common_local_url('api',
array('apiaction' => 'statuses', array('apiaction' => 'statuses',
'method' => 'entity_timeline.atom', 'method' => 'user_timeline.atom',
'argument' => $this->user->nickname)), 'argument' => $this->user->nickname)),
'type' => 'application/atom+xml', 'type' => 'application/atom+xml',
'title' => sprintf(_('Notice feed for %s'), $this->user->nickname))); 'title' => sprintf(_('Notice feed for %s (Atom)'),
$this->element('link', array('rel' => 'alternate', $this->user->nickname)));
'href' => common_local_url('userrss', array('nickname' =>
$this->user->nickname)),
'type' => 'application/rdf+xml',
'title' => sprintf(_('Notice feed for %s'), $this->user->nickname)));
} }
function extraHead() function extraHead()