3 * StatusNet, the distributed open-source microblogging tool
5 * Low-level generator for HTML
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Craig Andrews <candrews@integralblue.com>
25 * @copyright 2008 StatusNet, Inc.
26 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/xmloutputter.php';
38 * Low-level generator for XRDS XML
42 * @author Craig Andrews <candrews@integralblue.com>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
49 class XRDSOutputter extends XMLOutputter
51 public function startXRDS()
53 header('Content-Type: application/xrds+xml');
55 $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
58 public function endXRDS()
60 $this->elementEnd('XRDS');
67 * @param string $type XRDS type
68 * @param string $uri URI
69 * @param array $params type parameters, null by default
70 * @param array $sigs type signatures, null by default
71 * @param string $localId local ID, null by default
75 function showXrdsService($type, $uri, $params=null, $sigs=null, $localId=null)
77 $this->elementStart('Service');
79 $this->element('URI', null, $uri);
81 $this->element('Type', null, $type);
83 foreach ($params as $param) {
84 $this->element('Type', null, $param);
88 foreach ($sigs as $sig) {
89 $this->element('Type', null, $sig);
93 $this->element('LocalID', null, $localId);
95 $this->elementEnd('Service');