This file is indexed.

/usr/share/planet-venus/filter/delDupName/p_by_name.xslt is in planet-venus 0~git9de2109-4.

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
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
                xmlns:atom="http://www.w3.org/2005/Atom"
                xmlns:xhtml="http://www.w3.org/1999/xhtml">

  <!-- If the first paragraph consists exclusively of "By author-name",
       delete it -->
  <xsl:template match="atom:content/xhtml:div/xhtml:p[1][. =
    concat('By ', ../../../atom:author/atom:name)]"/>

  <!-- pass through everything else -->
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>