From 7bebc1e111dccb94dad1a48288efe8ad991d1fe1 Mon Sep 17 00:00:00 2001 From: Jane Wagner Date: Mon, 2 Nov 2009 15:05:01 -0500 Subject: [PATCH] Bug 3750 Modify XSLT to display subfield n of 111/711 and remove period after 110/710 If a 111/711 uses a subfield n (Number of part/section/meeting), XSLT wasn't displaying it which made for an incomplete display. e.g., International Conference on Concurrency Theory 1999 : Eindhoven, Netherlands) instead of 10th International Conference on Concurrency Theory 1999 : Eindhoven, Netherlands) I've added it to show before subfield a if present. I've also removed the period that XSLT puts in the results and display after the last occurrence of a 110/710. It's fairly standard practice for these entries to have a period in the MARC record, so the XSLT display was showing a double period. Signed-off-by: Galen Charlton --- .../opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl | 10 +++++++++- .../opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl | 11 ++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index 3c7ca28dbe..fc345a41fb 100644 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -138,10 +138,18 @@ - .; + ; + + + + + n + + + diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl index 2cf8d604be..0038191e62 100644 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl @@ -460,7 +460,7 @@ - . + ; @@ -475,6 +475,15 @@ + + + + n + + + + + . -- 2.39.5