2 // This file contains the installation specific values for QuickSearch.
3 // See quicksearch.js for more details.
6 // the global bugzilla url
9 //var bugzilla = "http://bugzilla.mozilla.org/";
11 // Status and Resolution
12 // ---------------------
14 var statuses_open
= new Array("UNCONFIRMED","NEW","ASSIGNED","REOPENED");
15 var statuses_resolved
= new Array("RESOLVED","VERIFIED","CLOSED");
16 var resolutions
= new Array("FIXED","INVALID","WONTFIX","LATER",
17 "REMIND","DUPLICATE","WORKSFORME","MOVED");
22 // Enumerate all your keywords here. This is necessary to avoid
23 // "foo is not a legal keyword" errors. This makes it possible
24 // to include the keywords field in the search by default.
26 var keywords
= new Array(
27 // "foo", "bar", "baz"
33 // A list of words <w> (substrings of platform values)
34 // that will automatically be translated to "platform:<w>"
35 // E.g. if "mac" is defined as a platform, then searching
36 // for it will find all bugs with platform="Macintosh",
37 // but no other bugs with e.g. "mac" in the summary.
39 var platforms
= new Array(
40 "pc","sun","macintosh","mac" //shortcut added
42 //,"all" //this is a legal value for OpSys, too :(
49 // A list of words <w> (substrings of severity values)
50 // that will automatically be translated to "severity:<w>"
51 // E.g with this default set of severities, searching for
52 // "blo,cri,maj" will find all severe bugs.
54 var severities
= new Array("blo","cri","maj","nor","min","tri","enh");
56 // Products and Components
57 // -----------------------
59 // It is not necessary to list all products and components here.
60 // Instead, you can define a "blacklist" for some commonly used
61 // words or word fragments that occur in a product or component name
62 // but should _not_ trigger product/component search.
64 var product_exceptions
= new Array(
71 var component_exceptions
= new Array(
72 "hang" // [mozilla.org] Bugzilla: Component/Keyword Changes