source: config.json @ 87:e737fa162ff8

Last change on this file since 87:e737fa162ff8 was 79:37ae7c70f961, checked in by fnevgeny, 16 years ago

sprintf moved to pf.Util.Format.

File size: 2.0 KB
Line 
1{
2  "name"    : "pf",
3
4  "include" :
5  [
6    {
7      "path" : "../qooxdoo-0.8-sdk/tool/data/config/application.json",
8      "as"   : "appconf"
9    }
10  ],
11
12  "let" :
13  {
14    "APPLICATION"  : "pf",
15    "QOOXDOO_PATH" : "../qooxdoo-0.8-sdk/framework",
16    "QOOXDOO_URI"  : "../${QOOXDOO_PATH}",
17    "QXTHEME"      : "qx.theme.Modern",
18    "LOCALES"      : [ "en" ],
19    "ROOT"         : ".",
20    "APPLICATION_FILES" : "index.html pf.html sprintf.js wz_jsgraphics.js
21                           entities.js",
22    "APPLICATION_RESOURCE_FILTER" : true,
23    "APPLICATION_COMPLETE_SOURCE" : false
24  },
25
26  "jobs" :
27  {
28    "api" :
29    {
30      "extend" : ["appconf::api"]
31    },
32
33    "build" :
34    {
35      "extend" : ["appconf::build"],
36
37      "settings" :
38      {
39        "qx.legacy.theme" : "qx.legacy.theme.ClassicRoyale"
40      },
41      "require" :
42      {
43        "pf.Application" : [ "qx.legacy.theme.ClassicRoyale" ]
44      },
45      "copy-files" :
46      {
47        "files" : ["index.html", "pf.html", "wz_jsgraphics.js", "entities.js"],
48        "target" : "${BUILD_PATH}"
49      }
50    },
51
52    "clean" :
53    {
54      "extend" : ["appconf::clean"]
55    },
56
57    "distclean" :
58    {
59      "extend" : ["appconf::distclean"]
60    },
61
62    "fix" :
63    {
64      "extend" : ["appconf::fix"]
65    },
66
67    "lint" :
68    {
69      "extend" : ["appconf::lint"]
70    },
71
72    "migration" :
73    {
74      "extend" : ["appconf::migration"]
75    },
76
77    "pretty" :
78    {
79      "extend" : ["appconf::pretty"]
80    },
81
82    "publish" :
83    {
84      "extend" : ["appconf::publish"]
85    },
86
87    "source" :
88    {
89      "extend" : ["appconf::source"],
90
91      "settings" :
92      {
93        "qx.legacy.theme" : "qx.legacy.theme.ClassicRoyale"
94      },
95      "require" :
96      {
97        "pf.Application" : [ "qx.legacy.theme.ClassicRoyale" ]
98      }
99    },
100
101    "test" :
102    {
103      "extend" : ["appconf::test"]
104    },
105
106    "test-source" :
107    {
108      "extend" : ["appconf::test-source"]
109    },
110
111    "translate" :
112    {
113      "extend" : ["appconf::translate"]
114    }
115
116  }
117}
Note: See TracBrowser for help on using the repository browser.