source: Dev/trunk/src/client/util/buildscripts/profiles/standard.profile.js @ 483

Last change on this file since 483 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 1.9 KB
Line 
1dependencies = {
2        //Strip all console.* calls except console.warn and console.error. This is basically a work-around
3        //for trac issue: http://bugs.dojotoolkit.org/ticket/6849 where Safari 3's console.debug seems
4        //to be flaky to set up (apparently fixed in a webkit nightly).
5        //But in general for a build, console.warn/error should be the only things to survive anyway.
6        stripConsole: "normal",
7
8        selectorEngine:"acme",
9
10        layers: [
11                {
12                        name: "dojo.js",
13                        dependencies: [
14                                "dojo.loadInit",
15                                "dojo.text",
16                                "dojo.i18n"
17                        ]
18                },
19                {
20                        name: "../dijit/dijit.js",
21                        dependencies: [
22                                "dijit.dijit"
23                        ]
24                },
25                {
26                        name: "../dijit/dijit-all.js",
27                        layerDependencies: [
28                                "../dijit/dijit.js"
29                        ],
30                        dependencies: [
31                                "dijit.dijit-all"
32                        ]
33                },
34                {
35                        name: "../dojox/grid/DataGrid.js",
36                        dependencies: [
37                                "dojox.grid.DataGrid"
38                        ]
39                },
40                {
41                        name: "../dojox/gfx.js",
42                        dependencies: [
43                                "dojox.gfx"
44                        ]
45                },
46                // FIXME:
47                //              we probably need a better structure for this layer and need to
48                //              add some of the most common themes
49                {
50                        name: "../dojox/charting/widget/Chart2D.js",
51                        dependencies: [
52                                "dojox.charting.widget.Chart2D",
53                                "dojox.charting.widget.Sparkline",
54                                "dojox.charting.widget.Legend"
55                        ]
56                },
57                {
58                        name: "../dojox/dtl.js",
59                        dependencies: [
60                                "dojox.dtl",
61                                "dojox.dtl.Context",
62                                "dojox.dtl.tag.logic",
63                                "dojox.dtl.tag.loop",
64                                "dojox.dtl.tag.date",
65                                "dojox.dtl.tag.loader",
66                                "dojox.dtl.tag.misc",
67                                "dojox.dtl.ext-dojo.NodeList"
68                        ]
69                },
70                {
71                        name: "../dojox/mobile.js",
72                        dependencies: [
73                                "dojox.mobile"
74                        ]
75                },
76                {
77                        name: "../dojox/mobile/app.js",
78                        dependencies: [
79                                "dojox.mobile.app"
80                        ]
81                },
82                {
83                        name: "../dojox/mobile/compat.js",
84                        dependencies: [
85                                "dojox.mobile.compat"
86                        ]
87                },
88                {
89                        name: "../dojox/mobile/app/compat.js",
90                        dependencies: [
91                                "dojox.mobile.app.compat"
92                        ]
93                }
94        ],
95
96        prefixes: [
97                [ "dijit", "../dijit" ],
98                [ "dojox", "../dojox" ]
99        ]
100}
Note: See TracBrowser for help on using the repository browser.