mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -1,32 +0,0 @@
|
|||
/**
|
||||
* Used with testSearchSuggestions.
|
||||
* Returns a set of pre-defined suggestions for given prefixes.
|
||||
*/
|
||||
|
||||
function handleRequest(request, response) {
|
||||
let query = request.queryString.match(/^query=(.*)$/)[1];
|
||||
query = decodeURIComponent(query).replace(/\+/g, " ");
|
||||
|
||||
let suggestMap = {
|
||||
"f": ["facebook", "fandango", "frys", "forever 21", "fafsa"],
|
||||
"fo": ["forever 21", "food network", "fox news", "foothill college", "fox"],
|
||||
"foo": ["food network", "foothill college", "foot locker", "footloose", "foo fighters"],
|
||||
"foo ": ["foo fighters", "foo bar", "foo bat", "foo bay"],
|
||||
"foo b": ["foo bar", "foo bat", "foo bay"],
|
||||
"foo ba": ["foo bar", "foo bat", "foo bay"],
|
||||
"foo bar": ["foo bar"]
|
||||
};
|
||||
|
||||
let suggestions = suggestMap[query];
|
||||
if (!suggestions)
|
||||
suggestions = [];
|
||||
suggestions = [query, suggestions];
|
||||
|
||||
/*
|
||||
* Sample result:
|
||||
* ["foo",["food network","foothill college","foot locker",...]]
|
||||
*/
|
||||
response.setHeader("Content-Type", "text/json", false);
|
||||
response.setHeader("Cache-Control", "no-cache", false);
|
||||
response.write(JSON.stringify(suggestions));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue