nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
var profile = (function(){
    var testResourceRe = /\/tests\//,
    nodeModulesRe = /\/node_modules\//,
 
        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) ||
                nodeModulesRe.test(mid);
        },
 
        excludes = [
            "secure",
            "data/(demos|ItemExplorer|StoreExplorer|restListener)",
            "drawing/plugins/drawing/Silverlight",
            "embed/(IE)",
            "flash/_base",
            "help",
            "image/(Gallery|SlideShow|ThumbnailPicker)",
            "jq",
            "lang/(aspect|async|docs|observable|oo|typed|functional/(binrec|linrec|listcomp|multirec|numrec|tailrec|util))",
            "layout/(BorderContainer|dnd|ext-dijit)",
            "mobile/app/",
            "rails",
            "robot",
            "sql/",
            "storage/(_common|AirDBStorageProvider|AirEncryptedLocalStorageProvider|AirFileStorageProvider|BehaviorStorageProvider|CookieStorageProvider|FlashStorageProvider|GearsStorageProvider|WhatWGStorageProvider)",
            "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) || nodeModulesRe.test(mid);
            }
        }
    };
})();