[open-ils-commits] r15377 - in trunk/Open-ILS/xul/staff_client/server: admin cat circ patron (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Jan 25 12:22:57 EST 2010
Author: phasefx
Date: 2010-01-25 12:22:54 -0500 (Mon, 25 Jan 2010)
New Revision: 15377
Modified:
trunk/Open-ILS/xul/staff_client/server/admin/patrons_due_refunds.xul
trunk/Open-ILS/xul/staff_client/server/admin/transit_list.xul
trunk/Open-ILS/xul/staff_client/server/cat/copy_browser.xul
trunk/Open-ILS/xul/staff_client/server/circ/checkin.xul
trunk/Open-ILS/xul/staff_client/server/circ/copy_status.xul
trunk/Open-ILS/xul/staff_client/server/circ/renew.xul
trunk/Open-ILS/xul/staff_client/server/patron/bill2.xul
trunk/Open-ILS/xul/staff_client/server/patron/holds.xul
trunk/Open-ILS/xul/staff_client/server/patron/info_group.xul
trunk/Open-ILS/xul/staff_client/server/patron/items.xul
trunk/Open-ILS/xul/staff_client/server/patron/trigger_events.xul
Log:
I noticed in xulrunner 1.9.2rc1 that menu labels in menubar widgets were being rendered as if they were disabled. This coming from a theme change in Firefox 3.5 that is looking for an @active in window for styling menus. I don't know if this is the correct way to
"activate" our windows, but seems to work.
Modified: trunk/Open-ILS/xul/staff_client/server/admin/patrons_due_refunds.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/admin/patrons_due_refunds.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/admin/patrons_due_refunds.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -17,7 +17,7 @@
<!-- OVERLAYS -->
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<window id="patrons_due_refunds_win" onload="try { font_helper(); persist_helper(); patrons_due_refunds_init(); } catch(E) { alert(E); }"
+<window id="patrons_due_refunds_win" onload="try { font_helper(); persist_helper(); patrons_due_refunds_init(); } catch(E) { alert(E); }" active="true"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
Modified: trunk/Open-ILS/xul/staff_client/server/admin/transit_list.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/admin/transit_list.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/admin/transit_list.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -17,7 +17,7 @@
<!-- OVERLAYS -->
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<window id="admin_transit_list_win"
+<window id="admin_transit_list_win" active="true"
onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/cat/copy_browser.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/copy_browser.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/cat/copy_browser.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -21,7 +21,7 @@
<!-- OVERLAYS -->
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<window id="cat_copy_browser"
+<window id="cat_copy_browser" active="true"
onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/circ/checkin.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/checkin.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/circ/checkin.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -19,7 +19,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<?xul-overlay href="/xul/server/circ/checkin_overlay.xul"?>
-<window id="checkin_win"
+<window id="checkin_win" active="true"
onload="try { my_init(); font_helper(); persist_helper(); document.getElementById('checkin_modifiers_popup').hidePopup(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/circ/copy_status.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/copy_status.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/circ/copy_status.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -19,7 +19,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<?xul-overlay href="/xul/server/circ/copy_status_overlay.xul"?>
-<window id="copy_status_win"
+<window id="copy_status_win" active="true"
onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/circ/renew.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/renew.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/circ/renew.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -19,7 +19,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<?xul-overlay href="/xul/server/circ/renew_overlay.xul"?>
-<window id="renew_win"
+<window id="renew_win" active="true"
onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/patron/bill2.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/bill2.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/patron/bill2.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -20,7 +20,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<!--<?xul-overlay href="/xul/server/patron/bill_summary_overlay.xul"?>-->
-<window id="bill_interface_win" width="700" height="550" oils_persist="sizemode width height"
+<window id="bill_interface_win" width="700" height="550" oils_persist="sizemode width height" active="true"
onload="try{ font_helper(); persist_helper(); my_init(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/patron/holds.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/holds.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/patron/holds.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -19,7 +19,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<?xul-overlay href="/xul/server/patron/holds_overlay.xul"?>
-<window id="holds_win"
+<window id="holds_win" active="true"
onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/patron/info_group.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/info_group.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/patron/info_group.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -18,7 +18,7 @@
<!-- OVERLAYS -->
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<window id="patron_info_group_win" width="700" height="550"
+<window id="patron_info_group_win" width="700" height="550" active="true"
onload="try{ my_init(); font_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/patron/items.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/items.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/patron/items.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -19,7 +19,7 @@
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
<?xul-overlay href="/xul/server/patron/items_overlay.xul"?>
-<window id="items_win"
+<window id="items_win" active="true"
onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Modified: trunk/Open-ILS/xul/staff_client/server/patron/trigger_events.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/trigger_events.xul 2010-01-25 13:45:44 UTC (rev 15376)
+++ trunk/Open-ILS/xul/staff_client/server/patron/trigger_events.xul 2010-01-25 17:22:54 UTC (rev 15377)
@@ -17,7 +17,7 @@
<!-- OVERLAYS -->
<?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
-<window id="trigger_event_win" onload="try { font_helper(); persist_helper(); trigger_event_init(); } catch(E) { alert(E); }"
+<window id="trigger_event_win" onload="try { font_helper(); persist_helper(); trigger_event_init(); } catch(E) { alert(E); }" active="true"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
More information about the open-ils-commits
mailing list