From 99e3da58d4e78572003ee232456ccf3652596f62 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 25 Jul 2014 12:23:58 +0200 Subject: [PATCH] Bug 12501: Show dissertation note (MARC21 502) in XSLT results Bug 9356 added the dissertation note from MARC21 502 to the staff and OPAC detail pages. This patch adds it to the result list. 1) Catalog a record with 502 Examples: http://www.loc.gov/marc/bibliographic/bd502.html 2) Important: Wait until the record got indexed by Zebra or index it manually. 3) Verify your note shows up on the detail pages in staff and OPAC 4) Verfiy note also shows up on the result pages in staff and OPAC 5) Hide the dissertation note from display: OpacUserCSS: .diss_note { display:none; } IntranetUserCSS: .diss_note { display:none; } 6) Verify CSS works and all looks like before... Signed-off-by: Bernardo Gonzalez Kriegel Work as describes, value can be hidden using css, no koha-qa errors Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- .../prog/en/xslt/MARC21slim2intranetResults.xsl | 13 +++++++++++++ .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl index f3a1761355..2a49c1c272 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl @@ -754,6 +754,19 @@ + + + + Dissertation note: + + + abcdgo + + + + + + Description: diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl index ea6af38737..9dba489a60 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl @@ -913,6 +913,19 @@ + + + + Dissertation note: + + + abcdgo + + + + + + -- 2.39.2