]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/evergreen/main/main.js
start of staff client 3
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / evergreen / main / main.js
1 dump('entering main/main.js\n');
2
3 function main_init() {
4         dump('entering main_init()\n');
5         try {
6                 if (typeof JSAN == 'undefined') {
7                         throw(
8                                 "The JSAN library object is missing."
9                         );
10                 }
11                 /////////////////////////////////////////////////////////////////////////////
12
13                 JSAN.errorLevel = "die"; // none, warn, or die
14                 JSAN.addRepository('..');
15
16                 //JSAN.use('test.test'); test.test.hello_world();
17
18                 var mw = self;
19                 var G =  {};
20                 G.OpenILS = {};
21                 G.OpenSRF = {};
22
23                 JSAN.use('util.error');
24                 G.error = new util.error( mw, G );
25
26                 JSAN.use('main.window');
27                 G.window = new main.window( mw, G );
28
29                 JSAN.use('main.network');
30                 G.network = new main.network( mw, G );
31
32                 JSAN.use('auth.controller');
33                 G.auth = new auth.controller( mw, G );
34
35                 G.auth.on_login = function() {
36
37                         JSAN.use('OpenILS.data');
38                         G.OpenILS.data = new OpenILS.data( mw, G );
39                         G.OpenILS.data.on_complete = function () {
40
41                                 alert('spawn app_shell');
42                         }
43                         G.OpenILS.data.init();
44                 }
45
46                 G.auth.init();
47
48                 /////////////////////////////////////////////////////////////////////////////
49
50         } catch(E) {
51                 var error = "!! This software has encountered an error.  Please tell your friendly " +
52                         "system administrator or software developer the following:\n" + E + '\n';
53                 try { G.error.sdump('D_ERROR',error); } catch(E) { dump(error); }
54                 alert(error);
55         }
56         dump('exiting main_init()\n');
57 }
58
59 dump('exiting main/main.js\n');