source: Dev/branches/rest-dojo-ui/client/util/buildscripts/profiles/standard.profile.js @ 257

Last change on this file since 257 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1.8 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: "../dijit/dijit.js",
13                        dependencies: [
14                                "dijit.dijit"
15                        ]
16                },
17                {
18                        name: "../dijit/dijit-all.js",
19                        layerDependencies: [
20                                "../dijit/dijit.js"
21                        ],
22                        dependencies: [
23                                "dijit.dijit-all"
24                        ]
25                },
26                {
27                        name: "../dojox/grid/DataGrid.js",
28                        dependencies: [
29                                "dojox.grid.DataGrid"
30                        ]
31                },
32                {
33                        name: "../dojox/gfx.js",
34                        dependencies: [
35                                "dojox.gfx"
36                        ]
37                },
38                // FIXME:
39                //              we probably need a better structure for this layer and need to
40                //              add some of the most common themes
41                {
42                        name: "../dojox/charting/widget/Chart2D.js",
43                        dependencies: [
44                                "dojox.charting.widget.Chart2D",
45                                "dojox.charting.widget.Sparkline",
46                                "dojox.charting.widget.Legend"
47                        ]
48                },
49                {
50                        name: "../dojox/dtl.js",
51                        dependencies: [
52                                "dojox.dtl",
53                                "dojox.dtl.Context",
54                                "dojox.dtl.tag.logic",
55                                "dojox.dtl.tag.loop",
56                                "dojox.dtl.tag.date",
57                                "dojox.dtl.tag.loader",
58                                "dojox.dtl.tag.misc",
59                                "dojox.dtl.ext-dojo.NodeList"
60                        ]
61                },
62                {
63                        name: "../dojox/mobile.js",
64                        dependencies: [
65                                "dojox.mobile"
66                        ]
67                },
68                {
69                        name: "../dojox/mobile/app.js",
70                        dependencies: [
71                                "dojox.mobile.app"
72                        ]
73                },
74                {
75                        name: "../dojox/mobile/compat.js",
76                        dependencies: [
77                                "dojox.mobile.compat"
78                        ]
79                },
80                {
81                        name: "../dojox/mobile/app/compat.js",
82                        dependencies: [
83                                "dojox.mobile.app.compat"
84                        ]
85                }
86        ],
87
88        prefixes: [
89                [ "dijit", "../dijit" ],
90                [ "dojox", "../dojox" ]
91        ]
92}
Note: See TracBrowser for help on using the repository browser.