aboutsummaryrefslogtreecommitdiff
path: root/share/xml/freebsd.sch
blob: c8f75ba91a81b51a77c3dd5a5bf30e0f6bd00626 (plain) (blame)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?xml version="1.0" encoding="iso-8859-1"?>

<!-- $FreeBSD$ -->

<schema xmlns="http://purl.oclc.org/dsdl/schematron"
  xmlns:db="http://docbook.org/ns/docbook"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <ns prefix="db" uri="http://docbook.org/ns/docbook"/>

  <pattern name="Check file reference validity">
    <rule context="//db:imagedata|//db:graphic">
      <report test="contains(@fileref, '.')">Image reference (<xsl:value-of select="@fileref"/>) cannot have an extension; the proper format is inferred by the output type to generate.</report>
      <report test="@format">Image reference (<xsl:value-of select="@fileref"/>) format must not be specified; it is inferred by the output type to generate.</report>
    </rule>
  </pattern>

  <pattern name="Check filenames">
    <rule context="//db:filename">
      <report test="@role = 'directory'">Filename (<xsl:value-of select="."/>) has role="directory"; use class="directory"</report>
      <report test="@role = 'package'">Filename (<xsl:value-of select="."/>) has role="package"; use the package element</report>
      <report test="@role = 'port'">Filename (<xsl:value-of select="."/>) has role="port"; use the package element with role="port"</report>
      <report test="@role != 'directory' and @role != 'package' and role != 'port'">Filename (<xsl:value-of select="."/>) has role attribute set; consider a properly set class attribute</report>
    </rule>
  </pattern>

  <pattern name="Check cross-reference validity">
    <rule context="//db:link">
      <assert test="* or normalize-space()">Link (<xsl:value-of select="@linkend"/>) element must have a content; or use xref to auto-generate the linking text.</assert>
    </rule>
  </pattern>

  <pattern name="Check callout validity">
    <rule context="/">
      <report test="//db:screenco">Callouts with screenco are not supported; use screen and co instead.</report>
      <report test="//db:programlistingco">Callouts with programlistingco are not supported; use programlisting and co instead.</report>
      <report test="//db:graphicco">Callouts on graphics are not supported.</report>
    </rule>
  </pattern>

  <pattern name="Check profiling attributes">
    <rule context="//*/@edition">
      <assert test="(. = 'online') or (. = 'print')">Invalid edition value (<xsl:value-of select="."/>); must be either 'online' or "print".</assert>
    </rule>
    <rule context="//*/@os">
      <assert test="(. = 'freebsd8') or (. = 'freebsd9') or (. = 'freebsd10')">Invalid os value (<xsl:value-of select="."/>); must be either 'freebsd8', 'freebsd9' or 'freebsd10'.</assert>
    </rule>
  </pattern>

  <pattern name="Check titles">
    <rule context="//db:book|//db:article|//db:chapter|//db:section|//db:sect1|//db:sect2|//db:sect3|//db:sect4|//db:sect5">
      <assert test="db:title or db:info/db:title">There must be a title either in the the doc component (<xsl:value-of select="@xml:id"/>) or in the info element.</assert>
      <report test="db:title and db:info/db:title">There must be exactly one title for a doc component (<xsl:value-of select="@xml:id"/>).</report>
    </rule>
  </pattern>

  <pattern name="Check tables">
    <rule context="//db:entry">
      <report test="@colname and @spanname">You cannot use both colname and spanname attributes on table entries.</report>
    </rule>
  </pattern>

  <pattern name="Check indexes">
    <rule context="//db:indexterm">
      <report test="../db:question">Indexterm (<xsl:value-of select="./db:primary"/>) is not allowed directly in question, place it into a concrete paragraph (in section <xsl:value-of select="(ancestor::db:sect5[last()]|ancestor::db:sect4[last()]|ancestor::db:sect3[last()]|ancestor::db:sect2[last()]|ancestor::db:sect1[last()]|ancestor::db:chapter[last()])[last()]/@xml:id"/>).</report>
      <report test="../db:answer">Indexterm (<xsl:value-of select="./db:primary"/>) is not allowed directly in answer, place it into a concrete paragraph (in section <xsl:value-of select="(ancestor::db:sect5[last()]|ancestor::db:sect4[last()]|ancestor::db:sect3[last()]|ancestor::db:sect2[last()]|ancestor::db:sect1[last()]|ancestor::db:chapter[last()])[last()]/@xml:id"/>).</report>
      <report test="../db:listitem">Indexterm (<xsl:value-of select="./dbprimary"/>) is not allowed directly in listitem, place it into a concrete paragraph (in section <xsl:value-of select="(ancestor::db:sect5[last()]|ancestor::db:sect4[last()]|ancestor::db:sect3[last()]|ancestor::db:sect2[last()]|ancestor::db:sect1[last()]|ancestor::db:chapter[last()])[last()]/@xml:id"/>).</report>
    </rule>
  </pattern>

<!--
	Backported constraints from DocBook 5.0
