Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android

This commit is contained in:
Matt A. Tobin 2019-04-23 15:32:23 -04:00 committed by Roy Tam
commit c9b411d6cd
3891 changed files with 0 additions and 428084 deletions

View file

@ -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));
}