]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/external/template.xul
Improve Firefox/XULRunner Support
[Evergreen.git] / Open-ILS / xul / staff_client / external / template.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Example Template for remote xul -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="example_template_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
23
24     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
25     <!-- BEHAVIOR -->
26     <script type="text/javascript">
27         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
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                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
37                 JSAN.errorLevel = "die"; // none, warn, or die
38                 JSAN.addRepository('/xul/server/');
39                 JSAN.use('util.error'); g.error = new util.error();
40                 g.error.sdump('D_TRACE','my_init() for example_template.xul');
41
42                 g.cgi = new CGI();
43                 var session = g.cgi.param('session');
44
45                 JSAN.use('example.template'); g.template = new example.template();
46
47                 g.template.init( 
48                     { 
49                         'session' : session,
50                     } 
51                 );
52
53                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
54                     try { window.xulG.set_tab_name('Template'); } catch(E) { alert(E); }
55                 }
56
57             } catch(E) {
58                 try { g.error.standard_unexpected_error_alert('example/template.xul',E); } catch(F) { alert(E); }
59             }
60         }
61
62     ]]>
63     </script>
64
65     <commandset id="example_template_cmds">
66         <command id="cmd_broken" />
67     </commandset>
68
69     <browser id="template_browser" flex="1" oils_force_external="true"/>
70
71 </window>
72