commit 3d70456938c008e3f32d865672535fa40c63fbe1
parent 4556ea3f105f4760826b6e3003d3a3e7193f033a
Author: Simon Kornblith <simon@simonster.com>
Date: Sat, 19 Jun 2010 09:25:41 +0000
closes #1671: PATCH: Modify Voyager translatot to work with BHA catalog
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/translators/Library Catalog (Voyager).js b/translators/Library Catalog (Voyager).js
@@ -24,7 +24,8 @@ function detectWeb(doc, url) {
|| export_options[i].text == 'UTF-8 MARC (Unicode)'
|| export_options[i].text == 'UTF8-Unicode'
|| export_options[i].text == 'MARC (non-Unicode/MARC-8)'
- || export_options[i].text == 'MARC communication format') {
+ || export_options[i].text == 'MARC communication format'
+ || export_options[i].text == 'MARC Record') {
// We have an exportable single record
if(doc.forms.namedItem('frm').elements.namedItem('RC')) {
return "multiple";
@@ -127,7 +128,8 @@ function doWeb(doc, url) {
|| export_options[i].text == 'UTF8-Unicode'
|| export_options[i].text == 'MARC UTF-8'
|| export_options[i].text == 'MARC (Unicode/UTF-8)'
- || export_options[i].text == 'MARC communication format') {
+ || export_options[i].text == 'MARC communication format'
+ || export_options[i].text == 'MARC Record') {
unicode = i;
}
}