blob: 96280fe67538d8cd6d1c345c4d558817200b23fb (
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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $FreeBSD$ -->
<schema xmlns="http://purl.oclc.org/dsdl/schematron">
<pattern name="Check file reference validity">
<rule context="//imagedata|//graphic">
<report test="contains(@fileref, '.')">Image references cannot have an extension; the proper format is inferred by the output type to generate.</report>
<report test="@format">Image format must not be specified; it is inferred by the output type to generate.</report>
</rule>
</pattern>
<pattern name="Check callout validity">
<rule context="/">
<report test="//screenco">Callouts with screenco are not supported; use screen and co instead.</report>
<report test="//programlistingco">Callouts with programlistingco are not supported; use programlisting and co instead.</report>
<report test="//graphicco">Callouts on graphics are not supported.</report>
</rule>
</pattern>
<pattern name="Check profiling attributes">
<rule context="//*/@edition">
<assert test="(. = 'online') or (. = 'print')">The edition attribute can only be set to 'online' or "print".</assert>
</rule>
<rule context="//*/@os">
<assert test="(. = 'freebsd8') or (. = 'freebsd9') or (. = 'freebsd10')">The os attribute can only be set to 'freebsd8', 'freebsd9' or 'freebsd10'.</assert>
</rule>
</pattern>
</schema>
|