Bugzilla – Attachment 98939 Details for
Bug 13327
OPACPopupAuthorsSearch doesn't work with XSLT views
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13327: OPACPopupAuthorsSearch doesn't work with XSLT views
Bug-13327-OPACPopupAuthorsSearch-doesnt-work-with-.patch (text/plain), 27.67 KB, created by
Owen Leonard
on 2020-02-14 12:42:40 UTC
(
hide
)
Description:
Bug 13327: OPACPopupAuthorsSearch doesn't work with XSLT views
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2020-02-14 12:42:40 UTC
Size:
27.67 KB
patch
obsolete
>From 026a83bf3746f3cead8d2fb870c6bd35dba89608 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 12 Aug 2019 11:38:57 +0000 >Subject: [PATCH] Bug 13327: OPACPopupAuthorsSearch doesn't work with XSLT > views > >This patch reimplements the OPACPopupAuthorsSearch feature so that it >will work in the XSLT view. > >To test, apply the patch and rebuild the OPAC CSS >(https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). > > - View the detail page for a bibliographic record in the OPAC. > Test under the following conditions: > > - OPACPopupAuthorsSearch ENABLED, OPACXSLTDetailsDisplay "default" > - OPACPopupAuthorsSearch ENABLED, OPACXSLTDetailsDisplay empty > - OPACPopupAuthorsSearch DISABLED, OPACXSLTDetailsDisplay "default" > - OPACPopupAuthorsSearch DISABLED, OPACXSLTDetailsDisplay empty > >In each of these cases, test the detail page's listing of additional >authors/contributors and subjects. Test records which have both multiple >contributors or subjects and which have only one author or subject. > >When OPACPopupAuthorsSearch is turned on, verify that the author/subject >selection modal appears and that your selections are correctly combined >to build a search string. > >Note that OPACPopupAuthorsSearch feature has a problem with terms >containing parentheses. The issue predates this patch. > >Also note that the QA tools will give a false positive about Bootstrap >button styles. This rule only applies to the staff client. >--- > .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 263 ++++++++------------- > .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 18 +- > 2 files changed, 110 insertions(+), 171 deletions(-) > >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 9ab7a1017e9..c0e31fe73ca 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >@@ -125,7 +125,7 @@ > [% XSLTBloc | $raw %] > [% ELSE %] > <h1 class="title">[% INCLUDE 'biblio-title.inc' %]</h1> >- [% IF ( author ) %]<h5 class="author">by <a href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %] >+ [% IF ( author ) %]<h5 class="author">by <a class="contributors" href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %] > > <span class="results_summary">[% UNLESS ( item_level_itypes ) %] > [ >@@ -141,60 +141,18 @@ > [% IF ( MARCAUTHORS ) %] > <div class="results_summary"> > <span class="label">Additional authors:</span> >- [% IF OPACPopupAuthorsSearch %] >- <!-- Author search term selection modal --> >- <div id="authorSearch" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="authorSearchLabel" aria-hidden="true"> >- <div class="modal-header"> >- <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="authorSearchLabel">Select the item(s) to search</h3> >- </div> >- <div class="modal-body"> >- <input type="checkbox" onchange="checkAll(this, '#authorsList')" /> <b>All</b> >- <ul id="authorsList"> >- [% FOREACH MARCAUTHOR IN MARCAUTHORS %] >- <li> >- [% IF (MARCAUTHOR.authoritylink) %] >- <input type="checkbox" name="checkbox" >- id="author_[% loop.count | html %]" >- onclick="makeAuthorRequest()" >- value="an:[% MARCAUTHOR.authoritylink | html %]" /> >- [% ELSE %] >- <input type="checkbox" name="checkbox" >- id="author_[% loop.count | html %]" >- onclick="makeAuthorRequest()" >- value="au,wrdl:[% FOREACH SUBFIELD IN MARCAUTHOR.MARCAUTHOR_SUBFIELDS_LOOP %][% SUBFIELD.value |url %][% UNLESS (loop.last) %]+[% END %][% END %]" /> >- [% END %] >- <label for="author_[% loop.count | html %]"> >- [% FOREACH SUBFIELD IN MARCAUTHOR.MARCAUTHOR_SUBFIELDS_LOOP %] >- [% SUBFIELD.value | html %] >- [% END %] >- </label> >- </li> >- [% END # /FOREACH MARCAUTHORS %] >- </ul> >- </div> >- <div class="modal-footer"> >- <a id="validAuthorSearch" href="#" class="btn btn-primary">Search</a> >- <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a> >- </div> >- </div> >- [% END # /OPACPopupAuthorsSearch %] >- > [% FOREACH MARCAUTHOR IN MARCAUTHORS %] >- [% authorsloop = loop %] > [% FOREACH MARCAUTHOR_SUBFIELDS_LOO IN MARCAUTHOR.MARCAUTHOR_SUBFIELDS_LOOP %] > [% MARCAUTHOR_SUBFIELDS_LOO.separator | html %] >- [% IF Koha.Preference( 'OPACPopupAuthorsSearch' ) == 1 %] >- <a role="button" data-toggle="modal" title="â¡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" >- class="showauthors" data-count="[% authorsloop.count | html %]" >- href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]#authorSearch">[% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a> >+ [% IF ( MARCAUTHOR.authoritylink ) %] >+ <a title="â¡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors authority_link" data-authid="[% MARCAUTHOR.authoritylink | html %]" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]"> > [% ELSE %] >- <a title="â¡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" >- class="showauthors" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a> >+ <a title="â¡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]"> > [% END %] >+ [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a> > [% END %] > [% IF (MARCAUTHOR.authoritylink) %] >- <a class='authlink' href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><img style="vertical-align:middle" height="15" width="15" src="[% interface | html %]/[% theme | html %]/images/filefind.png"></a> >+ <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><i class="fa fa-search"></i></a> > [% END %] > [% IF IDREF and MARCAUTHOR.unimarc3 %] > <a href="/cgi-bin/koha/opac-idref.pl?unimarc3=[% MARCAUTHOR.unimarc3 | uri %]" title="IdRef" rel="gb_page_center[600,500]">IdRef</a> >@@ -265,64 +223,23 @@ > [% END %] > > [% IF ( MARCSUBJCTS ) %] >- <div class="results_summary subject"> >+ <div class="results_summary subjects"> > <span class="label">Subject(s):</span> > >- [% IF OPACPopupAuthorsSearch %] >- <!-- Search term selection modal --> >- <div id="subjectSearch" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="subjectSearchLabel" aria-hidden="true"> >- <div class="modal-header"> >- <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="subjectSearchLabel">Select the term(s) to search</h3> >- </div> >- <div id="subjectsList" class="modal-body"> >- <input type="checkbox" id="all_subjects" onchange="checkAll(this, '#subjectsList')" /> >- <label for="all_subjects"> >- <b>All</b> >- </label> >- [% FOREACH MARCSUBJCT IN MARCSUBJCTS %] >- [% subjectsloop = loop %] >- [% IF MARCSUBJCT.authoritylink %] >- <ul id="subjectsList[% loop.count | html %]" data-authid="[% MARCSUBJCT.authoritylink | html %]"> >- [% ELSE %] >- <ul id="subjectsList[% loop.count | html %]"> >- [% END %] >- [% FOREACH SUBFIELD IN MARCSUBJCT.MARCSUBJECT_SUBFIELDS_LOOP %] >- <li> >- <input type="checkbox" onclick="makeSubjectRequest()" name="checkbox" id="subject_[% subjectsloop.count | html %]_[% loop.count | html %]" value="su,wrdl:[% SUBFIELD.value |url %]" /> >- <label for="subject_[% subjectsloop.count | html %]_[% loop.count | html %]"> >- [% SUBFIELD.value | html %] >- </label> >- </li> >- [% END %] >- </ul> >- [% END %] >- </div> >- <div class="modal-footer"> >- <a href="#" id="validSubjectSearch" class="btn btn-primary">Search</a> >- <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a> >- </div> >- </div> >- [% END # /OPACPopupAuthorsSearch%] >- > [% FOREACH MARCSUBJCT IN MARCSUBJCTS %] > [% subjectsloop = loop %] > [% FOREACH SUBFIELD IN MARCSUBJCT.MARCSUBJECT_SUBFIELDS_LOOP %] > [% SUBFIELD.separator | html %] >- [% IF Koha.Preference( 'OPACPopupAuthorsSearch' ) == 1 %] >- <a role="button" data-toggle="modal" title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]#subjectSearch" onclick="showSubjects(this, [% subjectsloop.count | html %], [% loop.count | html %]); return false;">[% SUBFIELD.value | html %]</a> >- [% ELSE %] >- <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a> >- [% END %] >+ <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" class="subject" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a> > [% END %] > [% IF (MARCSUBJCT.authoritylink) %] >- <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><img style="vertical-align:middle" height="15" width="15" src="[% interface | html %]/[% theme | html %]/images/filefind.png" /></a> >+ <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><i class="fa fa-search"></i></a> > [% END %] > [% UNLESS ( loop.last ) %] | [% END %] > [% END # / FOREACH MARCSUBJCTS %] > </div> > [% ELSE # /IF MARCSUBJCTS %] >- [% IF ( subjects ) %]<span class="results_summary"><span class="label">Subject(s):</span> [% FOREACH subject IN subjects %]<a href="/cgi-bin/koha/opac-search.pl?q=su:[% subject.subject |url %]">[% subject.subject | html %]</a> | [% END %]</span>[% END %] >+ [% IF ( subjects ) %]<span class="results_summary subjects"><span class="label">Subject(s):</span> [% FOREACH subject IN subjects %]<a class="subject" href="/cgi-bin/koha/opac-search.pl?q=su:[% subject.subject |url %]">[% subject.subject | html %]</a> | [% END %]</span>[% END %] > [% END %] > > [% IF ( copyrightdate ) %] >@@ -1403,6 +1320,30 @@ > </table> > [% END %][%# end of items_table block %] > >+[% IF ( OPACPopupAuthorsSearch ) %] >+ <!-- Modal --> >+ <div class="modal hide" id="multiSearch" tabindex="-1" role="dialog" aria-labelledby="multiSearchLabel"> >+ <div class="modal-dialog" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> >+ <h3 id="multiSearchLabel">Select the item(s) to search</h3> >+ </div> >+ <div class="modal-body"> >+ <a href="#" class="check_all"><i class="fa fa-check"></i> Select all</a> <span class="sep">|</span> >+ <a href="#" class="check_none"><i class="fa fa-remove"></i> Select none</a> >+ <ul id="termsList"> >+ </ul> >+ </div> >+ <div class="modal-footer"> >+ <a id="validMultiSearch" href="#" class="btn btn-primary">Search</a> >+ <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a> >+ </div> >+ </div> <!-- /.modal-content --> >+ </div> <!-- /.modal-dialog --> >+ </div> <!-- /#myModal --> >+[% END %] >+ > [% BLOCK jsinclude %] > [% INCLUDE 'datatables.inc' %] > [% INCLUDE 'columns_settings.inc' %] >@@ -1426,6 +1367,7 @@ > [% END %] > > <script> >+ var OPACPopupAuthorsSearch = "[% Koha.Preference('OPACPopupAuthorsSearch') | html %]"; > [% IF ( OpacHighlightedWords ) %] > var q_array = new Array(); // holds search terms if available > >@@ -1771,85 +1713,86 @@ > } > } > [% END # / IF IDreamBooksReviews || IDreamBooksReadometer %] >-</script> >- >-[% IF OPACPopupAuthorsSearch %] >- <script> >- function showAuthors(element){ >- var authornumber = $(element).attr("data-count"); >- >- // Check checkbox related to the clicked link >- $("#authorsList input[type='checkbox']").attr('checked', false); >- $("#author_"+authornumber).attr('checked', true); > >- makeAuthorRequest(); >- } >+ $(document).ready(function() { >+ if( OPACPopupAuthorsSearch == "1" ){ >+ var terms = { >+ contributors : { >+ "label" : "author", >+ "keyword_search" : "au:", >+ }, >+ subject : { >+ "label" : "subject", >+ "keyword_search" : "su:", >+ } >+ } >+ $(".contributors,.subject").on("click", function(e){ >+ e.preventDefault(); >+ var term = $(this).attr("class"); >+ var selected_term = $(this).text(); >+ var term_links = $("." + term ); >+ if( term_links.length > 1 ){ >+ term_links.each(function( index ){ >+ var authid = ""; >+ var preselected = false; >+ var search_label = $(this).text().trim(); >+ if( $(this).text() == selected_term ){ preselected = true } >+ if( $(this).hasClass("authority_link") ){ >+ authid = $(this).data("authid"); >+ search_string = "an:" + authid; >+ } else { >+ search_string = terms[term]["keyword_search"] + encodeURIComponent( search_label ); >+ } >+ var termLink = $("<li>") >+ .append( $("<input>", { type: "checkbox", class: "select_term", value: search_string, id: terms[term]["label"] + index } ).prop("checked", preselected ) ) >+ .append(" ") >+ .append( $("<label>", { for: terms[term]["label"] + index, text: search_label } ) ) >+ $("#termsList").append( termLink ); >+ $("#multiSearch").modal("show"); >+ }); >+ } else { >+ location.href = $(this).attr("href"); >+ } >+ }); > >- function checkAll(checkbox, elem) { >- var check = $(checkbox).attr('checked') ? true : false; >- $(elem).find("input[type='checkbox']").attr('checked', check); >- elem == "#authorsList" ? makeAuthorRequest() : makeSubjectRequest(); >- } >+ $("#multiSearch").on("hide.bs.modal", function(){ >+ $("#termsList").html(""); >+ }); > >- function makeAuthorRequest(){ >- var values = []; >+ $(".check_all").on("click", function(e){ >+ e.preventDefault(); >+ $(".select_term").each(function(){ >+ $(this).prop("checked", true ); >+ }); >+ }); > >- $("#authorsList").find("input[type='checkbox']:checked").each(function () { >- values.push($(this).val()); >- }); >+ $(".check_none").on("click", function(e){ >+ e.preventDefault(); >+ $(".select_term").each(function(){ >+ $(this).prop("checked", false ); >+ }); >+ }); > >- if (values.length > 0) { >- var request = "/cgi-bin/koha/opac-search.pl?q=" + values.join(' and '); >- $("#validAuthorSearch").attr("href", request); >- } else { >- $("#validAuthorSearch").removeAttr("href"); >+ $("#validMultiSearch").on("click", function(e){ >+ e.preventDefault(); >+ multiSearchRequest(); >+ }); > } >+ }); > >- } >- >- //Subjects >- function showSubjects(element, subjectnumber, subfieldnumber){ >- >- // Check checkbox related to the clicked link >- $("#subjectsList input[type='checkbox']").attr('checked', false); >- $("#subject_"+subjectnumber+"_"+subfieldnumber).attr('checked', true); >- >- makeSubjectRequest(); >- >- } >- >- function makeSubjectRequest() { >+ function multiSearchRequest(){ > var values = []; >- $("#subjectsList > ul").each(function() { >- var all_checked = true; >- var local_values = []; >- $(this).find('input[type="checkbox"]').each(function() { >- if($(this).attr('checked')) { >- local_values.push($(this).val()); >- } else { >- all_checked = false; >- } >- }); >- var authid = $(this).attr('data-authid'); >- if(all_checked && authid) { >- values.push('an:' + authid); >- } else { >- values = values.concat(local_values); >+ $(".select_term").each(function(){ >+ if( $(this).prop("checked") ){ >+ values.push( $(this).val() ); > } > }); >- if(values.length > 0) { >+ >+ if (values.length > 0) { > var request = "/cgi-bin/koha/opac-search.pl?q=" + values.join(' and '); >- $("#validSubjectSearch").attr('href', request); >- } else { >- $("#validSubjectSearch").removeAttr("href"); >+ location.href = request; > } >+ > } >- $(document).ready(function() { >- $("a.showauthors").click(function(e){ >- e.preventDefault(); >- showAuthors(this); >- }); >- }); > </script> >-[% END # / IF OPACPopupAuthorsSearch %] > [% END %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >index 152b0b5a762..0cfd5b23176 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >@@ -778,6 +778,7 @@ > <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6'][not(@tag=655)]"> > <span property="keywords"> > <a> >+ <xsl:attribute name="class">subject</xsl:attribute> > <xsl:choose> > <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'"> > <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute> >@@ -812,11 +813,8 @@ > <xsl:if test="marc:subfield[@code=9]"> > <a class='authlink'> > <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute> >- <xsl:element name="img"> >- <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute> >- <xsl:attribute name="style">vertical-align:middle</xsl:attribute> >- <xsl:attribute name="height">15</xsl:attribute> >- <xsl:attribute name="width">15</xsl:attribute> >+ <xsl:element name="i"> >+ <xsl:attribute name="class">fa fa-search</xsl:attribute> > </xsl:element> > </a> > </xsl:if> >@@ -863,7 +861,7 @@ > <a class='authlink'> > <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute> > <xsl:element name="img"> >- <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute> >+ <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/z.png</xsl:attribute> > <xsl:attribute name="alt"></xsl:attribute> > <xsl:attribute name="height">15</xsl:attribute> > <xsl:attribute name="width">15</xsl:attribute> >@@ -1565,6 +1563,7 @@ > <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute> > </xsl:otherwise> > </xsl:choose> >+ <xsl:attribute name="class">contributors</xsl:attribute> > <span resource="#record"><span> > <xsl:choose> > <xsl:when test="substring(@tag, 1, 1)='1'"> >@@ -1793,11 +1792,8 @@ > <xsl:if test="marc:subfield[@code=9]"> > <a class='authlink'> > <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute> >- <xsl:element name="img"> >- <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute> >- <xsl:attribute name="style">vertical-align:middle</xsl:attribute> >- <xsl:attribute name="height">15</xsl:attribute> >- <xsl:attribute name="width">15</xsl:attribute> >+ <xsl:element name="i"> >+ <xsl:attribute name="class">fa fa-search</xsl:attribute> > </xsl:element> > </a> > </xsl:if> >-- >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 13327
:
96919
|
97932
|
98885
|
98904
|
98939
|
99002
|
99250
|
99296
|
99297
|
99770
|
99771