This file is indexed.

/usr/share/dh-make-php/xslt/maintainers-2.0.xsl is in dh-make-php 0.4.0.

This file is owned by root:root, with mode 0o664.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="no" method="text"/>
<xsl:param name="inputFile">-</xsl:param>
<xsl:template match="/">
  <xsl:call-template name="t1"/>
</xsl:template>
<xsl:template name="t1">
	<xsl:for-each select="/package/lead">
  	<xsl:value-of select="concat(name,' &lt;',email,'&gt;')"/>
		<xsl:value-of select="'; '"/>
	</xsl:for-each>
</xsl:template>
</xsl:stylesheet>