[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. 256f4c8039d2105cd978e22af1353b46be0c0cd1

Evergreen Git git at git.evergreen-ils.org
Tue Jul 17 11:24:26 EDT 2012


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_2 has been updated
       via  256f4c8039d2105cd978e22af1353b46be0c0cd1 (commit)
      from  d3b3750ca321268ee006a1ba0bbac6d6f8d0d7ae (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 256f4c8039d2105cd978e22af1353b46be0c0cd1
Author: Dan Scott <dan at coffeecode.net>
Date:   Fri Jun 15 22:59:23 2012 -0400

    TPAC: Physical description, now with spaces
    
    Record details will regularly include physical descriptions like
    "Physical Description: 1 sound disc :33 1/3 rpm, mono." where the colon
    is jammed up against the content from the following subfield. Easily
    fixed by using a space as the joiner for the subfields.
    
    Signed-off-by: Dan Scott <dan at coffeecode.net>
    Signed-off-by: Michael Peters <mrpeters at library.in.gov>

diff --git a/Open-ILS/src/templates/opac/parts/misc_util.tt2 b/Open-ILS/src/templates/opac/parts/misc_util.tt2
index 0906c06..fe4d97f 100644
--- a/Open-ILS/src/templates/opac/parts/misc_util.tt2
+++ b/Open-ILS/src/templates/opac/parts/misc_util.tt2
@@ -80,7 +80,7 @@
         );
             phys_content.push(sub.textContent);
         END;
-        args.phys_desc = phys_content.join("");
+        args.phys_desc = phys_content.join(" ");
 
         args.contents_list = [];
         FOR sub IN xml.findnodes('//*[@tag="505"]');

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

Summary of changes:
 Open-ILS/src/templates/opac/parts/misc_util.tt2 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list