This file is indexed.

/usr/share/lttoolbox/dix.dtd is in lttoolbox 3.1.0-1.2.

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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!--
      DTD for the format of dictionaries
-->
<!ELEMENT dictionary (alphabet?, sdefs?,
		      pardefs?, section+)>
	<!-- root element-->

<!ELEMENT alphabet (#PCDATA)>
	<!-- alphabetic character list -->
	
<!ELEMENT sdefs (sdef+)>
	<!-- symbol definition section -->
	
<!ELEMENT sdef EMPTY>
	<!-- symbol definition -->
<!ATTLIST sdef
	n ID #REQUIRED
>
	<!-- n: symbol (tag) name -->
<!ATTLIST sdef
        c CDATA  #IMPLIED
>
        <!-- c: symbol (tag) comment -->
	
<!ELEMENT pardefs (pardef+)>
	<!-- paradigm definition section -->
	
<!ELEMENT pardef (e+)>
	<!-- paradigm definition -->
<!ATTLIST pardef
	n CDATA #REQUIRED
>
	<!-- n: paradigm name -->
<!ATTLIST pardef
        c CDATA  #IMPLIED
>
        <!-- c: comment about paradigm -->

	
<!ELEMENT section (e+)>
	<!-- dictionary section -->
<!ATTLIST section
	id ID #REQUIRED
	type (standard|inconditional|postblank|preblank) #REQUIRED
	
>
	<!-- id: dictionary section identifier -->
	<!-- type: dictionary section type -->
	
<!ELEMENT e (i | p | par | re)+>
	<!-- entry -->
<!ATTLIST e
	r (LR|RL) #IMPLIED
	lm CDATA #IMPLIED
	a CDATA #IMPLIED
	c CDATA #IMPLIED
	i CDATA #IMPLIED
	slr CDATA #IMPLIED
	srl CDATA #IMPLIED
>
	<!-- r: restriction LR: left-to-right,
			    RL: right-to-left -->
	<!-- lm: lemma -->
	<!-- a: author -->
	<!-- c: comment -->
	<!-- i: ignore ('yes') means ignore, otherwise it is not ignored) -->
	<!-- slr: translation sense when translating from left to right -->
	<!-- srl: translation sense when translating from right to left --> 
<!ELEMENT par EMPTY>
	<!-- reference to paradigm -->
<!ATTLIST par
	n CDATA #REQUIRED
	
>
	<!-- n: paradigm name -->
	
<!ELEMENT i (#PCDATA | b | s | g | j | a)*>
	<!-- identity -->
	
<!ELEMENT re (#PCDATA)>
	<!-- regular expression identification -->
	
<!ELEMENT p (l, r)>
	<!-- pair of strings -->
	
<!ELEMENT l (#PCDATA | a | b | g | j | s)*>
	<!-- left part of p -->
	
<!ELEMENT r (#PCDATA | a | b | g | j | s)*>
	<!-- right part of p -->
	
<!ELEMENT a EMPTY>
	<!-- post-generator wake-up mark -->
	
<!ELEMENT b EMPTY>
	<!-- blank chars block mark -->
	
<!ELEMENT g (#PCDATA | a | b | j | s)*>
	<!-- mark special groups in lemmas -->
<!ATTLIST g
	i CDATA #IMPLIED
>
	<!-- i is used to co-index groups in the left with those -->
	<!-- on the right of a pair -->
	
<!ELEMENT j EMPTY>
	<!-- join lexical forms -->
	
<!ELEMENT s EMPTY>
	<!-- reference to symbol (tag) -->
<!ATTLIST s
	n IDREF #REQUIRED
	
>
	<!-- n: symbol (tag) name -->