summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng82
1 files changed, 0 insertions, 82 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng b/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng
deleted file mode 100644
index 118dbc6163e..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-object.rng
+++ /dev/null
@@ -1,82 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<grammar xmlns="http://relaxng.org/ns/structure/1.0">
- <!-- Object Module -->
- <define name="object">
- <element name="object">
- <ref name="object.attlist"/>
- <zeroOrMore>
- <!-- No restrictions on mixed content in TREX. -->
- <ref name="param"/>
- </zeroOrMore>
- <ref name="Flow.model"/>
- </element>
- </define>
- <define name="object.attlist">
- <interleave>
- <ref name="Common.attrib"/>
- <optional>
- <attribute name="declare">
- <value>declare</value>
- </attribute>
- </optional>
- <optional>
- <attribute name="classid">
- <ref name="URI.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="codebase">
- <ref name="URI.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="data">
- <ref name="URI.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="type">
- <ref name="ContentType.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="codetype">
- <ref name="ContentType.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="archive">
- <ref name="URIs.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="standby">
- <ref name="Text.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="height">
- <ref name="Length.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="width">
- <ref name="Length.datatype"/>
- </attribute>
- </optional>
- <optional>
- <attribute name="name"/>
- </optional>
- <optional>
- <attribute name="tabindex">
- <ref name="Number.datatype"/>
- </attribute>
- </optional>
- </interleave>
- </define>
- <define name="Inline.class" combine="interleave">
- <zeroOrMore>
- <ref name="object"/>
- </zeroOrMore>
- </define>
-</grammar>