| author | veltr |
| Mon, 11 Feb 2013 18:08:19 +0100 | |
| changeset 56 | a9b9e6c7be63 |
| parent 55 | 17ff0be41a5b |
| child 58 | 87569ad0ff53 |
| permissions | -rw-r--r-- |
| 22 | 1 |
// |
2 |
// Config file. Split out from the app for ease of overlaying a new config |
|
3 |
// without affecting the app controller. |
|
4 |
// |
|
5 |
// Copyright (c) The Dojo Foundation 2011. All Rights Reserved. |
|
6 |
// |
|
7 |
var dojoConfig = { |
|
| 52 | 8 |
baseUrl: '/', /* WAS /renkan */ |
| 22 | 9 |
async:true, |
10 |
paths : { |
|
11 |
coweb : 'lib/coweb', |
|
12 |
cowebx: 'lib/cowebx', |
|
| 45 | 13 |
org : 'lib/org', |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
14 |
corenkan: 'static/js/corenkan', |
| 51 | 15 |
rcolor: 'static/lib/rcolor', |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
16 |
underscore: 'static/lib/underscore-min', |
| 22 | 17 |
}, |
| 51 | 18 |
packages:[{ |
| 22 | 19 |
name: 'dojo', |
| 51 | 20 |
location:'static/lib/dojo', |
| 22 | 21 |
main:'main' |
| 54 | 22 |
}], |
| 51 | 23 |
/*{ |
| 22 | 24 |
name: 'dijit', |
| 45 | 25 |
location:'lib/dijit', |
| 22 | 26 |
main:'main' |
27 |
}, |
|
28 |
{ |
|
29 |
name: 'dojox', |
|
| 45 | 30 |
location:'lib/dojox', |
| 22 | 31 |
main:'main' |
32 |
}]*/ |
|
33 |
}; |
|
34 |
||
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
35 |
var cowebConfig = { |
| 54 | 36 |
baseUrl: window.location.protocol + '//' +window.location.host, |
| 56 | 37 |
adminUrl : '/admin', |
| 54 | 38 |
debug: false, |
39 |
//useWebSockets: true |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
40 |
}; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
41 |