Bugzilla – Attachment 102024 Details for
Bug 25011
Improve display of Production credits (MARC21 508) in OPAC and staff
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25011: Improve display of MARC21 508 - Production credits in staff and OPAC
Bug-25011-Improve-display-of-MARC21-508---Producti.patch (text/plain), 4.57 KB, created by
Katrin Fischer
on 2020-03-27 23:11:42 UTC
(
hide
)
Description:
Bug 25011: Improve display of MARC21 508 - Production credits in staff and OPAC
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-03-27 23:11:42 UTC
Size:
4.57 KB
patch
obsolete
>From c99219ffc0052e01bdbb747d0b37c3d55a72ddea Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Fri, 27 Mar 2020 23:48:56 +0100 >Subject: [PATCH] Bug 25011: Improve display of MARC21 508 - Production credits > in staff and OPAC > >Makes some tiny changes to improve display and consistency between >OPAC and staff: >- Capitalization fix: Production Credits - Production credits >- Changes div to span avoiding display issues >- Make sequence of fields in display match (505, 508, 586) > >To test: >- Catalog one or more records with none, one and multiple 508 $a >- Check and compare the staff and OPAC detail pages, both > should display the production credits information correctly >--- > .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 26 +++++++++++----------- > .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 22 +++++++++--------- > 2 files changed, 24 insertions(+), 24 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >index d44322d6ff..e00cbb99d9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >+++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >@@ -1009,6 +1009,19 @@ > </span> > </xsl:if> > >+ <!-- 508 --> >+ <xsl:if test="marc:datafield[@tag=508]"> >+ <span class="results_summary prod_credits"> >+ <span class="label">Production credits: </span> >+ <xsl:for-each select="marc:datafield[@tag=508]"> >+ <xsl:call-template name="subfieldSelectSpan"> >+ <xsl:with-param name="codes">a</xsl:with-param> >+ </xsl:call-template> >+ <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> >+ </xsl:for-each> >+ </span> >+ </xsl:if> >+ > <!-- 583 --> > <xsl:if test="marc:datafield[@tag=583]"> > <xsl:for-each select="marc:datafield[@tag=583]"> >@@ -1030,19 +1043,6 @@ > </xsl:for-each> > </xsl:if> > >- <!-- 508 --> >- <xsl:if test="marc:datafield[@tag=508]"> >- <div class="results_summary prod_credits"> >- <span class="label">Production credits: </span> >- <xsl:for-each select="marc:datafield[@tag=508]"> >- <xsl:call-template name="subfieldSelectSpan"> >- <xsl:with-param name="codes">a</xsl:with-param> >- </xsl:call-template> >- <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> >- </xsl:for-each> >- </div> >- </xsl:if> >- > <!-- 773 --> > <xsl:if test="marc:datafield[@tag=773]"> > <xsl:for-each select="marc:datafield[@tag=773]"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >index 0ade99700c..cd0bf1c109 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >@@ -1103,17 +1103,17 @@ > </xsl:if> > > <!-- 508 --> >- <xsl:if test="marc:datafield[@tag=508]"> >- <div class="results_summary prod_credits"> >- <span class="label">Production Credits: </span> >- <xsl:for-each select="marc:datafield[@tag=508]"> >- <xsl:call-template name="subfieldSelectSpan"> >- <xsl:with-param name="codes">a</xsl:with-param> >- </xsl:call-template> >- <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> >- </xsl:for-each> >- </div> >- </xsl:if> >+ <xsl:if test="marc:datafield[@tag=508]"> >+ <span class="results_summary prod_credits"> >+ <span class="label">Production credits: </span> >+ <xsl:for-each select="marc:datafield[@tag=508]"> >+ <xsl:call-template name="subfieldSelectSpan"> >+ <xsl:with-param name="codes">a</xsl:with-param> >+ </xsl:call-template> >+ <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if> >+ </xsl:for-each> >+ </span> >+ </xsl:if> > > <!-- 586 --> > <xsl:if test="marc:datafield[@tag=586]"> >-- >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 25011
:
102022
|
102024
|
102059
|
103119