aboutsummaryrefslogtreecommitdiffstats
path: root/mod/rsd_xml.php
blob: 5bf4663fd5f3a78433d883971a61030c4c622ea4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php



function rsd_xml_content(&$a) {
	header ("Content-Type: text/xml");
	echo '<?xml version="1.0" encoding="UTF-8"?>
 <rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd">
   <service>
     <engineName>Friendika</engineName>
     <engineLink>http://friendika.com/</engineLink>
     <apis>
       <api name="Twitter" preferred="true" apiLink="'.$a->get_baseurl().'/api/" blogID="">
         <settings>
           <docs>http://status.net/wiki/TwitterCompatibleAPI</docs>
           <setting name="OAuth">false</setting>
         </settings>
       </api>
     </apis>
   </service>
 </rsd>
	';
die();
}