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
|
(function() {
var lib_path = '/static/lib/';
var fragmentd_path = '${fragment_d_path}'; // [!] see README.md#Deployment note
var config = {
shim: {
'socketio': { exports: 'io' },
'Bacon': {
deps: ['jquery'],
exports: 'Bacon',
}
},
paths: {
autocomplete: lib_path + 'autocomplete',
Bacon: lib_path + 'Bacon',
caret: lib_path + 'caret',
cola: lib_path + 'cola',
domain_types: fragmentd_path + '/js/domain_types',
d3: lib_path + 'd3/d3',
feedback: lib_path + 'feedback',
FileSaver: lib_path + 'FileSaver',
html2canvas: lib_path + 'html2canvas',
jquery: lib_path + 'jquery',
socketio: lib_path + 'socket.io/socket.io.min_0.9.10',
underscore: lib_path + 'underscore',
}
}
if (rz_config.optimized_main) {
config.paths.main = 'main-built';
}
config.urlArgs = (typeof local_config != 'undefined') && local_config.urlArgs;
if (window.is_node) {
// Testing path only
console.log('app: running under node');
config.baseUrl = '../src/';
window.rhizi_require_config = config;
} else {
// [!] no need to configure baseUrl, as in
// config.baseUrl = ...
// generated script URLs include the basepath of app.js
// Main app path
require.config(config);
requirejs(['main'], function(main) {
console.log('starting rhizi logic');
main.main();
});
}
}());
|