2014-10-31 16:43:52 -07:00
|
|
|
/*global define*/
|
|
|
|
|
|
|
|
/**
|
2014-11-04 17:17:35 -08:00
|
|
|
* Constants used by the framework layer.
|
2014-10-31 16:43:52 -07:00
|
|
|
*/
|
|
|
|
define({
|
|
|
|
MODULE_NAME: "OpenMCTWeb",
|
|
|
|
BUNDLE_LISTING_FILE: "bundles.json",
|
2014-11-03 08:44:52 -08:00
|
|
|
BUNDLE_FILE: "bundle.json",
|
|
|
|
SEPARATOR: "/",
|
2014-11-03 13:29:59 -08:00
|
|
|
EXTENSION_SUFFIX: "[]",
|
2014-11-03 08:44:52 -08:00
|
|
|
DEFAULT_BUNDLE: {
|
|
|
|
"sources": "src",
|
|
|
|
"resources": "res",
|
2015-01-02 17:46:50 -08:00
|
|
|
"libraries": "lib",
|
|
|
|
"tests": "test",
|
|
|
|
"configuration": {},
|
2014-11-03 08:44:52 -08:00
|
|
|
"extensions": {}
|
2015-01-07 16:39:57 -08:00
|
|
|
},
|
|
|
|
PRIORITY_LEVELS: {
|
|
|
|
"fallback": Number.NEGATIVE_INFINITY,
|
|
|
|
"default": 100,
|
|
|
|
"optional": 200,
|
|
|
|
"preferred": 400,
|
|
|
|
"mandatory": Number.POSITIVE_INFINITY
|
|
|
|
},
|
|
|
|
DEFAULT_PRIORITY: 0
|
2014-10-31 16:43:52 -07:00
|
|
|
});
|