blob: 52aa8854c79b515543d99aeb78fa21ef205e5c42 (
plain)
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
|
<?php
global $OPEN_SEARCH_COUNT;
header("Content-Type: application/rss+xml");
// allow caching as required by stupid MS products for https feeds.
header('Pragma: public', TRUE);
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
// Set title
$search_terms = get_input('q');
$title = $vars['config']->sitename;
$title .= " Search: $search_terms";
$description = "Search results for \"$search_terms\"";
// Remove viewtype from URL
$search_url = str_replace('&view=opensearch_rss','', full_url());
$os_url = "{$vars['url']}pg/opensearch/osd.xml";
?>
<rss version="2.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><?php echo $title; ?></title>
<link><?php echo $search_url; ?></link>
<description><?php echo $description; ?></description>
<opensearch:totalResults><?php echo $OPEN_SEARCH_COUNT; ?></opensearch:totalResults>
<opensearch:startIndex>1</opensearch:startIndex>
<opensearch:itemsPerPage>10</opensearch:itemsPerPage>
<atom:link rel="search" type="application/opensearchdescription+xml" href="<?php echo $os_url; ?>"/>
<opensearch:Query role="request" searchTerms="<?php echo $search_terms; ?>" startPage="1" />
<?php
echo $vars['body'];
?>
</channel>
</rss>
|