From 0b9054b6c1797f92149cbcea20b643ec582cf80b Mon Sep 17 00:00:00 2001 From: Winona Salesky Date: Tue, 28 Apr 2015 22:11:57 -0400 Subject: [PATCH] Bug 13734 - RDA: Display 33xs Test Plan: 1) Apply this patch 2) Ensure you are using the default XSLT setting for the staff and opac search results and record details 3) Find or create a record with MARC tags 336,337,338 4) Perform an opac search that would show the record in the search results. 5) Click title to review record. 6) Adds fields 336, 337 and 338 to staff and opac details. Adds comma between multiple subfields and | with class='separator' between multiple datafields (e.g. two 336 fields) 7) Repeat steps 4 - 6 for the staff interface --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 43 +++++++++++++++++++++- .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 43 ++++++++++++++++++++++ 2 files changed, 85 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index 913a285..fef5301 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -392,7 +392,48 @@ - + + + + + + Content Type: + + + a + , + + | + + + + + + Media Type: + + + a + , + + | + + + + + + Carrier Type: + + + a + , + + | + + + + + + ISBN: diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl index 1c0e766..905819f 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl @@ -432,6 +432,49 @@ + + + + + + + Content Type: + + + a + , + + | + + + + + + Media Type: + + + a + , + + | + + + + + + Carrier Type: + + + a + , + + | + + + + + + ISBN: -- 2.3.2 (Apple Git-55)