Bugzilla – Attachment 102187 Details for
Bug 24740
Use biblio title if available rather than biblio number in OPAC search result cover images tooltips
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24740: Use biblio title rather than biblio number in OPAC search result cover images tooltips
Bug-24740-Use-biblio-title-rather-than-biblio-numb.patch (text/plain), 21.33 KB, created by
ByWater Sandboxes
on 2020-04-01 09:29:09 UTC
(
hide
)
Description:
Bug 24740: Use biblio title rather than biblio number in OPAC search result cover images tooltips
Filename:
MIME Type:
Creator:
ByWater Sandboxes
Created:
2020-04-01 09:29:09 UTC
Size:
21.33 KB
patch
obsolete
>From 45222335d90e86df530962385089eb633fd462e8 Mon Sep 17 00:00:00 2001 >From: Didier Gautheron <didier.gautheron@biblibre.com> >Date: Thu, 27 Feb 2020 10:51:19 +0100 >Subject: [PATCH] Bug 24740: Use biblio title rather than biblio number in OPAC > search result cover images tooltips > >In OPAC biblionum doesn't mean much to patrons, use biblio title field if not empty. > >Test plan: >OPAC search >1) Apply the patch >2) For each cover images providers available to tester in: >/cgi-bin/koha/admin/preferences.pl?tab=&op=search&searchfield=Cover >OPACLocalCoverImages, AdlibrisEnabled, OPACAmazonCoverImages, GoogleJackets, Coce provider. >3) Enable the provider. >4) Search a Library Catalog for a book with a cover image. >6) test mouse over cover image display biblio title. > >OPAC Shelves >1) Enable OPAC virtualshelves preference >2) Create a list. >3) For each covers providers available. >4) Search the List >5) test mouse over cover image display biblio title. > >Signed-off-by: Stina Hallin <stina.hallin@ub.lu.se> >--- > .../opac-tmpl/bootstrap/en/includes/shelfbrowser.inc | 12 +++++++++--- > .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 14 ++++++++++---- > .../opac-tmpl/bootstrap/en/modules/opac-results.tt | 19 ++++++++++++------- > .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 18 ++++++++++++------ > 4 files changed, 43 insertions(+), 20 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc >index e2af2e9d55..af40b5e638 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc >@@ -22,9 +22,15 @@ > > [% FOREACH item IN shelfbrowser_items %] > <td> >+ [% IF ( item.title ) %] >+ [% img_title = item.title %] >+ [% ELSE %] >+ [% img_title = item.biblionumber %] >+ [% END %] >+ > <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% item.biblionumber | uri %]&shelfbrowse_itemnumber=[% item.itemnumber | uri %]#shelfbrowser"> > [% IF ( OPACLocalCoverImages ) %] >- <div title="[% item.biblionumber |url %]" class="[% item.biblionumber | html %] thumbnail-shelfbrowser" id="local-thumbnail-shelf-[% item.biblionumber | html %]"></div> >+ <div title="[% img_title | html %]" class="[% item.biblionumber | html %] thumbnail-shelfbrowser" id="local-thumbnail-shelf-[% item.biblionumber | html %]"></div> > [% END %] > [% IF ( OPACAmazonCoverImages ) %] > [% IF ( item.browser_normalized_isbn ) %] >@@ -46,14 +52,14 @@ > > [% IF ( GoogleJackets ) %] > [% IF ( item.browser_normalized_isbn ) %] >- <div title="[% item.biblionumber |url %]" class="[% item.browser_normalized_isbn | html %]" id="gbs-thumbnail-preview[% loop.count | html %]"></div> >+ <div title="[% img_title | html %]" class="[% item.browser_normalized_isbn | html %]" id="gbs-thumbnail-preview[% loop.count | html %]"></div> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] > [% END %] > [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %] > [% coce_id = item.browser_normalized_ean || item.browser_normalized_isbn | html %] >- <div title="[% item.biblionumber |url %]" class="[% coce_id | html %]" id="coce-thumbnail-preview-[% coce_id | html %]"></div> >+ <div title="[% img_title | html %]" class="[% coce_id | html %]" id="coce-thumbnail-preview-[% coce_id | html %]"></div> > [% END %] > [% IF ( BakerTaylorEnabled ) %] > [% bt_id = ( item.browser_normalized_upc || item.browser_normalized_isbn ) | html %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >index 197672c124..126dbcf2a9 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >@@ -53,8 +53,14 @@ > <div id="catalogue_detail_biblio" class="maincontent"> > > <div id="bookcover"> >+ [% IF ( biblio.title ) %] >+ [% img_title = biblio.title %] >+ [% ELSE %] >+ [% img_title = biblio.biblionumber %] >+ [% END %] >+ > [% IF ( OPACLocalCoverImages ) %] >- <div title="[% biblio.biblionumber | html %]" class="[% biblio.biblionumber | html %]" id="local-thumbnail-preview"></div> >+ <div title="[% img_title | html %]" class="[% biblio.biblionumber | html %]" id="local-thumbnail-preview"></div> > [% END %] > > [% IF ( AdlibrisEnabled && normalized_isbn ) %] >@@ -79,14 +85,14 @@ > [% END %] > > [% IF ( GoogleJackets ) %] >- <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="gbs-thumbnail-preview"></div> >+ <div title="[% img_title | html %]" class="[% normalized_isbn | html %]" id="gbs-thumbnail-preview"></div> > [% END %] > [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %] > [% coce_id = normalized_ean || normalized_isbn | html %] >- <div title="[% biblio.biblionumber | html %]" class="[% coce_id | html %]" id="coce-thumbnail-preview"></div> >+ <div title="[% img_title | html %]" class="[% coce_id | html %]" id="coce-thumbnail-preview"></div> > [% END %] > [% IF OpenLibraryCovers %] >- <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="openlibrary-thumbnail-preview"></div> >+ <div title="[% img_title | html %]" class="[% normalized_isbn | html %]" id="openlibrary-thumbnail-preview"></div> > [% END %] > [% bt_id = ( normalized_upc || normalized_isbn ) %] > [% IF ( BakerTaylorEnabled && bt_id ) %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt >index 66912e6a44..66a49d5b58 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt >@@ -270,19 +270,24 @@ > <td class="bibliocol"> > <div class="coverimages itemtype_[% SEARCH_RESULT.itemtype | html %]"> > <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]"> >+ [% IF ( SEARCH_RESULT.title ) %] >+ [% img_title = SEARCH_RESULT.title %] >+ [% ELSE %] >+ [% img_title = SEARCH_RESULT.biblionumber %] >+ [% END %] > [% IF ( OPACLocalCoverImages ) %] >- <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber | html %]" id="local-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% SEARCH_RESULT.biblionumber | html %]" id="local-thumbnail[% loop.count | html %]"></span> > [% END %] > > [% IF ( AdlibrisEnabled && SEARCH_RESULT.normalized_isbn ) %] >- <span title="[% SEARCH_RESULT.biblionumber | html %]" id="adlibris-thumbnail[% loop.count | html %]"> >+ <span title="[% img_title | html %]" id="adlibris-thumbnail[% loop.count | html %]"> > <img src="[% AdlibrisURL | html %]?isbn=[% SEARCH_RESULT.normalized_isbn | html %]" > alt="Adlibris thumbnail for ISBN: [% SEARCH_RESULT.normalized_isbn | html %]" class="adlibris-cover" /> > </span> > [% END %] > [% IF ( OPACAmazonCoverImages ) %] > [% IF ( SEARCH_RESULT.normalized_isbn ) %] >- <span title="[% SEARCH_RESULT.biblionumber | html %]" id="amazon-thumbnail[% loop.count | html %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn | html %].01.TZZZZZZZ.jpg" alt="" class="item-thumbnail" /></span> >+ <span title="[% img_title | html %]" id="amazon-thumbnail[% loop.count | html %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn | html %].01.TZZZZZZZ.jpg" alt="" class="item-thumbnail" /></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -290,7 +295,7 @@ > > [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %] > [% IF ( SEARCH_RESULT.normalized_isbn || SEARCH_RESULT.normalized_upc || SEARCH_RESULT.normalized_oclc ) %] >- <span title="[% SEARCH_RESULT.biblionumber | html %]" id="syndetics-thumbnail[% loop.count | html %]"><img src="https://secure.syndetics.com/index.aspx?isbn=[% SEARCH_RESULT.normalized_isbn | html %]/SC.GIF&client=[% SyndeticsClientCode | html %]&type=xw10&upc=[% SEARCH_RESULT.normalized_upc | html %]&oclc=[% SEARCH_RESULT.normalized_oclc | html %]" alt="" class="item-thumbnail" /></span> >+ <span title="[% img_title | html %]" id="syndetics-thumbnail[% loop.count | html %]"><img src="https://secure.syndetics.com/index.aspx?isbn=[% SEARCH_RESULT.normalized_isbn | html %]/SC.GIF&client=[% SyndeticsClientCode | html %]&type=xw10&upc=[% SEARCH_RESULT.normalized_upc | html %]&oclc=[% SEARCH_RESULT.normalized_oclc | html %]" alt="" class="item-thumbnail" /></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -298,7 +303,7 @@ > > [% IF ( GoogleJackets ) %] > [% IF ( SEARCH_RESULT.normalized_isbn ) %] >- <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% SEARCH_RESULT.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -307,7 +312,7 @@ > [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %] > [% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn | html %] > [% IF ( coce_id ) %] >- <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% coce_id | html %]" id="coce-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% coce_id | html %]" id="coce-thumbnail[% loop.count | html %]"></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -315,7 +320,7 @@ > > [% IF OpenLibraryCovers %] > [% IF SEARCH_RESULT.normalized_isbn %] >- <span title="[% SEARCH_RESULT.biblionumber | html %]" class="[% SEARCH_RESULT.normalized_isbn | html %]" id="openlibrary-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% SEARCH_RESULT.normalized_isbn | html %]" id="openlibrary-thumbnail[% loop.count | html %]"></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt >index dd99fa2788..974e4f0266 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt >@@ -323,27 +323,33 @@ > <td> > <div class="coverimages"> > <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% itemsloo.biblionumber | html %]"> >+ [% IF ( itemsloo.title ) %] >+ [% img_title = itemsloo.title %] >+ [% ELSE %] >+ [% img_title = itemsloo.biblionumber %] >+ [% END %] >+ > [% IF ( OPACLocalCoverImages ) %] >- <span title="[% itemsloo.biblionumber |url %]" class="[% itemsloo.biblionumber | html %]" id="local-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% itemsloo.biblionumber | html %]" id="local-thumbnail[% loop.count | html %]"></span> > [% END %] > [% IF ( AdlibrisEnabled && itemsloo.normalized_isbn ) %] > <img src="[% AdlibrisURL | html %]?isbn=[% itemsloo.normalized_isbn | html %]" class="adlibris-cover" alt="Adlibris cover image" /> > [% END %] > [% IF ( OPACAmazonCoverImages ) %] > [% IF ( itemsloo.normalized_isbn ) %] >- <span title="[% itemsloo.biblionumber | html %]" id="amazon-thumbnail[% loop.count | html %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% itemsloo.normalized_isbn | html %].01.TZZZZZZZ.jpg" alt="" /></span> >+ <span title="[% img_title | html %]" id="amazon-thumbnail[% loop.count | html %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% itemsloo.normalized_isbn | html %].01.TZZZZZZZ.jpg" alt="" /></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] > [% END %] > > [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %] >- <span title="[% itemsloo.biblionumber | html %]" id="syndetics-thumbnail[% loop.count | html %]"><img src="https://secure.syndetics.com/index.aspx?isbn=[% itemsloo.normalized_isbn | html %]/SC.GIF&client=[% SyndeticsClientCode | html %]&type=xw10&upc=[% itemsloo.normalized_upc | html %]&oclc=[% itemsloo.normalized_oclc | html %]" alt="" /></span> >+ <span title="[% img_title | html %]" id="syndetics-thumbnail[% loop.count | html %]"><img src="https://secure.syndetics.com/index.aspx?isbn=[% itemsloo.normalized_isbn | html %]/SC.GIF&client=[% SyndeticsClientCode | html %]&type=xw10&upc=[% itemsloo.normalized_upc | html %]&oclc=[% itemsloo.normalized_oclc | html %]" alt="" /></span> > [% END %] > > [% IF ( GoogleJackets ) %] > [% IF ( itemsloo.normalized_isbn ) %] >- <div title="[% itemsloo.biblionumber |url %]" class="[% itemsloo.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div> >+ <div title="[% img_title | html %]" class="[% itemsloo.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -352,7 +358,7 @@ > [% IF ( Koha.Preference('Coce') && Koha.Preference('CoceProviders') ) %] > [% coce_id = itemsloo.normalized_ean || itemsloo.normalized_isbn %] > [% IF ( coce_id ) %] >- <span title="[% itemsloo.biblionumber |url %]" class="[% coce_id | html %]" id="coce-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% coce_id | html %]" id="coce-thumbnail[% loop.count | html %]"></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >@@ -361,7 +367,7 @@ > > [% IF OpenLibraryCovers %] > [% IF itemsloo.normalized_isbn %] >- <span title="[% itemsloo.biblionumber | html %]" class="[% itemsloo.normalized_isbn | html %]" id="openlibrary-thumbnail[% loop.count | html %]"></span> >+ <span title="[% img_title | html %]" class="[% itemsloo.normalized_isbn | html %]" id="openlibrary-thumbnail[% loop.count | html %]"></span> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24740
:
99695
|
102096
|
102187
|
104170