4 * Public RSS action class.
10 * @author Evan Prodromou <evan@controlyourself.ca>
11 * @author Robin Millette <millette@controlyourself.ca>
12 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
13 * @link http://laconi.ca/
15 * Laconica - a distributed open-source microblogging tool
16 * Copyright (C) 2008, 2009, Control Yourself, Inc.
18 * This program is free software: you can redistribute it and/or modify
19 * it under the terms of the GNU Affero General Public License as published by
20 * the Free Software Foundation, either version 3 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU Affero General Public License for more details.
28 * You should have received a copy of the GNU Affero General Public License
29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
32 if (!defined('LACONICA')) {
36 require_once INSTALLDIR.'/lib/rssaction.php';
39 * RSS feed for public timeline.
41 * Formatting of RSS handled by Rss10Action
45 * @author Evan Prodromou <evan@controlyourself.ca>
46 * @author Robin Millette <millette@controlyourself.ca>
47 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
48 * @link http://laconi.ca/
50 class PublicrssAction extends Rss10Action
55 * @return boolean true
65 * @param integer $limit max number of notices to return
67 * @return array notices
69 function getNotices($limit=0)
72 $notice = Notice::publicStream(0, ($limit == 0) ? 48 : $limit);
73 while ($notice->fetch()) {
74 $notices[] = clone($notice);
83 * @return array associative array on channel information
88 'url' => common_local_url('publicrss')
89 , 'title' => sprintf(_('%s Public Stream'), common_config('site', 'name'))
90 , 'link' => common_local_url('public')
91 , 'description' => sprintf(_('All updates for %s'), common_config('site', 'name')));
105 function isReadOnly($args)