2016-09-19 22:12:43 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-02-13 13:29:53 -05:00
|
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
2016-09-19 22:12:43 -04:00
|
|
|
<ShortName><%= SiteSetting.title %> Search</ShortName>
|
|
|
|
<Description>Search for posts on <%= SiteSetting.title %></Description>
|
|
|
|
<Tags>discourse forum</Tags>
|
|
|
|
<% if SiteSetting.favicon_url =~ /\.ico$/ -%>
|
2016-02-13 13:29:53 -05:00
|
|
|
<Image height="16" width="16" type="image/vnd.microsoft.icon"><%= UrlHelper.absolute SiteSetting.favicon_url %></Image>
|
2016-09-19 22:12:43 -04:00
|
|
|
<%- else -%>
|
2016-02-13 13:29:53 -05:00
|
|
|
<Image type="image/png"><%= UrlHelper.absolute SiteSetting.favicon_url %></Image>
|
2016-09-19 22:12:43 -04:00
|
|
|
<%- end %>
|
2016-09-19 22:25:54 -04:00
|
|
|
<Url type="application/opensearchdescription+xml" rel="self" template="<%= Discourse.base_url %>/opensearch.xml"/>
|
|
|
|
<Url type="text/html" template="<%= Discourse.base_url %>/search?q={searchTerms}"/>
|
2016-09-19 22:12:43 -04:00
|
|
|
<Query role="example" searchTerms="search term"/>
|
2016-02-13 13:29:53 -05:00
|
|
|
</OpenSearchDescription>
|