]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/main/data.xul
new way of handling entities for remote xul
[Evergreen.git] / Open-ILS / xul / staff_client / server / main / data.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Main, Authentication Window -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- PRESENTATION -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="chrome://open_ils_staff_client/skin/auth.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="data_win" 
22         onload="try { data_init(); } catch(E) { alert(E); }"
23         title="&staff.auth.title;"
24         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
25
26
27         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28         <!-- BEHAVIOR -->
29         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
30         <scripts id="openils_util_scripts"/>
31
32         <script type="text/javascript" src="chrome://open_ils_staff_client/content/main/lang.js"/>
33         <script type="text/javascript" src="/xul/server/main/lang.js"/>
34         <script type="text/javascript" src="chrome://open_ils_staff_client/content/main/JSAN.js"/>
35         <script>
36         <![CDATA[
37                 dump("entities['lang.version'] = " + entities['lang.version'] + '\n');
38
39                 function data_init() {
40
41                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
42
43                         if (typeof JSAN == 'undefined') {
44                                 throw(
45                                         "The JSAN library object is missing."
46                                 );
47                         }
48                         /////////////////////////////////////////////////////////////////////////////
49
50                         JSAN.errorLevel = "die"; // none, warn, or die
51                         JSAN.addRepository('/xul/server/');
52
53                         JSAN.use('OpenILS.data');
54                         g.data = new OpenILS.data()
55                         g.data.on_error = xulG.auth.logoff;
56                         g.data.entities = entities;
57                         g.data.stash('entities');
58
59                         g.data.session = xulG.auth.session.key;
60                         g.data.on_complete = function () {
61
62                                 g.data.stash('list','hash','tree','temp');
63                                 g.data._debug_stash();
64
65                                 xulG.window.open(urls.XUL_MENU_FRAME
66                                         + '?session='+window.escape(xulG.auth.session.key)
67                                         + '&authtime='+window.escape(xulG.auth.session.authtime)
68                                         + '&server='+window.escape(xulG.url),
69                                         'main'+xulG.window.window_name_increment(),'chrome,resizable'
70                                 );
71
72                         }
73
74                         g.data.init();
75                 }
76         ]]>
77         </script>
78
79         <groupbox id="data_groupbox" flex="1"> <caption label="Loading data..."/> </groupbox>
80
81 </window>
82