[open-ils-commits] [GIT] Evergreen ILS branch master updated. 919f3bb1d16cca586299e745ce6bfdeeee9b8c98
Evergreen Git
git at git.evergreen-ils.org
Tue May 14 15:43:42 EDT 2013
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 919f3bb1d16cca586299e745ce6bfdeeee9b8c98 (commit)
from e414073d82c84ebb4b230aa5b54e2f3593b1b5ba (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 919f3bb1d16cca586299e745ce6bfdeeee9b8c98
Author: Ben Shum <bshum at biblio.org>
Date: Mon May 13 14:19:06 2013 -0400
LP1179614 - fix Export All Records action
In the record buckets, the button for 'Export All Records' would work up
to the point where you chose where to save the file. After clicking where
to save, it would not show any saved files or prompts indicating it completed
the export process.
This fix changes the location of where to find the export tool and properly
exports the bibs as the file format selected.
Signed-off-by: Ben Shum <bshum at biblio.org>
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
index 1f40446..393d55a 100644
--- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js
+++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
@@ -63,7 +63,7 @@ cat.record_buckets.export_records = function(obj, output_type) {
var persist = Components.classes["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"]
.createInstance(Components.interfaces.nsIWebBrowserPersist);
- var proto_uri = 'https://' + window.location.hostname + '/exporter?format=' + output_type + '&ses=' + ses();
+ var proto_uri = 'oils://remote/exporter?format=' + output_type + '&ses=' + ses();
dump('Record Export URI is ' + proto_uri + '&id=' + record_ids.join('&id=') + '\n');
-----------------------------------------------------------------------
Summary of changes:
.../xul/staff_client/server/cat/record_buckets.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list