This file is indexed.

/usr/share/xml/docbook/custom/website/2.5.0/schema/relaxng/website.rng is in docbook-website 2.5.0.0-8.

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
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
         xmlns:rng="http://relaxng.org/ns/structure/1.0"
         xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
         xmlns:doc="http://nwalsh.com/xmlns/documentation"
         xmlns:db="http://nwalsh.com/xmlns/docbook-grammar-structure"
         datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">

<rng:div doc:docbook="yes" xmlns="">
<partinfo>
<releaseinfo
   role="cvs">$Id: website.rng,v 1.4 2003/06/22 16:56:06 nwalsh Exp $</releaseinfo>
<title>Website</title>
<productname>Website</productname>
<productnumber>2.5.0</productnumber>
<releaseinfo role="filename">website</releaseinfo>
<copyright>
<year>1997</year>
<year>1998</year>
<year>1999</year>
<year>2000</year>
<year>2001</year>
<year>2002</year>
<year>2003</year>
<holder>Norman Walsh</holder>
</copyright>
</partinfo>

<partintro>
<para>This is the driver file for V2.5.0 of the Website document type.
Please use the following formal public identifier to identify it:</para>

<screen>"-//Norman Walsh//DTD Website V2.5.0//EN"</screen>

<para>For example, if
you are using the Website DTD directly, use the FPI in the DOCTYPE
declaration:</para>

<programlisting><![CDATA[<!DOCTYPE webpage PUBLIC "-//Norman Walsh//DTD Website V2.5.0//EN"
               "http://docbook.sourceforge.net/release/website/2.5.0/website.dtd">
               [...]>]]></programlisting>

<para>Or, if you have a higher-level driver file that customizes Website,
use the FPI in the parameter entity declaration:</para>

<programlisting><![CDATA[<!ENTITY % WebsiteDTD PUBLIC "-//Norman Walsh//DTD Website V2.5.0//EN"
           "http://docbook.sourceforge.net/release/website/2.5.0/website.dtd">
%WebsiteDTD;]]></programlisting>

<para>Please direct all questions and comments about this DTD to
Norman Walsh, <email>ndw@nwalsh.com</email>.</para>
</partintro>
</rng:div>

<include href="websitedb.rng"/>
<include href="extensions.rng"/>

<define name="webpage.mix">
  <zeroOrMore>
    <ref name="config"/>
  </zeroOrMore>
  <ref name="head"/>
  <ref name="bookcomponent.content"/>
  <zeroOrMore>
    <ref name="appendix"/>
  </zeroOrMore>
  <zeroOrMore>
    <ref name="bibliography"/>
  </zeroOrMore>
</define>

<start>
  <choice>
    <ref name="webpage"/>
  </choice>
</start>

</grammar>