This file is indexed.

/usr/share/doc/libbiojava-java-demos/examples/eventbasedparsing/stylesheets/copyall.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
17
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
		xmlns:copyall="http://edu.mayo.mir/xst/copyall"
		version="1.0">
		
	
<xsl:template name="copyall:copy-content">
	<xsl:apply-templates select="@*|processing-instruction()|comment()|*|text()"/>
</xsl:template>

<xsl:template match="/|processing-instruction()|comment()|*|@*|text()">
	<xsl:copy>
		<xsl:call-template name="copyall:copy-content"/>
	</xsl:copy>
</xsl:template>

</xsl:stylesheet>