-->

  <pattern name="Glossary 'firstterm' type constraint">
     <rule context="db:firstterm[@linkend]">
        <assert test="local-name(//*[@xml:id=current()/@linkend]) = 'glossentry' and namespace-uri(//*[@xml:id=current()/@linkend]) = 'http://docbook.org/ns/docbook'">@linkend on firstterm must point to a glossentry.</assert>
     </rule>
  </pattern>
  <pattern name="Footnote reference type constraint">
     <rule context="db:footnoteref">
        <assert test="local-name(//*[@xml:id=current()/@linkend]) = 'footnote' and namespace-uri(//*[@xml:id=current()/@linkend]) = 'http://docbook.org/ns/docbook'">@linkend on footnoteref must point to a footnote.</assert>
     </rule>
  </pattern>
  <pattern name="Glossary 'glossterm' type constraint">
     <rule context="db:glossterm[@linkend]">
        <assert test="local-name(//*[@xml:id=current()/@linkend]) = 'glossentry' and namespace-uri(//*[@xml:id=current()/@linkend]) = 'http://docbook.org/ns/docbook'">@linkend on glossterm must point to a glossentry.</assert>
     </rule>
  </pattern>
  <pattern name="Synopsis fragment type constraint">
     <rule context="db:synopfragmentref">
        <assert test="local-name(//*[@xml:id=current()/@linkend]) = 'synopfragment' and namespace-uri(//*[@xml:id=current()/@linkend]) = 'http://docbook.org/ns/docbook'">@linkend on synopfragmentref must point to a synopfragment.</assert>
     </rule>
  </pattern>
  <pattern name="Glosssary 'see' type constraint">
     <rule context="db:glosssee[@otherterm]">
        <assert test="local-name(//*[@xml:id=current()/@otherterm]) = 'glossentry' and namespace-uri(//*[@xml:id=current()/@otherterm]) = 'http://docbook.org/ns/docbook'">@otherterm on glosssee must point to a glossentry.</assert>
     </rule>
  </pattern>
  <pattern name="Glossary 'seealso' type constraint">
     <rule context="db:glossseealso[@otherterm]">
        <assert test="local-name(//*[@xml:id=current()/@otherterm]) = 'glossentry' and namespace-uri(//*[@xml:id=current()/@otherterm]) = 'http://docbook.org/ns/docbook'">@otherterm on glossseealso must point to a glossentry.</assert>
     </rule>
  </pattern>
  <pattern name="Glossary term definition constraint">
     <rule context="db:termdef">
        <assert test="count(db:firstterm) = 1">A termdef must contain exactly one firstterm</assert>
     </rule>
  </pattern>
  <pattern name="Cardinality of segments and titles">
     <rule context="db:seglistitem">
        <assert test="count(db:seg) = count(../db:segtitle)">The number of seg elements must be the same as the number of segtitle elements in the parent segmentedlist</assert>
     </rule>
  </pattern>
  <pattern name="Root must have version">
     <rule context="/db:para">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:set">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:book">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:dedication">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:acknowledgements">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:colophon">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:appendix">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:chapter">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:part">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:preface">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:section">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:article">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:sect1">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:sect2">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:sect3">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:sect4">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:sect5">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:reference">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:refentry">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:refsection">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:refsect1">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:refsect2">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:refsect3">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:glossary">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:bibliography">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:index">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:setindex">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
     <rule context="/db:toc">
        <assert test="@version">The root element must have a version attribute.</assert>
     </rule>
  </pattern>
  <pattern name="Element exclusion">
     <rule context="db:annotation">
        <assert test="not(.//db:annotation)">annotation must not occur in the descendants of annotation</assert>
     </rule>
     <rule context="db:caution">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of caution</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of caution</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of caution</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of caution</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of caution</assert>
     </rule>
     <rule context="db:important">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of important</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of important</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of important</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of important</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of important</assert>
     </rule>
     <rule context="db:note">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of note</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of note</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of note</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of note</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of note</assert>
     </rule>
     <rule context="db:tip">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of tip</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of tip</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of tip</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of tip</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of tip</assert>
     </rule>
     <rule context="db:warning">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of warning</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of warning</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of warning</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of warning</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of warning</assert>
     </rule>
     <rule context="db:caption">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of caption</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of caption</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of caption</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of caption</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of caption</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of caption</assert>
        <assert test="not(.//db:sidebar)">sidebar must not occur in the descendants of caption</assert>
        <assert test="not(.//db:table)">table must not occur in the descendants of caption</assert>
        <assert test="not(.//db:task)">task must not occur in the descendants of caption</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of caption</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of caption</assert>
     </rule>
     <rule context="db:equation">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of equation</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of equation</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of equation</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of equation</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of equation</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of equation</assert>
        <assert test="not(.//db:table)">table must not occur in the descendants of equation</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of equation</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of equation</assert>
     </rule>
     <rule context="db:example">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of example</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of example</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of example</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of example</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of example</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of example</assert>
        <assert test="not(.//db:table)">table must not occur in the descendants of example</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of example</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of example</assert>
     </rule>
     <rule context="db:figure">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of figure</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of figure</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of figure</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of figure</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of figure</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of figure</assert>
        <assert test="not(.//db:table)">table must not occur in the descendants of figure</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of figure</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of figure</assert>
     </rule>
     <rule context="db:table">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of table</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of table</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of table</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of table</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of table</assert>
        <assert test="not(.//db:informaltable)">informaltable must not occur in the descendants of table</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of table</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of table</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of table</assert>
     </rule>
     <rule context="db:footnote">
        <assert test="not(.//db:caution)">caution must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:epigraph)">epigraph must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:equation)">equation must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:example)">example must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:figure)">figure must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:footnote)">footnote must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:important)">important must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:indexterm)">indexterm must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:note)">note must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:sidebar)">sidebar must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:table)">table must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:task)">task must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:tip)">tip must not occur in the descendants of footnote</assert>
        <assert test="not(.//db:warning)">warning must not occur in the descendants of footnote</assert>
     </rule>
     <rule context="db:sidebar">
        <assert test="not(.//db:sidebar)">sidebar must not occur in the descendants of sidebar</assert>
     </rule>
  </pattern>
</schema>