This file is indexed.

/usr/lib/python3/dist-packages/os_doc_tools/resources/extensions.rng is in python3-openstack-doc-tools 0.34.0-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
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
    xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
    ns="http://docs.openstack.org/common/api/v1.0"
    datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!--
    <start combine="choice">
        <choice>
            <ref name="rax.extensions"/>
            <ref name="rax.extension"/>
        </choice>
    </start>-->

    <define name="rax.extensions">
        <element name="extensions">
            <oneOrMore>
                <ref name="rax.extension"/>
            </oneOrMore>
        </element>
    </define>

    <define name="rax.extension">
        <element name="extension">
            <attribute name="name">
                <text/>
            </attribute>
            <attribute name="namespace">
                <data type="anyURI"/>
            </attribute>
            <attribute name="updated">
                <data type="dateTime"/>
            </attribute>
            <attribute name="alias">
                <text/>
            </attribute>
            <element name="description">
                <text/>
            </element>
            <zeroOrMore>
                <element name="link" ns="http://www.w3.org/2005/Atom">
                    <attribute name="rel">
                        <choice>
                            <value>alternate</value>
                            <value>appendix</value>
                            <value>archives</value>
                            <value>author</value>
                            <value>bookmark</value>
                            <value>chapter</value>
                            <value>contents</value>
                            <value>copyright</value>
                            <value>current</value>
                            <value>describedby</value>
                            <value>edit</value>
                            <value>edit-media</value>
                            <value>first</value>
                            <value>glossary</value>
                            <value>help</value>
                            <value>hub</value>
                            <value>icon</value>
                            <value>index</value>
                            <value>last</value>
                            <value>latest-version</value>
                            <value>license</value>
                            <value>monitor</value>
                            <value>monitor-group</value>
                            <value>next</value>
                            <value>next-arvhice</value>
                            <value>nofollow</value>
                            <value>payment</value>
                            <value>predecessor-version</value>
                            <value>prefetch</value>
                            <value>prev</value>
                            <value>previous</value>
                            <value>prev-archive</value>
                            <value>replies</value>
                            <value>search</value>
                            <value>section</value>
                            <value>self</value>
                            <value>service</value>
                            <value>start</value>
                            <value>stylesheet</value>
                            <value>subsection</value>
                            <value>successor-version</value>
                            <value>up</value>
                            <value>version-history</value>
                            <value>via</value>
                            <value>working-copy</value>
                            <value>working-copy-of</value>
                        </choice>
                    </attribute>
                    <optional>
                        <attribute name="type">
                            <text/>
                        </attribute>
                    </optional>
                    <attribute name="href">
                        <data type="anyURI"/>
                    </attribute>
                    <optional>
                        <attribute name="hreflang">
                            <data type="NMTOKEN"/>
                        </attribute>
                    </optional>
                    <optional>
                        <attribute name="title">
                            <text/>
                        </attribute>
                    </optional>
                    <optional>
                        <attribute name="xml:base">
                            <data type="anyURI"/>
                        </attribute>      
                    </optional>
                    <optional>
                        <attribute name="xml:lang">
                            <text/>
                        </attribute>      
                    </optional>
                </element>
            </zeroOrMore>
        </element>
    </define>
</grammar>