summaryrefslogtreecommitdiff
path: root/opensearch.php
blob: b1a4eea9792a4b7acfbaa1972d34902061410b4e (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
<?php
/**
 * webtrees: Web based Family History software
 * Copyright (C) 2010 webtrees development team.
 *
 * Derived from PhpGedView
 * Copyright (C) 2009  PGV Development Team.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * @package webtrees
 * @subpackage search
 * @version $Id$
 */

define('WT_SCRIPT_NAME', 'opensearch.php');
require './includes/session.php';

header('Content-Type: application/opensearchdescription+xml; charset=utf-8');

echo '<?xml version="1.0" encoding="UTF-8" ?>';
echo '<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">';
echo '<ShortName>' . get_gedcom_setting(WT_GED_ID, 'title') . ' ' . i18n::translate('Search')  . '</ShortName>';
echo '<Description>' .  get_gedcom_setting(WT_GED_ID, 'title') . ' ' . i18n::translate('Search') . '</Description>';
echo '<InputEncoding>UTF-8</InputEncoding>';
echo '<Url type="text/html" template="' . WT_SERVER_NAME.WT_SCRIPT_PATH. 'search.php?action=general&amp;topsearch=yes&amp;query={searchTerms}"/>';
echo '<Url type="application/x-suggestions+json" template="' . WT_SERVER_NAME.WT_SCRIPT_PATH. 'autocomplete.php?limit=20&amp;field=NAME&amp;fmt=json&amp;q={searchTerms}"/>';
echo'<Image height="16" width="16" type="image/x-icon">' . WT_SERVER_NAME.WT_SCRIPT_PATH . 'favicon.ico</Image>';
echo '</OpenSearchDescription>';