This file is indexed.

/usr/share/doc/libcgi-xmlapplication-perl/examples/minimal.xsl is in libcgi-xmlapplication-perl 1.1.3-7.

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
<?xml version="1.0" encoding="iso-8859-1" ?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns="http://www.w3.org/TR/xhtml1/strict">
<!-- $Id -->
<xsl:param name="version"/>
<xsl:output method="html" encoding="ISO-8859-1"/>
<xsl:template match="/">
<html>
  <head>
    <title>
    evaluate! userlisting
    </title>
  </head>
  <body bgcolor="ffffff">

    <h1>CGI::XMLApplication</h1>
    <p> 
The Version of CGI::XMLApplication is <xsl:value-of select="$version"/>
    </p>
  </body>
</html>
</xsl:template>


</xsl:stylesheet>