From f4966aeb0e7a655c986aeb285c1a220274ddbfd9 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 22 Aug 2005 01:16:40 +0000 Subject: Bug 70907: QuickSearch: port the JS code to perl (make it server-side) - Patch by Marc Schumann r=wicked a=myk --- localconfig.js | 75 ---------------------------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 localconfig.js (limited to 'localconfig.js') diff --git a/localconfig.js b/localconfig.js deleted file mode 100644 index 2cbe6f24f..000000000 --- a/localconfig.js +++ /dev/null @@ -1,75 +0,0 @@ -// -// This file contains the installation specific values for QuickSearch. -// See quicksearch.js for more details. -// - -// the global bugzilla url - -var bugzilla = ""; -//var bugzilla = "http://bugzilla.mozilla.org/"; - -// Status and Resolution -// --------------------- - -var statuses_open = new Array("UNCONFIRMED","NEW","ASSIGNED","REOPENED"); -var statuses_resolved = new Array("RESOLVED","VERIFIED","CLOSED"); -var resolutions = new Array("FIXED","INVALID","WONTFIX","LATER", - "REMIND","DUPLICATE","WORKSFORME","MOVED"); - -// Keywords -// -------- -// -// Enumerate all your keywords here. This is necessary to avoid -// "foo is not a legal keyword" errors. This makes it possible -// to include the keywords field in the search by default. - -var keywords = new Array( -// "foo", "bar", "baz" -); - -// Platforms -// --------- -// -// A list of words (substrings of platform values) -// that will automatically be translated to "platform:" -// E.g. if "mac" is defined as a platform, then searching -// for it will find all bugs with platform="Macintosh", -// but no other bugs with e.g. "mac" in the summary. - -var platforms = new Array( -"pc","sun","macintosh","mac" //shortcut added -//,"dec","hp","sgi" -//,"all" //this is a legal value for OpSys, too :( -//,"other" -); - -// Severities -// ---------- -// -// A list of words (substrings of severity values) -// that will automatically be translated to "severity:" -// E.g with this default set of severities, searching for -// "blo,cri,maj" will find all severe bugs. - -var severities = new Array("blo","cri","maj","nor","min","tri","enh"); - -// Products and Components -// ----------------------- -// -// It is not necessary to list all products and components here. -// Instead, you can define a "blacklist" for some commonly used -// words or word fragments that occur in a product or component name -// but should _not_ trigger product/component search. - -var product_exceptions = new Array( -"row" // [Browser] - // ^^^ -,"new" // [MailNews] - // ^^^ -); - -var component_exceptions = new Array( -"hang" // [mozilla.org] Bugzilla: Component/Keyword Changes - // ^^^^ -); - -- cgit v1.2.3-24-g4f1b