+++ /dev/null
-<?xml version="1.0"?>
-<!-- Application: Evergreen Staff Client -->
-<!-- Screen: Patron Display -->
-
-<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
-<!-- STYLESHEETS -->
-<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
-<?xml-stylesheet href="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
-<?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
-<?xml-stylesheet href="/xul/server/skin/circ.css" type="text/css"?>
-
-<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
-<!-- LOCALIZATION -->
-<!DOCTYPE window PUBLIC "" ""[
- <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
-]>
-
-<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
-<!-- OVERLAYS -->
-<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<?xul-overlay href="/xul/server/patron/holds_overlay.xul"?>
-
-<window id="holds_win"
- onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
-
- <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
- <!-- BEHAVIOR -->
- <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
- <scripts id="openils_util_scripts"/>
-
- <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
- <script>
- <![CDATA[
- function my_init() {
- try {
- netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
- if (typeof JSAN == 'undefined') { throw( document.getElementById("commonStrings").getString('common.jsan.missing') ); }
- JSAN.errorLevel = "die"; // none, warn, or die
- JSAN.addRepository('/xul/server/');
- JSAN.use('util.error'); g.error = new util.error();
- g.error.sdump('D_TRACE','my_init() for holds.xul');
-
- JSAN.use('patron.holds'); g.holds = new patron.holds();
- g.holds.init(
- {
- 'tree_id' : 'holds_list',
- 'patron_id' : xul_param('patron_id'),
- 'docid' : xul_param('docid'),
- 'shelf' : xul_param('shelf'),
- 'pull' : xul_param('pull'),
- }
- );
- window.refresh = function(p) { g.holds.retrieve(p); }
-
- default_focus();
-
- } catch(E) {
- var err_msg = document.getElementById("commonStrings").getFormattedString('common.exception', ['patron/holds.xul', E]);
- try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
- alert(err_msg);
- }
- }
-
- function default_focus() { try { document.getElementById('holds_print').focus(); } catch(E) { } }
-
- ]]>
- </script>
-
- <commandset id="holds_cmds">
- <command id="sel_mark_items_damaged" disabled="true"/>
- <command id="sel_mark_items_missing" disabled="true"/>
- <command id="sel_copy_details" disabled="true"/>
- <command id="sel_patron" disabled="true"/>
- <command id="sel_clip" />
- <command id="cmd_holds_print" />
- <command id="cmd_show_catalog" />
- <command id="cmd_retrieve_patron" />
- <command id="cmd_show_notifications" />
- <command id="cmd_holds_edit_pickup_lib" />
- <command id="cmd_holds_edit_phone_notify" />
- <command id="cmd_holds_edit_email_notify" />
- <command id="cmd_holds_edit_selection_depth" disabled="true" hidden="true"/>
- <command id="cmd_broken" disabled="true" hidden="true"/>
- <command id="cmd_holds_retarget"/>
- <command id="cmd_holds_cancel" />
- <command id="save_columns" />
- </commandset>
-
- <popupset id="holds_popupset"/>
-
- <box id="holds_main" />
-
-</window>
-