<constraintSpec>
| <constraintSpec> (constraint on schema) contains a constraint, expressed in some formal syntax, which cannot be expressed in the structural content model 22.4.4 Element Specifications | |||||||
| 組件 | tagdocs — 22 Documentation Elements | ||||||
| 除全域屬性以外 | att.identified (@ident, @predeclare, @module, @mode) att.typed (@type, @subtype) 
 | ||||||
| 屬於 | |||||||
| 可包含 | tagdocs: altIdent constraint equiv  | ||||||
| 宣告 | 
 element constraintSpec { att.global.attributes, att.identified.attributes, att.typed.attributes, attribute scheme { "schematron" | "isoschematron" | "xsl" | "private" }, model.glossLike*, constraint? } | ||||||
| Relationship between scheme attribute and contents <s:ns prefix="s" uri="http://www.ascc.net/xml/schematron"/> <s:report test="tei:constraint/s:* and not(@scheme='schematron')">Rules in the Schematron 1.* language must be inside a constraint with a value of 'schematron' on the scheme attribute </s:report> | |||||||
| <s:ns prefix="sch" uri="http://purl.oclc.org/dsdl/schematron"/> <s:report test="tei:constraint/sch:* and not(@scheme='isoschematron')">Rules in the ISO Schematron language must be inside a constraint with a value of 'isoschematron' on the scheme attribute </s:report> | |||||||
| 例子 | This constraint uses Schematron to enforce the presence of the spanTo attribute (which comes from an attribute class) on the addSpan element: <constraintSpec ident="demo-c1" scheme="isoschematron"> <desc>Enforce the presence of the <att>spanTo</att> attribute</desc> <constraint> <s:assert test="@spanTo">The spanTo= attribute of <s:name/> is required.</s:assert> </constraint> </constraintSpec> | ||||||
| 例子 | <constraintSpec ident="demo-c2" scheme="isoschematron"> <desc>Implement an accessibility rule which says that pictures should have textual explanations</desc> <constraint> <s:report test="not(tei:figDesc or tei:head)"> You should provide information in a figure from which we can construct an alt attribute in HTML </s:report> </constraint> </constraintSpec> | ||||||
| 例子 | This constraint uses a language which is not expressed in XML to check whether the title and author are identical: <constraintSpec ident="local" scheme="private"> <constraint> (output = leq(title,author) "title and author cannot be the same") </constraint> </constraintSpec> | ||||||
