/usr/share/tellico/tellico-by-title.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 | <?xml version="1.0"?>
<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 - sort by author
Copyright (C) 2003-2009 Robby Stephenson <robby@periapsis.org>
This XSLT stylesheet is designed to be used with XML data files
from the 'tellico' application, which can be found at http://tellico-project.org
================================================================
-->
<xsl:output method="html"
indent="yes"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"
encoding="utf-8"/>
<!-- Sort using user's preferred language -->
<xsl:param name="lang"/>
<xsl:variable name="endl">
<xsl:text>
</xsl:text>
</xsl:variable>
<xsl:template match="/">
<xsl:apply-templates select="tc:tellico"/>
</xsl:template>
<xsl:template match="tc:tellico">
<xsl:if test="@syntaxVersion < '11'">
<xsl:message>
<xsl:text>This stylesheet was designed for Tellico DTD version </xsl:text>
<xsl:value-of select="'7'"/>
<xsl:text>or earlier, 
but the input data file is version </xsl:text>
<xsl:value-of select="@syntaxVersion"/>
<xsl:text>. There might be some 
problems with the output.</xsl:text>
</xsl:message>
</xsl:if>
<html>
<head>
<title>My Book Collections - sorted by title</title>
<style type="text/css">
body {
background: #999;
margin: 0px;
font-family: Verdana, Arial, sans-serif;
color: black;
}
#headerblock {
padding-top: 10px;
padding-bottom: 10px;
margin-bottom: 5px;
}
.title {
padding: 4px;
line-height: 18px;
font-size: 24px;
border-top: 1px solid black;
border-bottom: 1px solid black;
margin: 0px;
}
.subtitle {
margin-left: 10px;
font-size: 12px;
}
.books {
background: rgb(204,204,204);
padding-left: 4px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
font-size: 12px;
}
ul {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<xsl:apply-templates select="tc:collection"/>
</body>
</html>
</xsl:template>
<xsl:template match="tc:collection">
<div id="headerblock">
<div class="title">
<xsl:value-of select="@title"/>
<xsl:text> </xsl:text>
<span class="subtitle">sorted by title</span>
</div>
</div>
<div class="books">
<ol>
<xsl:for-each select="/tc:tellico/tc:collection/tc:entry">
<xsl:sort lang="$lang" select="tc:title"/>
<xsl:apply-templates select="."/>
</xsl:for-each>
</ol>
</div>
</xsl:template>
<xsl:template match="tc:entry">
<li>
<xsl:value-of select="tc:title"/><br/>
</li>
</xsl:template>
</xsl:stylesheet>
|