This file is indexed.

/usr/share/doc/libbiojava-java-demos/examples/eventbasedparsing/stylesheets/hitlisthtml.xsl is in libbiojava-java-demos 1:1.7.1-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
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
		xmlns:biojava="http://www.biojava.org"
		version="1.0">
<xsl:output method="html"/>
		
    <xsl:template match="/">
	Results of Parsing
		<xsl:for-each select="//biojava:HitSummary/biojava:HitId">
		<xsl:value-of select="@id"/>
		</xsl:for-each>
	</xsl:template>
	
	<xsl:template match="*"/>

</xsl:stylesheet>