From 22f2cdda2551a75746fffe93a528509577e45c81 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 4 Oct 2024 15:22:25 +0000 Subject: [PATCH] Bug 38096: Staff: Display 857 to detail and results pages This work DRYs the 856 display logic to renderMARCOnlineResourceField. This was previously written in detail and results pages. Once this single function exists, 857 can also make use of it to be displayed using the same logic/features already present for 856. 1) If testing k-t-d, add the test data for test plan (skip if sandboxes): updatedatabase 2) Force reindex of this biblio by saving it, visit the biblio: /cgi-bin/koha/catalogue/detail.pl?biblionumber=76 3) Click "Edit" -> "Edit record" -> "Save" 4) Open the following URL's, preferably on 4 different browser tabs (we're using biblio 76 for this test): /cgi-bin/koha/catalogue/search.pl?q=music (first record [76] is the one we're testing) /cgi-bin/koha/catalogue/detail.pl?biblionumber=76 /cgi-bin/koha/opac-search.pl?idx=&q=music (first record [76] is the one we're testing) /cgi-bin/koha/opac-detail.pl?biblionumber=76 5) Verify that on all pages there are 3 instances of 856 (Online resources) and 3 instances of 857 (Online archive resources) with their respective link labels and URLs. 6) Click on the "Koha community no protocol" link for 856 and 857, notice the 'http://' protocol is added. 7) Change the values of OPACDisplay856uAsImage + Display856uAsImage and refresh the respective page. Verify it works as expected (respects the system preference). Note: This only applies for 856, not 857 (out of scope here). 8) Change the value of OPACURLOpenInNewWindow and click on the links before and after. Verify they respect the system preference. Signed-off-by: Caroline Cyr La Rose --- .../en/xslt/MARC21slim2intranetDetail.xsl | 60 +++++++----------- .../en/xslt/MARC21slim2intranetResults.xsl | 62 +++++++------------ .../prog/en/xslt/MARC21slimUtils.xsl | 55 ++++++++++++++++ .../en/xslt/MARC21slim2OPACResults.xsl | 1 + 4 files changed, 99 insertions(+), 79 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index 1f255b10f1..0bf50e79ee 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -920,48 +920,30 @@ + - Online resources: - - - - - - - - - - - - - - 100 - - - - y3z - - - - - - - - - Click here to access online - - - - - - - - | - + + Online resources: + + 856 + + + + + + - - + + + + + Online archive resources: + + 857 + + + diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl index e40e94a435..07993a37c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl @@ -977,48 +977,30 @@ + - - Online resources: - - - - - - - - - - - - - - 100 - - - - y3z - - - - - - - - - Click here to access online - - - - - - - - | - - - + + Online resources: + + 856 + + + + + + + + + + + + Online archive resources: + + 857 + + + diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl index 45e0ee2252..ba5aff416c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl @@ -691,6 +691,61 @@ + + + + + + + + + + + + + + + + + + + 100 + + + + y3z + + + + + + + + + Click here to access online + + + + + + + + | + + + + + + diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl index 292a3c560e..5110ddb5a6 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl @@ -1243,6 +1243,7 @@ 857 + -- 2.34.1