This file is indexed.

/usr/share/games/mmpong-gl/CEGUI/layouts/GUILayout.xsd is in mmpong-gl-data 0.9.1-2.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
58
59
60
61
62
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">

	<xsd:element name="GUILayout" type="GUILayoutType"/>
	
	<xsd:complexType name="GUILayoutType">
		<xsd:sequence>
			<xsd:element name="Window" type="WindowType" />
		</xsd:sequence>
		<xsd:attribute name="Parent" type="xsd:string" use="optional" default=""/>
	</xsd:complexType>
	
	<xsd:complexType name="WindowType">
		<xsd:sequence>
			<xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:choice minOccurs="0" maxOccurs="unbounded">
				<xsd:element name="Window" type="WindowType" />
				<xsd:element name="AutoWindow" type="AutoWindowType" />
			</xsd:choice>
			<xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
		</xsd:sequence>
		<xsd:attribute name="Type" type="xsd:string" use="required"/>
		<xsd:attribute name="Name" type="xsd:string" use="optional" default="" />
	</xsd:complexType>

	<xsd:complexType name="AutoWindowType">
		<xsd:sequence>
			<xsd:element name="LayoutImport" type="LayoutImportType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:element name="Event" type="EventType"  minOccurs="0" maxOccurs="unbounded" />
			<xsd:choice minOccurs="0" maxOccurs="unbounded">
				<xsd:element name="Window" type="WindowType" />
				<xsd:element name="AutoWindow" type="AutoWindowType" />
			</xsd:choice>
			<xsd:element name="Property" type="PropertyType"  minOccurs="0" maxOccurs="unbounded" />
		</xsd:sequence>
		<xsd:attribute name="NameSuffix" type="xsd:string" use="required"/>
	</xsd:complexType>

	<xsd:complexType name="PropertyType">
		<xsd:simpleContent>
			<xsd:extension base="xsd:string">
				<xsd:attribute name="Name" type="xsd:string" use="required"/>
				<xsd:attribute name="Value" type="xsd:string" use="optional"/>
			</xsd:extension>
		</xsd:simpleContent> 
	</xsd:complexType>

	<xsd:complexType name="LayoutImportType">
		<xsd:attribute name="Filename" type="xsd:string" use="required"/>
		<xsd:attribute name="Prefix" type="xsd:string" use="optional" default="" />
		<xsd:attribute name="ResourceGroup" type="xsd:string" use="optional"  default="" />
	</xsd:complexType>

	<xsd:complexType name="EventType">
		<xsd:attribute name="Name" type="xsd:string" use="required"/>
		<xsd:attribute name="Function" type="xsd:string" use="required"/>
	</xsd:complexType>

</xsd:schema>