This file is indexed.

/usr/share/dvdauthor/spumux.xsd is in dvdauthor 0.7.0-1.1build1.

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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">


  <xsd:annotation>
    <xsd:documentation xml:lang="en">
     XML Schema Definition for spumux.
     Author: Alan Canon (acanon@bellsouth.net)
     Date: 1/8/2005
     This Schema is made available under the terms of the GNU GPL.
     See http://www.gnu.org/ for details.
     // TODO Copy the spumux man page documentation as xsd:annotations to the below.
    </xsd:documentation>
  </xsd:annotation>

  <xsd:element name="subpictures" type="SubpicturesType"/>

  <xsd:complexType name="SubpicturesType">
    <xsd:sequence>
      <xsd:element name="stream" type="StreamType"/>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:complexType name="StreamType">
    <xsd:choice>
      <xsd:sequence>
        <xsd:element name="spu" type="SpuType"/>
      </xsd:sequence>
      <xsd:element name="textsub" type="TextsubType"/>
    </xsd:choice>
  </xsd:complexType>

  <xsd:complexType name="SpuType">
    <xsd:sequence>
      <xsd:element name="button" type="ButtonType" minOccurs="0" maxOccurs="unbounded" />
      <xsd:element name="action" type="ActionType" minOccurs="0" maxOccurs="unbounded" />
    </xsd:sequence>
    <!-- HR:MM:SS.HU -->
    <xsd:attribute name="start" type="xsd:string" use="optional"/>
    <!-- HR:MM:SS.HU -->
    <xsd:attribute name="end" type="xsd:string" use="optional"/>
    <xsd:attribute name="image" type="xsd:string"/>
    <xsd:attribute name="highlight" type="xsd:string"/>
    <xsd:attribute name="select" type="xsd:string"/>
    <xsd:attribute name="transparent" type="xsd:string"/>
    <xsd:attribute name="force" type="xsd:string"/>
    <xsd:attribute name="autooutline" type="xsd:string"/>
    <xsd:attribute name="outlinewidth" type="xsd:string"/>
    <!-- [ autoorder="rows" | autoorder="columns" ] -->
    <xsd:attribute name="autoorder" type="xsd:string"/>
    <xsd:attribute name="xoffset" type="xsd:string"/>
    <xsd:attribute name="yoffset" type="xsd:string"/>
  </xsd:complexType>

  <xsd:complexType name="ButtonType">
    <xsd:attribute name="name" type="xsd:string"/>
    <xsd:attribute name="x0" type="xsd:string"/>
    <xsd:attribute name="y0" type="xsd:string"/>
    <xsd:attribute name="x1" type="xsd:string"/>
    <xsd:attribute name="y1" type="xsd:string"/>
    <xsd:attribute name="up" type="xsd:string"/>
    <xsd:attribute name="down" type="xsd:string"/>
    <xsd:attribute name="left" type="xsd:string"/>
    <xsd:attribute name="right" type="xsd:string"/>
  </xsd:complexType>

  <xsd:complexType name="ActionType">
    <xsd:attribute name="name" type="xsd:string"/>
    <xsd:attribute name="x0" type="xsd:string"/>
    <xsd:attribute name="y0" type="xsd:string"/>
    <xsd:attribute name="x1" type="xsd:string"/>
    <xsd:attribute name="y1" type="xsd:string"/>
    <xsd:attribute name="up" type="xsd:string"/>
    <xsd:attribute name="down" type="xsd:string"/>
    <xsd:attribute name="left" type="xsd:string"/>
    <xsd:attribute name="right" type="xsd:string"/>
  </xsd:complexType>


  <xsd:complexType name="TextsubType">
    <xsd:attribute name="filename" type="xsd:string"/>
    <xsd:attribute name="characterset" type="xsd:string"/>
    <xsd:attribute name="fontsize" type="xsd:string"/>
    <xsd:attribute name="force" type="xsd:string"/>
    <xsd:attribute name="font" type="xsd:string"/>
    <xsd:attribute name="horizontal-alignment" type="xsd:string"/>
    <xsd:attribute name="vertical-alignment" type="xsd:string"/>
    <xsd:attribute name="left-margin" type="xsd:string"/>
    <xsd:attribute name="right-margin" type="xsd:string"/>
    <xsd:attribute name="top-margin" type="xsd:string"/>
    <xsd:attribute name="bottom-margin" type="xsd:string"/>
    <xsd:attribute name="subtitle-fps" type="xsd:string"/>
    <xsd:attribute name="movie-fps" type="xsd:string"/>
    <xsd:attribute name="movie-width" type="xsd:string"/>
    <xsd:attribute name="movie-height" type="xsd:string"/>
  </xsd:complexType>

</xsd:schema>