/usr/share/tellico/tellico2onix.xsl is in tellico-data 3.1.2-0.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | <?xml version="1.0"?>
<!-- WARNING: Tellico uses tc as the internal namespace declaration, and it must be identical here!! -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:tc="http://periapsis.org/tellico/"
exclude-result-prefixes="tc"
version="1.0">
<!--
===================================================================
Tellico XSLT file - used for exporting to ONIX
Copyright (C) 2005-2009 Robby Stephenson <robby@periapsis.org>
This XSLT stylesheet is designed to be used with the 'Tellico'
application, which can be found at http://tellico-project.org
Most of the schema for this spreadsheet was copied from the
Alexandria application,(C) Laurent Sansonetti, released under
GNU GPL, as is Tellico.
===================================================================
-->
<!-- import common templates -->
<!-- location depends on being installed correctly -->
<xsl:import href="tellico-common.xsl"/>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"
doctype-system="http://www.editeur.org/onix/2.1/reference/onix-international.dtd"/>
<!-- sent date -->
<xsl:param name="sentDate"/>
<xsl:param name="version"/>
<xsl:template match="/">
<xsl:apply-templates select="tc:tellico"/>
</xsl:template>
<xsl:template match="tc:tellico">
<!-- This stylesheet is designed for Tellico document syntax version 12 -->
<xsl:call-template name="syntax-version">
<xsl:with-param name="this-version" select="'12'"/>
<xsl:with-param name="data-version" select="@syntaxVersion"/>
</xsl:call-template>
<ONIXMessage>
<xsl:apply-templates select="tc:collection"/>
</ONIXMessage>
</xsl:template>
<xsl:template match="tc:collection[not(@type=2) and not(@type=5)]">
<xsl:message terminate="yes">
<xsl:text>ONIX export only works for book collections and bibliographies.</xsl:text>
</xsl:message>
</xsl:template>
<xsl:template match="tc:collection[@type=2 or @type=5]">
<Header>
<SentDate>
<xsl:value-of select="$sentDate"/>
</SentDate>
<MessageNote>
<xsl:value-of select="@title"/>
</MessageNote>
</Header>
<xsl:apply-templates select="tc:entry"/>
</xsl:template>
<xsl:template match="tc:entry">
<Product>
<RecordReference>
<xsl:value-of select="@id"/>
</RecordReference>
<NotificationType>03</NotificationType>
<RecordSourceName>
<xsl:text>Tellico</xsl:text>
<xsl:if test="string-length($version) > 0">
<xsl:value-of select="concat(' ', $version)"/>
</xsl:if>
</RecordSourceName>
<ISBN>
<xsl:value-of select="translate(tc:isbn, '-', '')"/>
</ISBN>
<ProductForm>BA</ProductForm> <!-- book -->
<DistinctiveTitle>
<xsl:value-of select=".//tc:title[1]"/>
</DistinctiveTitle>
<xsl:for-each select=".//tc:author">
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonName>
<xsl:value-of select="."/>
</PersonName>
</Contributor>
</xsl:for-each>
<xsl:if test="tc:comments">
<OtherText>
<TextTypeCode>12</TextTypeCode>
<TextFormat>00</TextFormat> <!-- ascii -->
<Text>
<xsl:value-of select="tc:comments"/>
</Text>
</OtherText>
</xsl:if>
<!-- png files are not supported by ONIX -->
<xsl:variable name="lowercase" select="translate(tc:cover, 'JPEGIF', 'jpegif')"/>
<xsl:if test="substring($lowercase, string-length($lowercase)-2)='jpg' or
substring($lowercase, string-length($lowercase)-3)='jpeg' or
substring($lowercase, string-length($lowercase)-2)='gif'">
<MediaFile>
<MediaFileTypeCode>04</MediaFileTypeCode>
<MediaFileFormatCode>
<xsl:choose>
<xsl:when test="substring($lowercase, string-length($lowercase)-2)='gif'">
<xsl:text>02</xsl:text>
</xsl:when>
<xsl:when test="substring($lowercase, string-length($lowercase)-2)='jpg' or
substring($lowercase, string-length($lowercase)-3)='jpeg'">
<xsl:text>03</xsl:text>
</xsl:when>
</xsl:choose>
</MediaFileFormatCode>
<MediaFileLinkTypeCode>06</MediaFileLinkTypeCode>
<MediaFileLink>
<xsl:text>images/</xsl:text>
<xsl:value-of select="tc:cover"/>
</MediaFileLink>
</MediaFile>
</xsl:if>
<ProductWebsite>
<ProductWebsiteDescription>Amazon</ProductWebsiteDescription>
<ProductWebsiteLink>
<xsl:text>http://www.amazon.com/exec/obidos/ASIN/</xsl:text>
<xsl:value-of select="translate(tc:isbn, '-', '')"/>
</ProductWebsiteLink>
</ProductWebsite>
<PublisherName>
<xsl:value-of select=".//tc:publisher[1]"/>
</PublisherName>
</Product>
</xsl:template>
</xsl:stylesheet>
<!-- Local Variables: -->
<!-- sgml-indent-step: 1 -->
<!-- sgml-indent-data: 1 -->
<!-- End: -->
|