]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/util/rbrowser.xul
tweaks
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / util / rbrowser.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Patron Display -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
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="/xul/server/skin/global.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
14
15 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
16 <!-- OVERLAYS -->
17 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
18
19 <window id="util_browser_win" 
20         onload="my_init()"
21         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
22
23         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
24         <!-- BEHAVIOR -->
25         <script type="text/javascript">
26                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
27                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
28         </script>
29         <scripts id="openils_util_scripts"/>
30
31         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
32         <script>
33         <![CDATA[
34                 function my_init() {
35                         try {
36                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
37                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
38                                 JSAN.errorLevel = "die"; // none, warn, or die
39                                 JSAN.addRepository('/xul/server/');
40                                 JSAN.use('util.error'); g.error = new util.error();
41                                 g.error.sdump('D_TRACE','my_init() for util_browser.xul');
42
43                                 g.cgi = new CGI();
44                                 var name = g.cgi.param('tab_name') || g.cgi.param('name') || null;
45                                 if (!name) {
46                                         if (typeof window.xulG == 'object') {
47                                                 name = window.xulG.name || window.xulG.tab_name || null;
48                                         }
49                                 }
50                                 var session = g.cgi.param('session');
51                                 var url; try { url = g.cgi.param('url') || xulG.url } catch(E) { dump(E + '\n'); };
52                                 if (!url) url = urls.browser;
53
54                                 JSAN.use('util.browser'); g.browser = new util.browser();
55
56                                 g.browser.init( 
57                                         { 
58                                                 'url' : url,
59                                                 'session' : session,
60                                         } 
61                                 );
62
63                                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
64                                         if (name) try { window.xulG.set_tab_name(name); } catch(E) { alert(E); }
65                                 }
66                                 if (typeof window.xulG && window.xulG.show_nav_buttons) {
67                                         document.getElementById('back').hidden = false;
68                                         document.getElementById('forward').hidden = false;
69                                 }
70                                 if (typeof window.xulG && window.xulG.show_print_button) {
71                                         document.getElementById('browser_print').hidden = false;
72                                 }
73
74
75                         } catch(E) {
76                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
77                                         "system administrator or software developer the following:\n" + E + '\n';
78                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
79                                 alert(err_msg);
80                         }
81                 }
82
83         ]]>
84         </script>
85
86         <commandset id="util_browser_cmds">
87                 <command id="cmd_broken" />
88                 <command id="cmd_print" />
89                 <command id="cmd_back" />
90                 <command id="cmd_forward" />
91         </commandset>
92
93         <vbox flex="1">
94                 <hbox>
95                         <button id="back" label="Go Back" command="cmd_back" accesskey="b" disabled="true" hidden="true"/>
96                         <button id="forward" label="Go Forward" command="cmd_forward" accesskey="d" disabled="true" hidden="true"/>
97                         <spacer flex="1"/>
98                         <button id="browser_print" label="Print Page" command="cmd_print" hidden="true"/>
99                 </hbox>
100                 <browser id="browser_browser" flex="1" type="content"/>
101         </vbox>
102
103 </window>
104