1c0401e867
All new authority features will be based on the DOM indexing. To update an existing installation, do the following: [1] run perl Makefile.PL [2] make [3] make update_zebra_conf [4] copy the new koha-conf.xml to $KOHA_CONF Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 lines
357 B
XML
16 lines
357 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
<!-- Identity transform stylesheet -->
|
|
|
|
<xsl:output indent="yes"
|
|
method="xml"
|
|
version="1.0"
|
|
encoding="UTF-8"/>
|
|
|
|
<xsl:template match="node()|@*">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|