This file is indexed.

/usr/share/refdb/xsl/makecss.xsl is in refdb-clients 1.0.2-3.

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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

  <xsl:output method="text" media-type="text/css"/>

  <!--
       This is a simplistic stylesheet to extract the bibliography formatting
       from a stylename.xsl file and write it to a css file. Invocation:
       xsltproc makecss.xsl stylename.xsl > stylename.css
  -->

  <xsl:template match="xsl:stylesheet">
    <xsl:apply-templates select="xsl:attribute-set"/>
  </xsl:template>

  <xsl:template match="xsl:attribute[@name='text-indent']">
div.bibliomixed {text-indent: <xsl:value-of select="."/>;}
  </xsl:template>

  <xsl:template match="xsl:attribute[@name='start-indent']">
div.bibliomixed {margin-left: <xsl:value-of select="."/>;}
  </xsl:template>

  <xsl:template match="xsl:attribute[@name='font-size']">
div.bibliomixed {font-size: <xsl:value-of select="."/>;}
  </xsl:template>

  <xsl:template match="xsl:attribute[@name='font-size-adjust']">
div.bibliomixed {font-size-adjust: <xsl:value-of select="."/>;}
  </xsl:template>

  <!-- suppress all attributes that we don't transcribe into css -->
  <xsl:template match="xsl:attribute"></xsl:template>

</xsl:stylesheet>