Lines 6-12
Link Here
|
6 |
xmlns:marc="http://www.loc.gov/MARC21/slim" |
6 |
xmlns:marc="http://www.loc.gov/MARC21/slim" |
7 |
xmlns:items="http://www.koha-community.org/items" |
7 |
xmlns:items="http://www.koha-community.org/items" |
8 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
8 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
9 |
exclude-result-prefixes="marc items"> |
9 |
xmlns:str="http://exslt.org/strings" |
|
|
10 |
exclude-result-prefixes="marc items str"> |
10 |
|
11 |
|
11 |
<xsl:template name="datafield"> |
12 |
<xsl:template name="datafield"> |
12 |
<xsl:param name="tag"/> |
13 |
<xsl:param name="tag"/> |
Lines 291-297
Link Here
|
291 |
<a> |
292 |
<a> |
292 |
<xsl:attribute name="href"> |
293 |
<xsl:attribute name="href"> |
293 |
<xsl:text>/cgi-bin/koha/opac-search.pl?q=su:</xsl:text> |
294 |
<xsl:text>/cgi-bin/koha/opac-search.pl?q=su:</xsl:text> |
294 |
<xsl:value-of select="marc:subfield[@code='a']"/> |
295 |
<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/> |
295 |
</xsl:attribute> |
296 |
</xsl:attribute> |
296 |
<xsl:call-template name="chopPunctuation"> |
297 |
<xsl:call-template name="chopPunctuation"> |
297 |
<xsl:with-param name="chopString"> |
298 |
<xsl:with-param name="chopString"> |
Lines 355-363
Link Here
|
355 |
<xsl:otherwise> |
356 |
<xsl:otherwise> |
356 |
<xsl:attribute name="href"> |
357 |
<xsl:attribute name="href"> |
357 |
<xsl:text>/cgi-bin/koha/opac-search.pl?q=au:</xsl:text> |
358 |
<xsl:text>/cgi-bin/koha/opac-search.pl?q=au:</xsl:text> |
358 |
<xsl:value-of select="marc:subfield[@code='a']"/> |
359 |
<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/> |
359 |
<xsl:text> </xsl:text> |
360 |
<xsl:text>%20</xsl:text> |
360 |
<xsl:value-of select="marc:subfield[@code='b']"/> |
361 |
<xsl:value-of select="str:encode-uri(marc:subfield[@code='b'], true())"/> |
361 |
</xsl:attribute> |
362 |
</xsl:attribute> |
362 |
</xsl:otherwise> |
363 |
</xsl:otherwise> |
363 |
</xsl:choose> |
364 |
</xsl:choose> |
364 |
- |
|
|