/usr/share/doc/libitpp-dev/html/search-opensearch.php is in libitpp-doc 4.3.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | <script language="PHP">
require "search-functions.php";
$mode = array_key_exists('v', $_GET)?$_GET['v']:"";
$query = array_key_exists('query', $_GET)?$_GET['query']:"";
$query_results = run_query($query);
switch ($mode)
{
case "opensearch.xml":
opensearch_description();
break;
case "json":
opensearch_json_results($query, $query_results);
break;
case "xml":
opensearch_xml_results($query, $query_results);
break;
default:
invalid_format($query, $query_results);
break;
}
function opensearch_description()
{
global $config;
global $translator;
$shortname = $translator['search']." ".$config['PROJECT_NAME'];
$link = "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']);
header("Content-Type: application/xml");
echo <<<END_OPENSEARCH
<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>$shortname</ShortName>
<Description>Doxygen Search</Description>
<InputEncoding>UTF-8</InputEncoding>
<!--
<Image height="16" width="16" type="image/x-icon">
http://dev.squello.com/doc/html/favicon.ico</Image>
-->
<Url type="text/html" method="GET"
template="$link/search.php?query={searchTerms}" />
<Url type="application/x-suggestions+json" method="GET"
template="$link/search-opensearch.php?v=json&query={searchTerms}" />
<Url type="application/x-suggestions+xml" method="GET"
template="$link/search-opensearch.php?v=xml&query={searchTerms}" />
</OpenSearchDescription>
END_OPENSEARCH;
}
function opensearch_xml_results($query, array $results)
{
// Much as I hate copy'n'paste code re-use, this is for testing;
// I expect a richer version to come soon.
// Although I hate that IE does this richer than FF more...
$qs_results = array();
foreach ($results as $i => $val)
{
foreach ($val['words'] as $j => $word)
{
if (array_key_exists($word, $qs_results))
$qs_results[$word['match']]++;
else
$qs_results[$word['match']] = 1;
}
}
$result = <<<END_FRAG
<?xml version="1.0"?>
<SearchSuggestion xmlns="http://schemas.microsoft.com/Search/2008/suggestions">
<Query>$query</Query>
<Section>
END_FRAG;
foreach ($qs_results as $word => $count)
{
$result .= <<<END_FRAG
<Item>
<Text>$word</Text>
<Description>$count results</Description>
</Item>
END_FRAG;
}
$result .= <<<END_FRAG
</Section>
</SearchSuggestion>
END_FRAG;
echo $result;
}
function opensearch_json_results($query, array $results)
{
$qs_results = array();
foreach ($results as $i => $val)
{
foreach ($val['words'] as $j => $word)
{
if (array_key_exists($word, $qs_results))
$qs_results[$word['match']]++;
else
$qs_results[$word['match']] = 1;
}
}
$result = '["'.$query.'", [';
$json_words = "";
$json_descriptions = "";
$i = 0;
foreach ($qs_results as $word => $count)
{
if ($i != 0)
{
$json_words .= ", ";
$json_descriptions .= ", ";
}
$json_words .= '"'.$word.'"';
$json_descriptions .= '"'.$count.' result'.($count==1?'':'s').'"';
$i++;
}
print "[\"$query\", [$json_words],[$json_descriptions]]";
}
function invalid_format($query, array $results)
{
print "Search results for '$query':\n\n";
print_r($results);
}
</script>
|