[open-ils-commits] [GIT] Evergreen ILS branch rel_2_0 updated. 959d3d6b7738f5a9af9597cb6ba66ebe8b1cf23c

Evergreen Git git at git.evergreen-ils.org
Fri Aug 19 14:40:23 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, rel_2_0 has been updated
       via  959d3d6b7738f5a9af9597cb6ba66ebe8b1cf23c (commit)
       via  d774dcf3acaeb1b868aa9e62ef99d72397ada8b8 (commit)
      from  41f00b25bb95ac45c826304fb8e17844ad0e6fa2 (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 959d3d6b7738f5a9af9597cb6ba66ebe8b1cf23c
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Tue Aug 16 11:22:36 2011 -0400

    Improve Vandelay Import/Merge Checkbox Labels
    
    Since these labels are used both for the initial import and also
    for imports from the queue, the use of the word "Auto" can be
    confusing and misleading.  This commit reflects changes already
    made in trunk for these labels.
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/web/opac/locale/en-US/vandelay.dtd b/Open-ILS/web/opac/locale/en-US/vandelay.dtd
index 31fdc67..4c9408b 100644
--- a/Open-ILS/web/opac/locale/en-US/vandelay.dtd
+++ b/Open-ILS/web/opac/locale/en-US/vandelay.dtd
@@ -1,10 +1,10 @@
 <!ENTITY vandelay.add.existing.queue "or Add to an Existing Queue">
 <!ENTITY vandelay.auth.attrs "Authority attributes">
 <!ENTITY vandelay.auth.records "Authority Records">
-<!ENTITY vandelay.auto.import.noncolliding "Auto-Import Non-Colliding Records">
-<!ENTITY vandelay.auto.import.auto_overlay_exact "Auto Merge/Overlay Exact Matches">
-<!ENTITY vandelay.auto.import.auto_overlay_1match "Auto Merge/Overlay When Exactly 1 Match is Found">
-<!ENTITY vandelay.auto.import.merge_profile "Merge/Overlay Profile">
+<!ENTITY vandelay.auto.import.noncolliding "Import Non-Matching Records">
+<!ENTITY vandelay.auto.import.auto_overlay_exact "Merge On Exact Match (901c)">
+<!ENTITY vandelay.auto.import.auto_overlay_1match "Merge On Single Match">
+<!ENTITY vandelay.auto.import.merge_profile "Merge Profile">
 <!ENTITY vandelay.auto.width "Auto Width">
 <!ENTITY vandelay.back.to.import.queue "Back To Import Queue">
 <!ENTITY vandelay.bib.attrs "Bibliographic attributes">

commit d774dcf3acaeb1b868aa9e62ef99d72397ada8b8
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Tue Aug 16 11:03:16 2011 -0400

    Fix importing of 'No Match' records from a queue
    
    This small change honors the 'No Match' checkbox when importing
    from a queue.
    
    This bug has existed for a while, but was only recently exposed
    by 06e4d3370068002a303c9a5a03448ee0e1249fc0.  Before that commit,
    no-match records always imported, even when you didn't want them.
    After that commit, they import when wanted on the initial load,
    but could not be imported from the queue.
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
index 0921da5..4ca6f8e 100644
--- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js
+++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
@@ -863,6 +863,11 @@ function vlImportSelectedRecords() {
 
     var options = {overlay_map : currentOverlayRecordsMap};
 
+    if(vlUploadQueueImportNoMatch.checked) {
+        options.import_no_match = true;
+        vlUploadQueueImportNoMatch.checked = false;
+    }
+
     if(vlUploadQueueAutoOverlayExact.checked) {
         options.auto_overlay_exact = true;
         vlUploadQueueAutoOverlayExact.checked = false;

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/web/js/ui/default/vandelay/vandelay.js |    5 +++++
 Open-ILS/web/opac/locale/en-US/vandelay.dtd     |    8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list