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>
|
2018-11-14 02:03:02 -05:00
|
|
|
<% site_favicon_url = SiteSetting.site_favicon_url %>
|
2019-04-30 02:58:18 -04:00
|
|
|
<% absolute_site_favicon_url = ::UrlHelper.absolute(site_favicon_url) %>
|
2018-11-14 02:03:02 -05:00
|
|
|
<% if site_favicon_url =~ /\.ico$/ -%>
|
|
|
|
<Image height="16" width="16" type="image/vnd.microsoft.icon"><%= absolute_site_favicon_url %></Image>
|
2016-09-19 22:12:43 -04:00
|
|
|
<%- else -%>
|
2018-11-14 02:03:02 -05:00
|
|
|
<Image type="image/png"><%= absolute_site_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>
|