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

Evergreen Git git at git.evergreen-ils.org
Tue Jul 17 11:23:54 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, master has been updated
       via  e1348fb435a757f6cc96fe28029677efe0cfc5ad (commit)
      from  50de1a4f5c417c30f891347ddb6516e6ff491214 (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 e1348fb435a757f6cc96fe28029677efe0cfc5ad
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