Add OpenSearch support (/opensearch.xml).
Add https://danbooru.donmai.us/opensearch.xml. This file tells browsers how to perform searches on Danbooru. In Chrome, this lets you type "danb<tab>" in the address bar to perform a search on Danbooru. In Firefox, you have to click the "..." icon next to the address bar, then choose "Add Search Engine". After that, you can search Danbooru from the address bar. Ref: * http://dev.chromium.org/tab-to-search * https://developer.mozilla.org/en-US/docs/Web/OpenSearch * https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md * https://en.wikipedia.org/wiki/OpenSearch
This commit is contained in:
@@ -13,6 +13,9 @@ class StaticController < ApplicationController
|
||||
redirect_to wiki_page_path("help:dtext") unless request.format.js?
|
||||
end
|
||||
|
||||
def opensearch
|
||||
end
|
||||
|
||||
def site_map
|
||||
end
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<%= render "meta_links", collection: @current_item %>
|
||||
<%= tag.link rel: "canonical", href: canonical_url %>
|
||||
<%= tag.link rel: "search", type: "application/opensearchdescription+xml", href: opensearch_url(format: :xml, version: 1), title: "Search posts" %>
|
||||
|
||||
<%= csrf_meta_tag %>
|
||||
<% unless CurrentUser.enable_desktop_mode? %>
|
||||
|
||||
7
app/views/static/opensearch.xml.erb
Normal file
7
app/views/static/opensearch.xml.erb
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<ShortName><%= Danbooru.config.app_name %></ShortName>
|
||||
<Description><%= Danbooru.config.app_name %> search</Description>
|
||||
<Image height="16" width="16" type="image/x-icon"><%= root_url %>favicon.ico</Image>
|
||||
<Url type="text/html" template="<%= posts_url %>?tags={searchTerms}&utm_source=opensearch"/>
|
||||
</OpenSearchDescription>
|
||||
Reference in New Issue
Block a user