1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
//
// 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(
"4xp"
,"64bit"
,"access"
,"approval"
,"arch"
,"classic"
,"compat"
,"crash"
,"css-moz"
,"css1"
,"css2"
,"css3"
,"dataloss"
,"dom0"
,"dom1"
,"dom2"
,"ecommerce"
,"embed"
,"fcc508"
,"fonts"
,"footprint"
,"hang"
,"helpwanted"
,"highrisk"
,"html4"
,"interop"
,"intl"
,"js1.5"
,"l12y"
,"mail1"
,"mail2"
,"mail3"
,"mail4"
,"mail5"
,"mail6"
,"mailtrack"
,"meta"
,"mlk"
,"modern"
,"mozilla0.9.3"
,"mozilla0.9.4"
,"mozilla0.9.5"
,"mozilla0.9.6"
,"mozilla0.9.7"
,"mozilla1.0"
,"mozilla1.0.1"
,"mozilla1.1"
,"mozilla1.2"
,"nsbeta1"
,"nsbeta1+"
,"nsbeta1-"
,"nsbeta2"
,"nsbeta3"
,"nsbranch"
,"nsbranch+"
,"nsbranch-"
,"nsCatFood"
,"nsCatFood+"
,"nsCatFood-"
,"nsdogfood"
,"nsdogfood+"
,"nsdogfood-"
,"nsenterprise"
,"nsenterprise+"
,"nsenterprise-"
,"nsmac1"
,"nsmac2"
,"nsonly"
,"nsrtm"
,"oeone"
,"patch"
,"perf"
,"polish"
,"pp"
,"privacy"
,"qawanted"
,"realplayer"
,"regression"
,"relnote"
,"relnote2"
,"relnote3"
,"relnoteRTM"
,"review"
,"shockwave"
,"smoketest"
,"stackwanted"
,"testcase"
,"top100"
,"topcrash"
,"topembed"
,"topmlk"
,"topperf"
,"ui"
,"useless-UI"
,"vbranch"
,"verifyme"
,"vtrunk"
,"xhtml"
);
// Platforms
// =========
//
// A list of words <w> (substrings of platform values)
// that will automatically be translated to "platform:<w>"
// 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(//"all", //this is a legal value for OpSys, too :(
"dec","hp","mac", //shortcut added
"macintosh","pc","sgi","sun");
// Severities
// ==========
//
// A list of words <w> (substrings of severity values)
// that will automatically be translated to "severity:<w>"
// 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
// ^^^^
);
|