This file is indexed.

/usr/share/tellico/goodreads2tellico.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
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns="http://periapsis.org/tellico/"
                version="1.0">

<!--
   ===================================================================
   Tellico XSLT file - used for importing data from goodreads.com

   Copyright (C) 2011 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

   ===================================================================
-->

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"
            doctype-public="-//Robby Stephenson/DTD Tellico V11.0//EN"
            doctype-system="http://periapsis.org/tellico/dtd/v11/tellico.dtd"/>

<xsl:template match="/">
 <tellico syntaxVersion="11">
  <collection title="Goodreads.com Import" type="2">
   <fields>
    <field name="_default"/>
    <field flags="0" title="Goodreads Link" category="General" format="4" type="7" name="goodreads" i18n="true"/>
   </fields>
   <xsl:apply-templates select="GoodreadsResponse/reviews/review"/>
  </collection>
 </tellico>
</xsl:template>

<xsl:template match="review">
 <entry>
  <xsl:apply-templates select="book"/>
  <rating>
   <xsl:value-of select="rating"/>
  </rating>
  <xsl:if test="shelves/shelf[@name='read']">
   <read>true</read>
  </xsl:if>
 </entry>
</xsl:template>

<xsl:template match="book">
  <title>
   <xsl:value-of select="title"/>
  </title>

  <isbn>
   <xsl:value-of select="isbn"/>
  </isbn>
  <xsl:if test="not(isbn)">
   <isbn>
    <xsl:value-of select="isbn13"/>
   </isbn>
  </xsl:if>

  <publisher>
   <xsl:value-of select="publisher"/>
  </publisher>

  <pub_year>
   <xsl:value-of select="publication_year"/>
  </pub_year>

  <authors>
   <xsl:for-each select="authors/author">
    <author>
     <xsl:value-of select="name"/>
    </author>
   </xsl:for-each>
  </authors>

  <cover>
   <xsl:value-of select="image_url"/>
  </cover>

  <comments>
   <xsl:value-of select="description"/>
  </comments>

  <pages>
   <xsl:value-of select="num_pages"/>
  </pages>

  <goodreads>
   <xsl:value-of select="link"/>
  </goodreads>

</xsl:template>

</xsl:stylesheet>