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

Evergreen Git git at git.evergreen-ils.org
Sun Mar 4 00:25:07 EST 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  8542b1f352017c3264a083ab1626116c75b67f2a (commit)
       via  94a007cad630e89daa8ed998da68ddb0b8a4182b (commit)
      from  21a7a45b43941960a68501594d69a3844eeaedb1 (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 8542b1f352017c3264a083ab1626116c75b67f2a
Author: Thomas Berezansky <tsbere at mvlc.org>
Date:   Thu Jan 26 16:10:35 2012 -0500

    TPac: Make subjects less confusing
    
    The mdash can (and has) been interpreted as being a splitter between fully
    unrelated subjects. Change it to a gt to make the relationship obvious.
    
    Credit goes to other MassLNC members for the suggestion.
    
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/templates/opac/parts/record/subjects.tt2 b/Open-ILS/src/templates/opac/parts/record/subjects.tt2
index df06100..a78bdef 100644
--- a/Open-ILS/src/templates/opac/parts/record/subjects.tt2
+++ b/Open-ILS/src/templates/opac/parts/record/subjects.tt2
@@ -36,7 +36,7 @@
                 NEXT UNLESS subfield.nodeName == "subfield";
                 code = subfield.getAttribute('code');
                 NEXT UNLESS code.match('[a-z]');
-                IF code.match('[vxyz]'); " &mdash; "; END;
+                IF code.match('[vxyz]'); " &gt; "; END;
                 # at this point, we actually have a partial term to use.
                 single_term = subfield.textContent | html;
                 all_terms.push(subfield.textContent);

commit 94a007cad630e89daa8ed998da68ddb0b8a4182b
Author: Thomas Berezansky <tsbere at mvlc.org>
Date:   Thu Jan 26 16:19:51 2012 -0500

    TPac: Make view changing more patron-friendly
    
    Instead of calling them "Detailed View" and "Simple View" label them as
    "Show More Details" and "Show Fewer Details", to make it obvious that
    clicking will change the view.
    
    Credit goes to other MassLNC members for the initial idea, and those in
    IRC for hashing out the wording.
    
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/templates/opac/results.tt2 b/Open-ILS/src/templates/opac/results.tt2
index 566936a..829d298 100644
--- a/Open-ILS/src/templates/opac/results.tt2
+++ b/Open-ILS/src/templates/opac/results.tt2
@@ -46,9 +46,9 @@
 
                     <div class='results_header_sel' id='simple-detail-view-links'>
                         [% IF CGI.param('detail_record_view') %]
-                        <a href="[% mkurl('', {detail_record_view => ''}) %]">[% l('Simple View') %]</a>
+                        <a href="[% mkurl('', {detail_record_view => ''}) %]">[% l('Show Fewer Details') %]</a>
                         [% ELSE %]
-                        <a href="[% mkurl('', {detail_record_view => 1}) %]">[% l('Detailed View') %]</a>
+                        <a href="[% mkurl('', {detail_record_view => 1}) %]">[% l('Show More Details') %]</a>
                         [% END %]
                     </div>
                     <div class="results_header_div"></div>

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

Summary of changes:
 .../src/templates/opac/parts/record/subjects.tt2   |    2 +-
 Open-ILS/src/templates/opac/results.tt2            |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list