// // This file contains installation specific values for third-party clients. // // Note: this interface is experimental and under development. // We may and probably will make breaking changes to it in the future. // the global bugzilla url var installation = { base_url : 'http:\/\/bugzilla.label.pl\/', install_version : '5.0.1', maintainer : 'mk\x40label.pl' }; // Status and Resolution // ===================== var status = [ ]; var status_open = [ ]; var status_closed = [ ]; var resolution = [ ]; // Keywords // ======== var keyword = [ ]; var keyword_descs = [ ]; // Platforms // ========= var platform = [ ]; // Severities // ========== var severity = [ ]; // Custom Fields // ============= // 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. // A list of all products and their components, versions, and target milestones: var component = new Object(); var version = new Object(); var target_milestone = new Object(); // Product and Component Exceptions // ================================ // // 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 in QuickSearch. var product_exceptions = new Array( // Example: //"row" // [Browser] // // ^^^ //,"new" // [MailNews] // // ^^^ ); var component_exceptions = new Array( // Example: //"hang" // [mozilla.org] Bugzilla: Component/Keyword Changes // // ^^^^ ); // Queryable Fields // ================ var field = [ ]; // Deprecated Variables // ==================== // // Other names for various variables. These are deprecated // and could go away at any time. Use them at your own risk! var bugzilla = installation.base_url; var statuses = status; var statuses_resolved = status_closed; var resolutions = resolution; var keywords = keyword; var platforms = platform; var severities = severity; var cpts = component; var vers = version; var tms = target_milestone;