[open-ils-commits] [GIT] Evergreen ILS branch master updated. 9776b89e6446c9bea2b5fb3ee24e2e263c0eac7f

Evergreen Git git at git.evergreen-ils.org
Fri Dec 27 16:15:06 EST 2019


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  9776b89e6446c9bea2b5fb3ee24e2e263c0eac7f (commit)
      from  ad26b08d9a4bbe9101ce230a5854b7684e2d2686 (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 9776b89e6446c9bea2b5fb3ee24e2e263c0eac7f
Author: Bill Erickson <berickxx at gmail.com>
Date:   Fri Oct 18 13:47:17 2019 -0400

    LP1848778 Use consistent MARC breaker delimiter
    
    Use the '$' delimiter in the read-only MARC breaker view for
    consistency with the flat text MARC editor to easy copy/paste from one
    to the other.
    
    To test
    -------
    [1] Apply the patch.
    [2] Set up two records in a record bucket and initiate a merge. Note
        that when you select a lead record and choose to edit it in
        flat text mode, you can copy and paste fields from the subordinate
        record display without having to change the subfield delimiter
        character.
    [3] Mark a record for overlay, perform a Z39.50 search, then select
        a hit and choose the overlay action. Note that you can copy and
        paste fields from the record to overlay when editing the incoming
        record using the flat text editor.
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/web/js/ui/default/staff/cat/services/record.js b/Open-ILS/web/js/ui/default/staff/cat/services/record.js
index 9c881373e3..c099e4dd67 100644
--- a/Open-ILS/web/js/ui/default/staff/cat/services/record.js
+++ b/Open-ILS/web/js/ui/default/staff/cat/services/record.js
@@ -95,6 +95,9 @@ angular.module('egCoreMod')
                    ['$scope','egCore',
             function($scope , egCore) {
 
+                // Match the MARC flat-text editor
+                MARC21.Record.delimiter = '$';
+
                 function loadRecordBreaker() {
                     var xml;
                     if ($scope.marcXml) {

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

Summary of changes:
 Open-ILS/web/js/ui/default/staff/cat/services/record.js | 3 +++
 1 file changed, 3 insertions(+)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list