[open-ils-commits] [GIT] Evergreen ILS branch rel_2_4 updated. a46c410a1a3295b407a4b01416edf1189c37bdf1
Evergreen Git
git at git.evergreen-ils.org
Tue May 14 15:43:43 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, rel_2_4 has been updated
via a46c410a1a3295b407a4b01416edf1189c37bdf1 (commit)
from 11324fd3722dc7e55700bacf538dd2026feb7820 (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 a46c410a1a3295b407a4b01416edf1189c37bdf1
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