Nick Clemens
04f172d344
This patch adds atuh links tot he marc preview, and makes detial auth links open in a new tab/window and consolidates some code To test: 1 - View a record linked to authorities in staff client 2 - Note links have no hover text, and open in same window 3 - Apply patch 4 - Restart and reload 5 - Note links now have a hint 6 - Note they open in new window 7 - View marc preview and note there are similar links Signed-off-by: Michaela Sieber <michaela.sieber@kit.edu> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
73 lines
2.4 KiB
XML
73 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE stylesheet>
|
|
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="html" encoding="UTF-8"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head><title>MARC View</title></head>
|
|
<body>
|
|
<xsl:apply-templates/>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="marc:record">
|
|
<table>
|
|
<tr>
|
|
<th style="white-space:nowrap">
|
|
000
|
|
</th>
|
|
<td colspan="2"></td>
|
|
<td>
|
|
<xsl:value-of select="marc:leader"/>
|
|
</td>
|
|
</tr>
|
|
<xsl:apply-templates select="marc:datafield|marc:controlfield"/>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="marc:controlfield">
|
|
<tr>
|
|
<th style="white-space:nowrap">
|
|
<xsl:value-of select="@tag"/>
|
|
</th>
|
|
<td colspan="2"></td>
|
|
<td>
|
|
<xsl:value-of select="."/>
|
|
</td>
|
|
</tr>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="marc:datafield">
|
|
<tr>
|
|
<th style="white-space:nowrap">
|
|
<xsl:value-of select="@tag"/>
|
|
</th>
|
|
<td><xsl:value-of select="@ind1"/></td>
|
|
<td><xsl:value-of select="@ind2"/></td>
|
|
<td><xsl:apply-templates select="marc:subfield"/></td>
|
|
</tr>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="marc:subfield">
|
|
<strong>_<xsl:value-of select="@code"/></strong>
|
|
<xsl:text> </xsl:text>
|
|
<xsl:choose>
|
|
<xsl:when test="@code = '9'">
|
|
<a>
|
|
<xsl:attribute name='href'>/cgi-bin/koha/authorities/detail.pl?authid=<xsl:value-of select="."/></xsl:attribute>
|
|
<xsl:attribute name="title">View authority record</xsl:attribute>
|
|
<xsl:attribute name='target'>_blank</xsl:attribute>
|
|
<xsl:value-of select="."/>
|
|
</a>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="."/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()"><xsl:text> </xsl:text></xsl:when><xsl:otherwise><br /></xsl:otherwise></xsl:choose>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|