diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rng/svg-extensibility.rng')
-rw-r--r-- | Master/texmf-dist/source/latex/stex/schema/rng/svg-extensibility.rng | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rng/svg-extensibility.rng b/Master/texmf-dist/source/latex/stex/schema/rng/svg-extensibility.rng new file mode 100644 index 00000000000..d63acf3deae --- /dev/null +++ b/Master/texmf-dist/source/latex/stex/schema/rng/svg-extensibility.rng @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8"?> +<grammar ns="http://www.w3.org/2000/svg" xmlns:ns1="http://www.w3.org/2000/svg" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0"> + <a:documentation> + SVG 1.1 Extensibility Module + file: svg-extensibility.rng + + This is SVG, a language for describing two-dimensional graphics in XML. + Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved. + + $Id: svg-extensibility.rng,v 1.1 2003/07/15 07:11:10 dean Exp $ + +</a:documentation> + <a:documentation> + Extensibility + + foreignObject + + This module declares markup to provide support for extensibility. + </a:documentation> + <a:documentation> + SVG.Extensibility.class + </a:documentation> + <define name="SVG.Extensibility.extra.class"> + <notAllowed/> + </define> + <define name="SVG.Extensibility.class" combine="choice"> + <choice> + <ref name="foreignObject"/> + <ref name="SVG.Extensibility.extra.class"/> + </choice> + </define> + <a:documentation> + foreignObject: Foreign Object Element + </a:documentation> + <define name="SVG.foreignObject.content"> + <zeroOrMore> + <choice> + <text/> + <ref name="svg"/> + </choice> + <!-- ref name="foreignElement"/ --> + </zeroOrMore> + </define> + <define name="foreignObject"> + <element name="foreignObject"> + <ref name="attlist.foreignObject"/> + <ref name="SVG.foreignObject.content"/> + </element> + </define> + <define name="attlist.foreignObject" combine="interleave"> + <ref name="SVG.Core.attrib"/> + <ref name="SVG.Conditional.attrib"/> + <ref name="SVG.Style.attrib"/> + <ref name="SVG.Presentation.attrib"/> + <ref name="SVG.GraphicalEvents.attrib"/> + <ref name="SVG.External.attrib"/> + <optional> + <attribute name="x"> + <ref name="Coordinate.datatype"/> + </attribute> + </optional> + <optional> + <attribute name="y"> + <ref name="Coordinate.datatype"/> + </attribute> + </optional> + <attribute name="width"> + <ref name="Length.datatype"/> + </attribute> + <attribute name="height"> + <ref name="Length.datatype"/> + </attribute> + <optional> + <attribute name="transform"> + <ref name="TransformList.datatype"/> + </attribute> + </optional> + </define> + <define name="foreignElement"> + <a:documentation> + any element in foreign namespace + </a:documentation> + <element> + <anyName> + <except> + <nsName/> + </except> + </anyName> + <zeroOrMore> + <choice> + <attribute> + <anyName> + <except> + <nsName/> + </except> + </anyName> + </attribute> + <text/> + <ref name="foreignElement"/> + </choice> + </zeroOrMore> + </element> + </define> +</grammar> |