3 * Public XRDS for OpenID
9 * @author Evan Prodromou <evan@status.net>
10 * @author Craig Andrews <candrews@integralblue.com>
11 * @author Robin Millette <millette@status.net>
12 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
13 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
14 * @link http://status.net/
16 * StatusNet - the distributed open-source microblogging tool
17 * Copyright (C) 2008, 2009, StatusNet, Inc.
19 * This program is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU Affero General Public License as published by
21 * the Free Software Foundation, either version 3 of the License, or
22 * (at your option) any later version.
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU Affero General Public License for more details.
29 * You should have received a copy of the GNU Affero General Public License
30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
33 if (!defined('STATUSNET') && !defined('LACONICA')) {
37 require_once INSTALLDIR.'/plugins/OpenID/openid.php';
38 require_once INSTALLDIR.'/lib/xrdsoutputter.php';
45 * @author Evan Prodromou <evan@status.net>
46 * @author Robin Millette <millette@status.net>
47 * @author Craig Andrews <candrews@integralblue.com>
48 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
49 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
50 * @link http://status.net/
52 * @todo factor out similarities with XrdsAction
54 class PublicxrdsAction extends Action
59 * @return boolean true
61 function isReadOnly($args)
69 * @param array $args array of arguments
73 function handle($args)
75 parent::handle($args);
76 $xrdsOutputter = new XRDSOutputter();
77 $xrdsOutputter->startXRDS();
78 Event::handle('StartPublicXRDS', array($this,&$xrdsOutputter));
79 Event::handle('EndPublicXRDS', array($this,&$xrdsOutputter));
80 $xrdsOutputter->endXRDS();