add initial bits for opensearch
Thanks @onekopaka!
This commit is contained in:
parent
483a6275ad
commit
d9f8013d16
@ -36,6 +36,9 @@ my $query = q{
|
|||||||
WHERE ports_fts MATCH ? ORDER BY rank;
|
WHERE ports_fts MATCH ? ORDER BY rank;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
my $title = "OpenBSD.app";
|
||||||
|
my $descr = "Search the OpenBSD stable packages.";
|
||||||
|
|
||||||
get '/' => sub ($c) {
|
get '/' => sub ($c) {
|
||||||
my $v = $c->validation;
|
my $v = $c->validation;
|
||||||
|
|
||||||
@ -63,7 +66,8 @@ get '/' => sub ($c) {
|
|||||||
$c->render(
|
$c->render(
|
||||||
template => 'results',
|
template => 'results',
|
||||||
search => $search,
|
search => $search,
|
||||||
results => $results
|
results => $results,
|
||||||
|
title => $title
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -73,16 +77,29 @@ get '/' => sub ($c) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
get '/openbsd-app-opensearch.xml' => sub ($c) {
|
||||||
|
$c->render(
|
||||||
|
template => 'openbsd-app-opensearch',
|
||||||
|
format => 'xml',
|
||||||
|
title => $title,
|
||||||
|
descr => $descr
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
app->start;
|
app->start;
|
||||||
__DATA__
|
__DATA__
|
||||||
@@ layouts/default.html.ep
|
@@ layouts/default.html.ep
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="">
|
<html class="no-js" lang="">
|
||||||
<head>
|
<head>
|
||||||
<title>OpenBSD.app</title>
|
<title><%= $title %></title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||||
<meta name="description" content="OpenBSD package search">
|
<meta name="description" content="OpenBSD package search">
|
||||||
|
<link
|
||||||
|
rel="search"
|
||||||
|
type="application/opensearchdescription+xml"
|
||||||
|
href="/openbsd-app-opensearch.xml" />
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Avenir, 'Open Sans', sans-serif;
|
font-family: Avenir, 'Open Sans', sans-serif;
|
||||||
@ -187,3 +204,14 @@ __DATA__
|
|||||||
@@ index.html.ep
|
@@ index.html.ep
|
||||||
% layout 'default';
|
% layout 'default';
|
||||||
Welcome! Default search queries OpenBSD 7.2 package sets. You can search -current (packages from 2022-09-23) by toggling the '-current' checkbox.
|
Welcome! Default search queries OpenBSD 7.2 package sets. You can search -current (packages from 2022-09-23) by toggling the '-current' checkbox.
|
||||||
|
|
||||||
|
@@ openbsd-app-opensearch.xml.ep
|
||||||
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
|
||||||
|
xmlns:moz="http://www.mozilla.org/2006/browser/search/">
|
||||||
|
<ShortName><%= $title %></ShortName>
|
||||||
|
<Description><%= $descr %></Description>
|
||||||
|
<InputEncoding>UTF-8</InputEncoding>
|
||||||
|
<Image width="32" height="32" type="image/x-icon">https://openbsd.org/favicon.ico</Image>
|
||||||
|
<Url type="text/html" template="https://openbsd.app/?search={searchTerms}"/>
|
||||||
|
<moz:SearchForm>https://openbsd.app/</moz:SearchForm>
|
||||||
|
</OpenSearchDescription>
|
||||||
|
Loading…
Reference in New Issue
Block a user