/usr/share/javascript/dojox/dojox.profile.js is in libjs-dojo-dojox 1.10.2+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | var profile = (function(){
var testResourceRe = /\/tests\//,
copyOnly = function(filename, mid){
var list = {
"dojox/dojox.profile":1,
"dojox/package.json":1,
"dojox/mobile/themes/utils/compile":1,
"dojox/mobile/themes/utils/cleanup":1,
"dojox/app/tests/layoutApp/build.profile": 1,
"dojox/app/tests/globalizedApp/build.profile": 1
};
return (mid in list) || /^dojox\/resources\//.test(mid) || /(png|jpg|jpeg|gif|tiff)$/.test(filename) || /dojox\/app\/build\//.test(mid);
},
excludes = [
"secure",
"data/(demos|ItemExplorer|StoreExplorer|restListener)",
"drawing/plugins/drawing/Silverlight",
"editor/plugins/(ResizeTableColumn|SpellCheck)",
"embed/(IE)",
"flash/_base",
"help",
"image/(Gallery|SlideShow|ThumbnailPicker)",
"jq",
"jsonPath/query",
"lang/(aspect|async|docs|observable|oo|typed|functional/(binrec|curry|linrec|listcomp|multirec|numrec|tailrec|util|zip))",
"layout/(BorderContainer|dnd|ext-dijit)",
"mobile/app/",
"rails",
"robot",
"socket/Reconnect",
"sql/",
"storage/",
"widget/(AnalogGauge|BarGauge|DataPresentation|DocTester|DynamicTooltip|FeedPortlet|FilePicker|gauge|Iterator|Loader|RollingList|SortList)",
"wire/",
"xmpp"
],
excludesRe = new RegExp(("^dojox/(" + excludes.join("|") + ")").replace(/\//, "\\/")),
usesDojoProvideEtAl = function(mid){
return excludesRe.test(mid);
};
return {
resourceTags:{
test: function(filename, mid){
return testResourceRe.test(mid);
},
copyOnly: function(filename, mid){
return copyOnly(filename, mid);
},
amd: function(filename, mid){
return !testResourceRe.test(mid) && !copyOnly(filename, mid) && !usesDojoProvideEtAl(mid) && /\.js$/.test(filename);
},
miniExclude: function(filename, mid){
return /\/demos\//.test(mid);
}
}
};
})();
|