diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-09 18:32:52 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-09 18:32:52 -0800 |
commit | 8449256817f5a2bd7a7cac6bc04e4cb477d7dc49 (patch) | |
tree | a975ae92a53a0cb23291f9e97f61306361db73fa /actions/showgroup.php | |
parent | 5509f923ea48aecd1422aa1a4173fc85938e2b74 (diff) |
OStatus partial support for group subscriptions:
* detection of group feeds is currently a nasty hack based on presence of '/groups/' in URL -- should use some property on the feed?
* listing for the remote group is kinda cruddy; needs to be named more cleanly
* still need to establish per-author profiles (easier once we have the updated Atom code in)
* group delivery probably not right yet
* saving of group messages still triggering some weird behavior
Added support for since_id and max_id on group timeline feeds as a free extra. Enjoy!
Diffstat (limited to 'actions/showgroup.php')
-rw-r--r-- | actions/showgroup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showgroup.php b/actions/showgroup.php index 8042a4951..eb1238902 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -330,13 +330,13 @@ class ShowgroupAction extends GroupDesignAction new Feed(Feed::RSS2, common_local_url('ApiTimelineGroup', array('format' => 'rss', - 'id' => $this->group->nickname)), + 'id' => $this->group->id)), sprintf(_('Notice feed for %s group (RSS 2.0)'), $this->group->nickname)), new Feed(Feed::ATOM, common_local_url('ApiTimelineGroup', array('format' => 'atom', - 'id' => $this->group->nickname)), + 'id' => $this->group->id)), sprintf(_('Notice feed for %s group (Atom)'), $this->group->nickname)), new Feed(Feed::FOAF, |