[open-ils-commits] [GIT] Evergreen ILS branch master updated. a3244fbba42815b8a0edd23c1d270ab1af2d791c
Evergreen Git
git at git.evergreen-ils.org
Tue Sep 6 16:12:06 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via a3244fbba42815b8a0edd23c1d270ab1af2d791c (commit)
from 0f044586510bb47a092b4d6b2f9163f0916aad4c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a3244fbba42815b8a0edd23c1d270ab1af2d791c
Author: Jason Etheridge <jason at esilibrary.com>
Date: Tue Sep 6 15:14:20 2011 -0400
Pull in custom.js with offline/chrome overlays
Or at least try to. Main goal here is for browser.xul to see url constant
changes from custom.js and feed them to embedded Acquisition interfaces via
xulG.urls
Signed-off-by: Jason Etheridge <jason at esilibrary.com>
Signed-off-by: Bill Erickson <berick at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_chrome.xul b/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_chrome.xul
index 32f6ee9..fdfb446 100644
--- a/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_chrome.xul
+++ b/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_chrome.xul
@@ -31,6 +31,27 @@
]]>
</script>
<script type="text/javascript" src="../main/constants.js" />
+ <script>
+ <![CDATA[
+ try {
+ if (typeof xulG.url_prefix != 'undefined') {
+ dump('pulling in custom.js in util_overlay_chrome.xul\n');
+ // Pull in local customizations
+ var r = new XMLHttpRequest();
+ r.open("GET", xulG.url_prefix('/xul/server/skin/custom.js'), false);
+ r.send(null);
+ if (r.status == 200) {
+ dump('Evaluating /xul/server/skin/custom.js\n');
+ eval( r.responseText );
+ }
+ } else {
+ dump('cannot pull in custom.js in util_overlay_chrome.xul\n');
+ }
+ } catch(E) {
+ dump('cannot pull in custom.js in util_overlay_chrome.xul: ' + E + '\n');
+ }
+ ]]>
+ </script>
<script type="text/javascript" src="util/utils.js" />
<script type="text/javascript" src="util/CGI.js" />
<script type="text/javascript" src="util/md5.js" />
diff --git a/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_offline.xul b/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_offline.xul
index 3fb8de2..207469c 100644
--- a/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_offline.xul
+++ b/Open-ILS/xul/staff_client/chrome/content/OpenILS/util_overlay_offline.xul
@@ -33,6 +33,27 @@
</script>
<scripts id="openils_util_scripts">
<script type="text/javascript" src="../main/constants.js" />
+ <script>
+ <![CDATA[
+ try {
+ if (typeof xulG.url_prefix != 'undefined') {
+ dump('pulling in custom.js in util_overlay_offline.xul\n');
+ // Pull in local customizations
+ var r = new XMLHttpRequest();
+ r.open("GET", xulG.url_prefix('/xul/server/skin/custom.js'), false);
+ r.send(null);
+ if (r.status == 200) {
+ dump('Evaluating /xul/server/skin/custom.js\n');
+ eval( r.responseText );
+ }
+ } else {
+ dump('cannot pull in custom.js in util_overlay_offline.xul\n');
+ }
+ } catch(E) {
+ dump('cannot pull in custom.js in util_overlay_offline.xul: ' + E + '\n');
+ }
+ ]]>
+ </script>
<script type="text/javascript" src="util/utils.js" />
<script type="text/javascript" src="util/CGI.js" />
<script type="text/javascript" src="util/md5.js" />
-----------------------------------------------------------------------
Summary of changes:
.../chrome/content/OpenILS/util_overlay_chrome.xul | 21 ++++++++++++++++++++
.../content/OpenILS/util_overlay_offline.xul | 21 ++++++++++++++++++++
2 files changed, 42 insertions(+), 0 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list