MediaWiki  1.27.2
opensearch_desc.php
Go to the documentation of this file.
1 <?php
23 require_once __DIR__ . '/includes/WebStart.php';
24 
25 if ( $wgRequest->getVal( 'ctype' ) == 'application/xml' ) {
26  // Makes testing tweaks about a billion times easier
27  $ctype = 'application/xml';
28 } else {
29  $ctype = 'application/opensearchdescription+xml';
30 }
31 
32 $response = $wgRequest->response();
33 $response->header( "Content-type: $ctype" );
34 
35 // Set an Expires header so that squid can cache it for a short time
36 // Short enough so that the sysadmin barely notices when $wgSitename is changed
37 $expiryTime = 600; # 10 minutes
38 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiryTime ) . ' GMT' );
39 $response->header( 'Cache-control: max-age=600' );
40 
41 print '<?xml version="1.0"?>';
42 print Xml::openElement( 'OpenSearchDescription',
43  [
44  'xmlns' => 'http://a9.com/-/spec/opensearch/1.1/',
45  'xmlns:moz' => 'http://www.mozilla.org/2006/browser/search/' ] );
46 
47 /* The spec says the ShortName must be no longer than 16 characters,
48  * but 16 is *realllly* short. In practice, browsers don't appear to care
49  * when we give them a longer string, so we're no longer attempting to trim.
50  *
51  * Note: ShortName and the <link title=""> need to match; they are used as
52  * a key for identifying if the search engine has been added already, *and*
53  * as the display name presented to the end-user.
54  *
55  * Behavior seems about the same between Firefox and IE 7/8 here.
56  * 'Description' doesn't appear to be used by either.
57  */
58 $fullName = wfMessage( 'opensearch-desc' )->inContentLanguage()->text();
59 print Xml::element( 'ShortName', null, $fullName );
60 print Xml::element( 'Description', null, $fullName );
61 
62 // By default we'll use the site favicon.
63 // Double-check if IE supports this properly?
64 print Xml::element( 'Image',
65  [
66  'height' => 16,
67  'width' => 16,
68  'type' => 'image/x-icon' ],
70 
71 $urls = [];
72 
73 // General search template. Given an input term, this should bring up
74 // search results or a specific found page.
75 // At least Firefox and IE 7 support this.
77 $urls[] = [
78  'type' => 'text/html',
79  'method' => 'get',
80  'template' => $searchPage->getCanonicalURL( 'search={searchTerms}' ) ];
81 
82 foreach ( $wgOpenSearchTemplates as $type => $template ) {
83  if ( !$template && $wgEnableAPI ) {
85  }
86 
87  if ( $template ) {
88  $urls[] = [
89  'type' => $type,
90  'method' => 'get',
91  'template' => $template,
92  ];
93  }
94 }
95 
96 // Allow hooks to override the suggestion URL settings in a more
97 // general way than overriding the whole search engine...
98 Hooks::run( 'OpenSearchUrls', [ &$urls ] );
99 
100 foreach ( $urls as $attribs ) {
101  print Xml::element( 'Url', $attribs );
102 }
103 
104 // And for good measure, add a link to the straight search form.
105 // This is a custom format extension for Firefox, which otherwise
106 // sends you to the domain root if you hit "enter" with an empty
107 // search box.
108 print Xml::element( 'moz:SearchForm', null,
109  $searchPage->getCanonicalURL() );
110 
111 print '</OpenSearchDescription>';
$response
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:75
const PROTO_CURRENT
Definition: Defines.php:264
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping $template
Definition: hooks.txt:762
$fullName
static openElement($element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"&lt
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$expiryTime
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$searchPage
if(is_null($wgLocalTZoffset)) if(!$wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:657
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2338
static getOpenSearchTemplate($type)
Fetch the template for a type.
$wgFavicon
The URL path of the shortcut icon.