3 * Public RSS action class.
9 * @author Evan Prodromou <evan@status.net>
10 * @author Robin Millette <millette@status.net>
11 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12 * @link http://status.net/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU Affero General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
27 * You should have received a copy of the GNU Affero General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 if (!defined('GNUSOCIAL')) { exit(1); }
34 * RSS feed for public timeline.
36 * Formatting of RSS handled by Rss10Action
40 * @author Evan Prodromou <evan@status.net>
41 * @author Robin Millette <millette@status.net>
42 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43 * @link http://status.net/
45 class PublicrssAction extends Rss10Action
50 * @param integer $limit max number of notices to return
52 * @return array notices
54 protected function getNotices()
56 $stream = Notice::publicStream(0, $this->limit);
57 return $stream->fetchAll();
63 * @return array associative array on channel information
67 $sitename = common_config('site', 'name');
69 'url' => common_local_url('publicrss'),
70 // TRANS: Public RSS feed title. %s is the StatusNet site name.
71 'title' => sprintf(_('%s public timeline'), $sitename),
72 'link' => common_local_url('public'),
73 // TRANS: Public RSS feed description. %s is the StatusNet site name.
74 'description' => sprintf(_('%s updates from everyone.'), $sitename));
88 function isReadOnly($args)