summaryrefslogtreecommitdiffstats
path: root/htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod
diff options
context:
space:
mode:
authorot <ot@localhost>2007-03-16 04:00:58 +0000
committerot <ot@localhost>2007-03-16 04:00:58 +0000
commitbb6b4e1a5aa3b3d5e6bf3014e454b0a95f17a142 (patch)
tree389cc41ea74a2b557d9494e688b0c18b33a5e99b /htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod
parentdde6c06cc265dcdefb269398697f2249295a85f3 (diff)
downloadmarkup-validator-bb6b4e1a5aa3b3d5e6bf3014e454b0a95f17a142.zip
markup-validator-bb6b4e1a5aa3b3d5e6bf3014e454b0a95f17a142.tar.gz
markup-validator-bb6b4e1a5aa3b3d5e6bf3014e454b0a95f17a142.tar.bz2
adding the (WD stage) XHTML Basic 1.1 to known types catalog
but not yet to drop-down menus
Diffstat (limited to 'htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod')
-rw-r--r--htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod161
1 files changed, 161 insertions, 0 deletions
diff --git a/htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod b/htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod
new file mode 100644
index 0000000..f84c959
--- /dev/null
+++ b/htdocs/sgml-lib/WD-xhtml-basic-20060705/xhtml-basic11-model-1.mod
@@ -0,0 +1,161 @@
+<!-- ....................................................................... -->
+<!-- XHTML Basic 1.1 Document Model Module .................................... -->
+<!-- file: xhtml-basic11-model-1.mod
+
+ This is XHTML Basic, a proper subset of XHTML.
+ Copyright 1998-2005 W3C (MIT, ERCIM, Keio), All Rights Reserved.
+ Revision: $Id: xhtml-basic11-model-1.mod,v 1.1 2007-03-16 04:00:58 ot Exp $ SMI
+
+ This DTD module is identified by the PUBLIC and SYSTEM identifiers:
+
+ PUBLIC "-//W3C//ENTITIES XHTML Basic 1.1 Document Model 1.0//EN"
+ SYSTEM "http://www.w3.org/MarkUp/DTD/xhtml-basic11-model-1.mod"
+
+ Revisions:
+ (none)
+ ....................................................................... -->
+
+<!-- XHTML Basic Document Model
+
+ This module describes the groupings of elements that make up
+ common content models for XHTML elements.
+-->
+
+<!-- Optional Elements in head .............. -->
+
+<!ENTITY % HeadOpts.mix
+ "( %script.qname; | %style.qname; | %meta.qname;
+ | %link.qname; | %object.qname; )*" >
+
+<!-- script and noscript are used to contain scripts
+ and alternative content
+-->
+<!ENTITY % Script.class "| %script.qname; | %noscript.qname;" >
+
+<!-- Miscellaneous Elements ................. -->
+
+<!ENTITY % Misc.extra "" >
+
+<!-- These elements are neither block nor inline, and can
+ essentially be used anywhere in the document body.
+-->
+<!ENTITY % Misc.class
+ "%Script.class;
+ %Misc.extra;"
+>
+
+<!-- Inline Elements ........................ -->
+
+<!ENTITY % InlStruct.class "%br.qname; | %span.qname;" >
+
+<!ENTITY % InlPhras.class
+ "| %em.qname; | %strong.qname; | %dfn.qname; | %code.qname;
+ | %samp.qname; | %kbd.qname; | %var.qname; | %cite.qname;
+ | %abbr.qname; | %acronym.qname; | %q.qname;" >
+
+<!ENTITY % InlPres.class "" >
+
+<!ENTITY % I18n.class "" >
+
+<!ENTITY % Anchor.class "| %a.qname;" >
+
+<!ENTITY % InlSpecial.class "| %img.qname; | %object.qname;" >
+
+<!ENTITY % InlForm.class
+ "| %input.qname; | %select.qname; | %textarea.qname;
+ | %label.qname; | %button.qname;" >
+
+<!ENTITY % Inline.extra "" >
+
+<!ENTITY % Inline.class
+ "%InlStruct.class;
+ %InlPhras.class;
+ %Anchor.class;
+ %InlSpecial.class;
+ %InlForm.class;
+ %Inline.extra;"
+>
+
+<!ENTITY % InlNoAnchor.class
+ "%InlStruct.class;
+ %InlPhras.class;
+ %InlSpecial.class;
+ %InlForm.class;
+ %Inline.extra;"
+>
+
+<!ENTITY % InlNoAnchor.mix
+ "%InlNoAnchor.class;
+ %Misc.class;"
+>
+
+<!ENTITY % Inline.mix
+ "%Inline.class;
+ %Misc.class;"
+>
+
+<!-- Block Elements ......................... -->
+
+<!ENTITY % Heading.class
+ "%h1.qname; | %h2.qname; | %h3.qname;
+ | %h4.qname; | %h5.qname; | %h6.qname;"
+>
+<!ENTITY % List.class "%ul.qname; | %ol.qname; | %dl.qname;" >
+
+<!ENTITY % Table.class "| %table.qname;" >
+
+<!ENTITY % Form.class "| %form.qname;" >
+
+<!ENTITY % BlkStruct.class "%p.qname; | %div.qname;" >
+
+<!ENTITY % BlkPhras.class
+ "| %pre.qname; | %blockquote.qname; | %address.qname;"
+>
+
+<!ENTITY % BlkPres.class "" >
+
+<!ENTITY % BlkSpecial.class
+ "%Table.class;
+ %Form.class;"
+>
+
+<!ENTITY % Block.extra "" >
+
+<!ENTITY % Block.class
+ "%BlkStruct.class;
+ %BlkPhras.class;
+ %BlkSpecial.class;
+ %Block.extra;"
+>
+
+<!ENTITY % Block.mix
+ "%Heading.class;
+ | %List.class;
+ | %Block.class;
+ %Misc.class;"
+>
+
+<!-- All Content Elements ................... -->
+
+<!-- declares all content except tables
+-->
+<!ENTITY % FlowNoTable.mix
+ "%Heading.class;
+ | %List.class;
+ | %BlkStruct.class;
+ %BlkPhras.class;
+ %Form.class;
+ %Block.extra;
+ | %Inline.class;
+ %Misc.class;"
+>
+
+<!ENTITY % Flow.mix
+ "%Heading.class;
+ | %List.class;
+ | %Block.class;
+ | %Inline.class;
+ %Misc.class;"
+>
+
+<!-- end of xhtml-basic11-model-1.mod -->