This file is indexed.

/usr/share/phoronix-test-suite/pts-core/static/xsl/pts-test-profile-viewer.xsl is in phoronix-test-suite 4.8.3-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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!--

This XSL file doesn't fully implement the PTS test profile specification as found in pts-core/library/pts-interfaces.php. 
Some tags can easily be added, and patches are welcome. Though not all of the specification can be implemented due to the Extends 
tag with Cascading Test Profiles (CTP) and other tags that require processing by pts-core.

-->
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<title>Phoronix Test Suite - <xsl:value-of select="PhoronixTestSuite/TestInformation/Title" /></title>
	</head>
	<body>
		<div style="font-size: 27px; font-weight: bold; text-align: center; margin: 30px 0 0;"><xsl:value-of select="PhoronixTestSuite/TestInformation/Title" /></div>
		<div style="width: 90%; margin: 20px auto 10px; text-align: center; border: 2px solid #000; border-width: 1px 2px; min-width: 700px;">
			<div style="overflow: hidden; background-color: #000; color: #FFF; font-weight: bold;">
				<div style="width: 15%; float: left;">Test Version</div>
				<div style="width: 15%; float: left;">Testing Type</div>
				<div style="width: 15%; float: left;">Software Type</div>
				<div style="width: 55%; float: left;">Test Options</div>
			</div>
			<div style="overflow: hidden; border: 1px solid #000; border-width: 1px 0; padding-top: 2px;">
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestInformation/Version" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/TestType" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/SoftwareType" /></div>
				<div style="width: 55%; float: right;">
					<xsl:for-each select="PhoronixTestSuite/TestSettings/Option">
						<p><strong><xsl:value-of select="DisplayName" /></strong><ul>
							<xsl:for-each select="Menu/Entry">
								<li><xsl:value-of select="Name" /></li>
							</xsl:for-each>
						</ul></p>
					</xsl:for-each>
				</div>
				<div style="width: 15%; float: left; clear: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">License</div>
				<div style="width: 15%; float: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Status</div>
				<div style="width: 15%; float: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Maintainer</div>
				<div style="width: 15%; float: left; clear: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/License" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/Status" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/Maintainer" /></div>
				<div style="width: 15%; float: left; clear: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Profile Version</div>
				<div style="width: 15%; float: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Scale</div>
				<div style="width: 15%; float: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Proportion</div>
				<div style="width: 15%; float: left; clear: left;"><xsl:value-of select="PhoronixTestSuite/TestProfile/Version" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestInformation/ResultScale" /></div>
				<div style="width: 15%; float: left;"><xsl:value-of select="PhoronixTestSuite/TestInformation/Proportion" /></div>
				<div style="width: 45%; float: left; clear: left; margin-top: 2px; background-color: #000; color: #FFF; font-weight: bold;">Test Description</div>
				<div style="width: 45%; float: left; clear: left;"><xsl:value-of select="PhoronixTestSuite/TestInformation/Description" /></div>
			</div>
		</div>
		<div style="text-align: center; font-size: 12px;">Copyright &#xA9; 2008 - 2010 by <a href="http://www.phoronix-media.com/" style="text-decoration: none; color: #000;">Phoronix Media</a>.</div>
	</body>
</html>
</xsl:template>
</xsl:stylesheet>