]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/evergreen/main/main.js
snip
[working/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
7                 var pref = Components.classes["@mozilla.org/preferences-service;1"]
8                         .getService(Components.interfaces.nsIPrefBranch);
9                 if (pref) {
10                         pref.setCharPref("capability.principal.codebase.p0.granted", "UniversalXPConnect");
11                         pref.setCharPref("capability.principal.codebase.p0.id", "http://gapines.org");
12                 }
13
14                 if (typeof JSAN == 'undefined') {
15                         throw(
16                                 "The JSAN library object is missing."
17                         );
18                 }
19                 /////////////////////////////////////////////////////////////////////////////
20
21                 JSAN.errorLevel = "die"; // none, warn, or die
22                 JSAN.addRepository('..');
23
24                 //JSAN.use('test.test'); test.test.hello_world();
25
26                 var mw = self;
27                 var G =  {};
28                 G.OpenILS = {};
29                 G.OpenSRF = {};
30
31                 JSAN.use('util.error');
32                 G.error = new util.error();
33                 G.error.sdump('D_ERROR','Testing');
34
35                 JSAN.use('main.window');
36                 G.window = new main.window();
37
38                 JSAN.use('auth.controller');
39                 G.auth = new auth.controller( mw );
40
41                 G.auth.on_login = function() {
42
43                         JSAN.use('OpenILS.data');
44                         G.OpenILS.data = new OpenILS.data( G.auth );
45                         G.OpenILS.data.on_complete = function () {
46
47                                 G.window.open('http://gapines.org/xul/server/main/menu_frame.xul','test','chrome');
48                         }
49                         G.OpenILS.data.init();
50                 }
51
52                 G.auth.init();
53
54                 /////////////////////////////////////////////////////////////////////////////
55
56         } catch(E) {
57                 var error = "!! This software has encountered an error.  Please tell your friendly " +
58                         "system administrator or software developer the following:\n" + E + '\n';
59                 try { G.error.sdump('D_ERROR',error); } catch(E) { dump(error); }
60                 alert(error);
61         }
62         dump('exiting main_init()\n');
63 }
64
65 dump('exiting main/main.js\n');