This file is indexed.

/usr/share/xml/xhtml-relaxng/modules/param.rng is in xhtml-relaxng 20091111-4ubuntu1.

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
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Param Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="param">
  <element name="param">
    <ref name="param.attlist"/>
  </element>
</define>

<define name="param.attlist">
  <ref name="id.attrib"/>
  <attribute name="name"/>
  <optional>
    <attribute name="value"/>
  </optional>
  <optional>
    <attribute name="valuetype">
      <choice>
	<value>data</value>
	<value>ref</value>
	<value>object</value>
      </choice>
    </attribute>
  </optional>
  <optional>
    <attribute name="type">
      <ref name="ContentType.datatype"/>
    </attribute>
  </optional>
</define>

</grammar>