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

Evergreen Git git at git.evergreen-ils.org
Thu Oct 11 11:39:13 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  3309cab8ad8014489550ab8a8ff3d7e021f107ab (commit)
      from  e5fe5acb22a7fe3d7e88ec0a8cf5a202410ef056 (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 3309cab8ad8014489550ab8a8ff3d7e021f107ab
Author: Dan Scott <dscott at laurentian.ca>
Date:   Wed Sep 12 14:09:04 2012 -0400

    TPAC: Show ISSN in search results, if available
    
    Just as we show the ISBN in search results, the ISSN is an important
    identifier to display if we have one (and we often will if we don't have
    an ISBN).
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>

diff --git a/Open-ILS/src/templates/opac/parts/result/table.tt2 b/Open-ILS/src/templates/opac/parts/result/table.tt2
index f40cc13..48f8be0 100644
--- a/Open-ILS/src/templates/opac/parts/result/table.tt2
+++ b/Open-ILS/src/templates/opac/parts/result/table.tt2
@@ -98,6 +98,14 @@
                                                                 <td>[% attrs.isbns.0 | html %]</td>
                                                             </tr>
                                                         [% END %]
+                                                        [%- IF attrs.issns.size > 0 %]
+                                                            <tr name="results_issn_tr">
+                                                                <td valign="top">
+                                                                    <strong>[% l('ISSN:') %]</strong>
+                                                                </td>
+                                                                <td>[% attrs.issns.0 | html %]</td>
+                                                            </tr>
+                                                        [%- END %]
                                                         [%- IF openurl.enabled == 'true';
                                                             FOREACH issn IN args.issns;
                                                                 NEXT IF issn == '';

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list