This file is indexed.

/usr/share/logol/prolog/logol.merge.xsl is in logol 1.6.10-1build1.

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

<xsl:output omit-xml-declaration="yes"/>

<xsl:param name="fileid">0</xsl:param>

<xsl:template match="/">
<xsl:text>
</xsl:text>
     <xsl:apply-templates/>
<xsl:text>
</xsl:text>     
</xsl:template>

<xsl:template match="sequences">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="match">
  <xsl:element name="match">
   <xsl:apply-templates/>  
  </xsl:element>
</xsl:template>

<xsl:template match="variable">
   <xsl:element  name="{name()}">
   <xsl:for-each select="@*"><xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute>
   </xsl:for-each>
  <xsl:apply-templates/>
   </xsl:element>
</xsl:template>

<xsl:template match="size">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="content">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="errors">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="distance">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="text">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="begin">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="end">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="model">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="fastaHeader">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="fastaHeader">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="sequenceBegin">
</xsl:template>

<xsl:template match="sequenceEnd">
</xsl:template>

<xsl:template match="id">
  <id>
      <xsl:value-of select="$fileid"/>-<xsl:value-of select="."/>
  </id>
 </xsl:template>



</xsl:stylesheet>