add opensearch support

This commit is contained in:
Fabio Comuni 2011-04-08 10:40:04 +02:00
commit 1713ffb41c
3 changed files with 35 additions and 0 deletions

18
mod/opensearch.php Normal file
View file

@ -0,0 +1,18 @@
<?php
function opensearch_content(&$a) {
$tpl = load_view_file('view/opensearch.tpl');
header("Content-type: application/opensearchdescription+xml");
$o = replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$nodename' => $a->get_hostname(),
));
echo $o;
killme();
}
?>