[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch master updated. 346709cece7e3056a7d59c41b4aea564c6a76125

Evergreen Git git at git.evergreen-ils.org
Wed Sep 10 17:12:06 EDT 2014


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  346709cece7e3056a7d59c41b4aea564c6a76125 (commit)
      from  35b8ce21a7785706c3a2ffd0c0c930542b923c64 (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 346709cece7e3056a7d59c41b4aea564c6a76125
Author: Dan Pearl <dpearl at cwmars.org>
Date:   Tue Aug 26 16:07:41 2014 -0400

    LP#1190508: Rename certain image files to avoid Ad Block Plus's blacklist
    
    Ad Block Plus was blocking images with /images/adv_ in their pathname. It is
    presumed that "adv" was short for "advertisement".  I have renamed the files
    and the references to avoid the ABP blacklist.
    
    Signed-off-by: Dan Pearl <dpearl at cwmars.org>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/templates/opac/parts/advanced/expert.tt2 b/Open-ILS/src/templates/opac/parts/advanced/expert.tt2
index 8b8849d..85e2ca2 100644
--- a/Open-ILS/src/templates/opac/parts/advanced/expert.tt2
+++ b/Open-ILS/src/templates/opac/parts/advanced/expert.tt2
@@ -22,7 +22,7 @@
                     <a href="javascript:;" class="row-remover"
                         title="[% l('Remove row') %]" alt="[% l('Remove row') %]"
                         onclick='return killRowIfAtLeast(1, this);'>
-                        <img src="[% ctx.media_prefix %]/images/adv_row_close_btn.png" 
+                        <img src="[% ctx.media_prefix %]/images/expert_row_close_btn.png" 
                             alt="[% l('Remove Search Row') %]"/>
                     </a>
                 </td>
diff --git a/Open-ILS/src/templates/opac/parts/advanced/global_row.tt2 b/Open-ILS/src/templates/opac/parts/advanced/global_row.tt2
index 6302a29..3743047 100644
--- a/Open-ILS/src/templates/opac/parts/advanced/global_row.tt2
+++ b/Open-ILS/src/templates/opac/parts/advanced/global_row.tt2
@@ -50,7 +50,7 @@
         <a href="javascript:;" class="row-remover"
             title="[% l('Remove row') %]" alt="[% l('Remove row') %]"
             onclick='return killRowIfAtLeast(2, this);'>
-                <img src="[% ctx.media_prefix %]/images/adv_row_close_btn.png" 
+                <img src="[% ctx.media_prefix %]/images/expert_row_close_btn.png" 
                     alt="[% l('Remove row') %]"/>
             </a>
     </td>
diff --git a/Open-ILS/src/templates/opac/parts/staff_saved_searches.tt2 b/Open-ILS/src/templates/opac/parts/staff_saved_searches.tt2
index 0250651..ade1290 100644
--- a/Open-ILS/src/templates/opac/parts/staff_saved_searches.tt2
+++ b/Open-ILS/src/templates/opac/parts/staff_saved_searches.tt2
@@ -6,9 +6,9 @@
         </div>
         <div class="button">
             [% IF ctx.saved_searches_expanded %]
-            <a href="[% mkurl('', {'sss_expand' => 0}) %]" title="[% l('Collapse') %]"><img src="[% ctx.media_prefix %]/images/adv_search_minus_btn.png" alt="[% l('Collapse') %]" /></a>
+            <a href="[% mkurl('', {'sss_expand' => 0}) %]" title="[% l('Collapse') %]"><img src="[% ctx.media_prefix %]/images/staff_search_minus_btn.png" alt="[% l('Collapse') %]" /></a>
             [% ELSE %]
-            <a href="[% mkurl('', {'sss_expand' => 1}) %]" title="[% l('Expand') %]"><img src="[% ctx.media_prefix %]/images/adv_search_plus_btn.png" alt="[% l('Expand') %]" /></a>
+            <a href="[% mkurl('', {'sss_expand' => 1}) %]" title="[% l('Expand') %]"><img src="[% ctx.media_prefix %]/images/staff_search_plus_btn.png" alt="[% l('Expand') %]" /></a>
             [% END %]
         </div>
         <div class="clear">&nbsp;</div>
diff --git a/Open-ILS/web/images/adv_row_close_btn.png b/Open-ILS/web/images/expert_row_close_btn.png
similarity index 100%
rename from Open-ILS/web/images/adv_row_close_btn.png
rename to Open-ILS/web/images/expert_row_close_btn.png
diff --git a/Open-ILS/web/images/adv_search_minus_btn.png b/Open-ILS/web/images/staff_search_minus_btn.png
similarity index 100%
rename from Open-ILS/web/images/adv_search_minus_btn.png
rename to Open-ILS/web/images/staff_search_minus_btn.png
diff --git a/Open-ILS/web/images/adv_search_plus_btn.png b/Open-ILS/web/images/staff_search_plus_btn.png
similarity index 100%
rename from Open-ILS/web/images/adv_search_plus_btn.png
rename to Open-ILS/web/images/staff_search_plus_btn.png

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

Summary of changes:
 .../src/templates/opac/parts/advanced/expert.tt2   |    2 +-
 .../templates/opac/parts/advanced/global_row.tt2   |    2 +-
 .../templates/opac/parts/staff_saved_searches.tt2  |    4 ++--
 ..._row_close_btn.png => expert_row_close_btn.png} |  Bin 524 -> 524 bytes
 ...ch_minus_btn.png => staff_search_minus_btn.png} |  Bin 1292 -> 1292 bytes
 ...arch_plus_btn.png => staff_search_plus_btn.png} |  Bin 1388 -> 1388 bytes
 6 files changed, 4 insertions(+), 4 deletions(-)
 rename Open-ILS/web/images/{adv_row_close_btn.png => expert_row_close_btn.png} (100%)
 rename Open-ILS/web/images/{adv_search_minus_btn.png => staff_search_minus_btn.png} (100%)
 rename Open-ILS/web/images/{adv_search_plus_btn.png => staff_search_plus_btn.png} (100%)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list