-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxmlspec.dtd
More file actions
2778 lines (2450 loc) · 78.9 KB
/
xmlspec.dtd
File metadata and controls
2778 lines (2450 loc) · 78.9 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- ............................................................... -->
<!-- XML specification DTD ......................................... -->
<!-- ............................................................... -->
<!-- $Id: xmlspec.dtd,v 1.1 2010/05/11 07:06:12 jkj Exp $ -->
<!--
TYPICAL INVOCATION:
# <!DOCTYPE spec PUBLIC
# "-//W3C//DTD Specification V2.10//EN"
# "http://www.w3.org/2002/xmlspec/dtd/2.10/xmlspec.dtd">
PURPOSE:
This XML DTD is for W3C specifications and other technical reports.
It is based in part on the TEI Lite and Sweb DTDs.
COPYRIGHT:
Copyright (C) 2000, 2001, 2002, 2003 Sun Microsystems, Inc. All Rights Reserved.
This document is governed by the W3C Software License[3] as
described in the FAQ[4].
[1] http://www.w3.org/TR/xslt
[2] http://www.w3.org/XML/1998/06/xmlspec-report-v21.htm
[3] http://www.w3.org/Consortium/Legal/copyright-software-19980720
[4] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
DEPENDENCIES:
None.
CHANGE HISTORY:
The list of historical changes is at the end of the DTD. For recent changes,
see the CVS log.
For all details, see the design report at:
<http://www.w3.org/XML/1998/06/xmlspec-report-v21.htm>
This report is now out-of-date, but no more recent report has been prepared.
#2003-06-25: nwalsh: Added translationloc, preverrataloc, rfc2119
#2003-05-28: nwalsh: Added errataloc, fixed IE bug. Added @num to prod.
Published V2.4
#2003-03-12: nwalsh: Added local.* PEs to a number of additional
places to make customization layers easier.
Published V2.3
#2002-09-04: nwalsh: Added 'phrase' to title, subtitle, version,
w3c-designation, w3c-doctype, day, month, year, name,
affiliation, email, language, role, lhs, rhs, com,
typename, date, loc, nt, sub, sup, term, termref,
titleref, xnt, xspecref, xtermref
This is *solely* to support automated diffing. Users
are explicitly forbidden from using this as an escape
hatch to get extra markup in these contexts.
#2001-10-08: nwalsh: Added local.arg.att and local.proto.att
#2002-08-14: nwalsh: Published V2.2
Added marked sections around element and attlist declarations and
added the altlocs element
MAINTAINERS:
Norman Walsh
Sun Microsystems, Inc.
Norman.Walsh@Sun.COM
voice: +1 413 256 6985
fax: +1 413 256 6985
Eve Maler
Sun Microsystems, Inc.
elm@east.sun.com
voice: +1 781 442 3190
fax: +1 781 442 1437
-->
<!-- ............................................................... -->
<!-- Entities for characters and symbols ........................... -->
<!-- ............................................................... -->
<!--
#1998-03-10: maler: Added “ and ”.
# Used 8879:1986-compatible decimal character
# references.
# Merged charent.mod file back into main file.
#1998-05-14: maler: Fixed ldquo and rdquo. Gave mdash a real number.
#1998-12-03: maler: Escaped the leading ampersands.
-->
<!ENTITY lt "&#60;">
<!ENTITY gt ">">
<!ENTITY amp "&#38;">
<!ENTITY apos "'">
<!ENTITY quot """>
<!ENTITY nbsp " ">
<!ENTITY mdash "&#x2014;">
<!ENTITY ldquo "&#x201C;">
<!ENTITY rdquo "&#x201D;">
<!-- ............................................................... -->
<!-- Entities for classes of standalone elements ................... -->
<!-- ............................................................... -->
<!--
#1997-10-16: maler: Added table to %illus.class;.
#1997-11-28: maler: Added htable to %illus.class;.
#1997-12-29: maler: IGNOREd table.
#1998-03-10: maler: Removed SGML Open-specific %illus.class;.
# Added "local" entities for customization.
#1998-05-14: maler: Added issue to %note.class;.
# Removed %[local.]statusp.class;.
#1998-05-21: maler: Added constraintnote to %note.class;.
#1998-08-22: maler: Changed htable to table in %illus.class;.
# Added definitions to %illus.class;.
#2000-03-07: maler: Added proto and example to %illus.class;.
-->
<!ENTITY % local.p.class " ">
<!ENTITY % p.class "p
%local.p.class;">
<!ENTITY % local.list.class " ">
<!ENTITY % list.class "ulist|olist|slist|glist
%local.list.class;">
<!ENTITY % local.speclist.class " ">
<!ENTITY % speclist.class "orglist|blist
%local.speclist.class;">
<!ENTITY % local.note.class " ">
<!ENTITY % note.class "note|issue|wfcnote|vcnote
|constraintnote %local.note.class;">
<!ENTITY % local.illus.class " ">
<!ENTITY % illus.class "eg|graphic|scrap|table|definitions
|proto|example
%local.illus.class;">
<!-- ............................................................... -->
<!-- Entities for classes of phrase-level elements ................. -->
<!-- ............................................................... -->
<!--
#1997-12-29: maler: Added xspecref to %ref.class;.
#1998-03-10: maler: Added %ednote.class;.
# Added "local" entities for customization.
#2000-03-07: maler: Added function, var, el, att, and attval to
# %tech.class;.
# Added sub, sup, and phrase to %emph.class;.
-->
<!ENTITY % local.annot.class " ">
<!ENTITY % annot.class "footnote
%local.annot.class;">
<!ENTITY % local.termdef.class " ">
<!ENTITY % termdef.class "termdef|term
%local.termdef.class;">
<!ENTITY % local.emph.class " ">
<!ENTITY % emph.class "emph|phrase|rfc2119|quote|sub|sup
%local.emph.class;">
<!ENTITY % local.ref.class " ">
<!ENTITY % ref.class "bibref|specref|termref|titleref
|xspecref|xtermref
%local.ref.class;">
<!ENTITY % local.loc.class " ">
<!ENTITY % loc.class "loc
%local.loc.class;">
<!ENTITY % local.tech.class " ">
<!ENTITY % tech.class "kw|nt|xnt|code|function|var
|el|att|attval
%local.tech.class;">
<!ENTITY % local.ednote.class " ">
<!ENTITY % ednote.class "ednote
%local.ednote.class;">
<!-- ............................................................... -->
<!-- Entities for mixtures of standalone elements .................. -->
<!-- ............................................................... -->
<!--
#1997-09-30: maler: Created %p.mix; to eliminate p from self.
#1997-09-30: maler: Added %speclist.class; to %obj.mix; and %p.mix;.
#1997-09-30: maler: Added %note.class; to %obj.mix; and %p.mix;.
#1997-10-16: maler: Created %entry.mix;. Note that some elements
# left out here are still allowed in termdef,
# which entry can contain through %p.pcd.mix;.
#1997-11-28: maler: Added %p.class; to %statusobj.mix;.
#1998-03-10: maler: Added %ednote.class; to all mixtures, except
# %p.mix; and %statusobj.mix;, because paragraphs
# and status paragraphs will contain ednote
# through %p.pcd.mix;.
#1998-03-23: maler: Added %termdef.mix; (broken out from
# %termdef.pcd.mix;).
#1998-05-14: maler: Removed %statusobj.mix; and all mentions of
# %statusp.mix;.
-->
<!ENTITY % local.div.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % div.mix
"%p.class;|%list.class;|%speclist.class;|%note.class;
|%illus.class;|%ednote.class;%local.div.mix;">
<!ENTITY % local.obj.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % obj.mix
"%p.class;|%list.class;|%speclist.class;|%note.class;
|%illus.class;|%ednote.class;%local.obj.mix;">
<!ENTITY % local.p.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % p.mix
"%list.class;|%speclist.class;|%note.class;|%illus.class;%local.p.mix;">
<!ENTITY % local.entry.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % entry.mix
"%list.class;|note|eg|graphic|%ednote.class;%local.entry.mix;">
<!ENTITY % local.hdr.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % hdr.mix
"%p.class;|%list.class;|%ednote.class;%local.hdr.mix;">
<!ENTITY % local.termdef.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % termdef.mix
"%note.class;|%illus.class;%local.termdef.mix;">
<!-- ............................................................... -->
<!-- Entities for mixtures of #PCDATA and phrase-level elements .... -->
<!-- ............................................................... -->
<!-- Note that %termdef.pcd.mix contains %note.class;
and %illus.class;, considered standalone elements. -->
<!--
#1997-09-30: maler: Added scrap and %note.class; to %termdef.pcd.mix;.
#1997-11-28: maler: Added %loc.class; to %p.pcd.mix;.
#1998-03-10: maler: Added %ednote.class; to all mixtures.
#1998-03-23: maler: Moved some %termdef.pcd.mix; stuff out to
# %termdef.mix;.
#1998-05-14: maler: Removed %statusp.pcd.mix;.
#1998-05-21: maler: Added constraint element to %eg.pcd.mix;.
#1999-07-02: maler: Added %loc.class; to %head.pcd.mix;,
# %label.pcd.mix;, %eg.pcd.mix;, %termdef.pcd.mix;,
# %tech.pcd.mix; (net: all PCD mixes have it).
# Removed unused %loc.pcd.mix;.
-->
<!ENTITY % local.p.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % p.pcd.mix
"#PCDATA|%annot.class;|%termdef.class;|%emph.class;
|%ref.class;|%tech.class;|%loc.class;|%ednote.class;%local.p.pcd.mix;">
<!ENTITY % local.head.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % head.pcd.mix
"#PCDATA|%annot.class;|%emph.class;|%tech.class;
|%loc.class;|%ednote.class;%local.head.pcd.mix;">
<!ENTITY % local.label.pcd.mix " | termref"> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % label.pcd.mix
"#PCDATA|%annot.class;|%termdef.class;|%emph.class;
|%tech.class;|%loc.class;|%ednote.class;%local.label.pcd.mix;">
<!ENTITY % local.eg.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % eg.pcd.mix
"#PCDATA|%annot.class;|%emph.class;|%loc.class;
|%ednote.class;|constraint %local.eg.pcd.mix;">
<!ENTITY % local.termdef.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % termdef.pcd.mix
"#PCDATA|term|%emph.class;|%ref.class;|%tech.class;
|%loc.class;|%ednote.class;%local.termdef.pcd.mix;">
<!ENTITY % local.bibl.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % bibl.pcd.mix
"#PCDATA|%emph.class;|%ref.class;|%loc.class;|%ednote.class;%local.bibl.pcd.mix;">
<!ENTITY % local.tech.pcd.mix " "> <!-- compensate for IE bug; suggested by ht -->
<!ENTITY % tech.pcd.mix
"#PCDATA|%loc.class;|%ednote.class;|phrase|rfc2119 %local.tech.pcd.mix;">
<!-- ............................................................... -->
<!-- Entities for customizable content models ...................... -->
<!-- ............................................................... -->
<!--
#1998-03-10: maler: Added customization entities.
#1998-05-14: maler: Allowed prevlocs and latestloc in either order.
#1999-07-02: maler: Made version optional; added copyright element.
#2000-03-07: maler: Allowed status and abstract in opposite order.
-->
<!ENTITY % spec.mdl
"header, front?, body, back?">
<!ENTITY % header.mdl
"title, subtitle?, version?, w3c-designation, w3c-doctype,
pubdate, notice*, publoc, altlocs?, ((prevlocs, latestloc?) |
(latestloc, prevlocs?))?, authlist, errataloc?, preverrataloc?,
translationloc?, copyright?,
((status, abstract) | (abstract, status)), pubstmt?,
sourcedesc?, langusage, revisiondesc">
<!ENTITY % pubdate.mdl
"day?, month, year">
<!-- ............................................................... -->
<!-- Entities for common attributes ................................ -->
<!-- ............................................................... -->
<!--
#2000-03-07: maler: Added %argtypes;.
-->
<!-- argtypes:
Values for function prototype argument datatypes. -->
<!ENTITY % argtypes
'(boolean
|expression
|location-set
|node-set
|number
|object
|point
|range
|string)'>
<!-- key attribute:
Optionally provides a sorting or indexing key, for cases when
the element content is inappropriate for this purpose. -->
<!ENTITY % key.att
'key CDATA #IMPLIED'>
<!-- def attribute:
Points to the element where the relevant definition can be
found, using the IDREF mechanism. %def.att; is for optional
def attributes, and %def-req.att; is for required def
attributes. -->
<!ENTITY % def.att
'def IDREF #IMPLIED'>
<!ENTITY % def-req.att
'def IDREF #REQUIRED'>
<!-- ref attribute:
Points to the element where more information can be found,
using the IDREF mechanism. %ref.att; is for optional
ref attributes, and %ref-req.att; is for required ref
attributes. -->
<!ENTITY % ref.att
'ref IDREF #IMPLIED'>
<!ENTITY % ref-req.att
'ref IDREF #REQUIRED'>
<!--
#1998-03-23: maler: Added show and actuate attributes to href.
# Added semi-common xml:space attribute.
#1998-08-22: maler: Used new xlink:form and #IMPLIED features.
#1999-07-02: maler: Reorganized XLink-related entities completely;
# added xmlns:xlink attribute to the mix.
#2000-03-07: maler: Updated XLink usage to February 2000 draft,
# except that href still has no namespace prefix.
-->
<!-- xmlns:xlink and xlink:type attributes:
xmlns:xlink declares the association of the xlink prefix
with the namespace created by the XLink specification.
xlink:type identifies an element as an XLink "simple" linking
element. -->
<!ENTITY % simple-xlink.att
'xmlns:xlink CDATA #FIXED
"http://www.w3.org/1999/xlink"
xlink:type CDATA #FIXED "simple" '>
<!-- href attributes:
The href attribute locates the remote-resource half of a
simple link; the element on which the href appears is the
local-resource half. Some elements are usable links only if
the author chooses to supply a functional href. The attribute
name should really be xlink:href, but is kept without the
prefix for now in order to be backwards-compatible. -->
<!ENTITY % href.att
'href CDATA #IMPLIED '>
<!ENTITY % href-req.att
'href CDATA #REQUIRED '>
<!-- xlink:show and xlink:actuate attributes:
These attributes offer instructions to the display engine
about how to handle traversal to resource indicated by an
href locator. -->
<!ENTITY % auto-embed.att
'xlink:show CDATA #FIXED "embed"
xlink:actuate CDATA #FIXED "onLoad" '>
<!ENTITY % user-replace.att
'xlink:show CDATA #FIXED "replace"
xlink:actuate CDATA #FIXED "onRequest" '>
<!ENTITY % user-new.att
'xlink:show CDATA #FIXED "new"
xlink:actuate CDATA #FIXED "onRequest" '>
<!-- xml:space attribute:
Indicates that the element contains whitespace that the
formatter or other application should retain, as appropriate
to its function. -->
<!ENTITY % xmlspace.att
'xml:space (default
|preserve) #FIXED "preserve" '>
<!--
#2000-03-07: maler: Added common diff attribute. Made %role.att;.
-->
<!-- diff attribute:
Indicates in what way the element has changed. When a value
is not provided, that subelement should inherit a value from
its parent. If the root element has no value supplied,
assume "off". -->
<!ENTITY % diff.att
'diff (chg
|add
|del
|off) #IMPLIED'>
<!-- role attribute:
Extends the useful life of the DTD by allowing authors to
make a subtype of any element. No default. -->
<!ENTITY % role.att
'role NMTOKEN #IMPLIED'>
<!-- Common attributes:
Every element has an ID attribute for links, a role
attribute, and a diff attribute. %common.att; is for
common attributes where the ID is optional, and
%common-idreq.att; is for common attributes where the
ID is required. -->
<!ENTITY % local.common.att " ">
<!ENTITY % common.att
'id ID #IMPLIED
%role.att;
%diff.att;
%local.common.att;'>
<!ENTITY % local.common-idreq.att " ">
<!ENTITY % common-idreq.att
'id ID #REQUIRED
%role.att;
%diff.att;
%local.common-idreq.att;'>
<!-- ............................................................... -->
<!-- Common elements ............................................... -->
<!-- ............................................................... -->
<!-- head: Title on divisions, productions, and the like -->
<!ENTITY % head.element "INCLUDE">
<![%head.element;[
<!ELEMENT head (%head.pcd.mix;)*>
]]>
<!ENTITY % head.attlist "INCLUDE">
<![%head.attlist;[
<!ATTLIST head %common.att;>
]]>
<!-- ............................................................... -->
<!-- Major specification structure ................................. -->
<!-- ............................................................... -->
<!--
#1998-03-10: maler: Made spec content model easily customizable.
#1999-07-02: maler: Added doctype atts and status att.
#2000-03-07: maler: Added cr, issues, and dispcmts to w3c-doctype.
-->
<!ENTITY % spec.element "INCLUDE">
<![%spec.element;[
<!ELEMENT spec (%spec.mdl;)>
]]>
<!-- w3c-doctype attributes:
Indicates the type of document, so that the appropriate
stylesheet or workflow routing can be applied. Should
*not* generate any text (such as the "REC-" or "NOTE-"
prefix on the W3C designation content). No default. If
w3c-doctype is "other", other-doctype should be filled in.
status attribute:
Indicates the stage of review of the document. May affect
the stylesheet's treatment of ednotes (e.g., whether to
output them). No default. -->
<!ENTITY % local.spec.att " xml:lang CDATA #IMPLIED ">
<!ENTITY % spec.attlist "INCLUDE">
<![%spec.attlist;[
<!ATTLIST spec
%common.att;
%local.spec.att;
w3c-doctype (cr
|dispcmts
|issues
|wgnote
|memsub
|teamsub
|note
|other
|pr
|per
|rec
|wd
|review) #IMPLIED
other-doctype CDATA #IMPLIED
status (int-review
|ext-review
|final) #IMPLIED
>
]]>
<!ENTITY % front.element "INCLUDE">
<![%front.element;[
<!ELEMENT front (div1+)>
]]>
<!ENTITY % front.attlist "INCLUDE">
<![%front.attlist;[
<!ATTLIST front %common.att;>
]]>
<!ENTITY % body.element "INCLUDE">
<![%body.element;[
<!ELEMENT body (div1+)>
]]>
<!ENTITY % body.attlist "INCLUDE">
<![%body.attlist;[
<!ATTLIST body %common.att;>
]]>
<!--
#1997-09-30: maler: Added inform-div1 to back content.
-->
<!ENTITY % back.element "INCLUDE">
<![%back.element;[
<!ELEMENT back ((div1+, inform-div1*) | inform-div1+)>
]]>
<!ENTITY % back.attlist "INCLUDE">
<![%back.attlist;[
<!ATTLIST back %common.att;>
]]>
<!ENTITY % div1.element "INCLUDE">
<![%div1.element;[
<!ELEMENT div1 (head, (%div.mix;)*, div2*)>
]]>
<!ENTITY % div1.attlist "INCLUDE">
<![%div1.attlist;[
<!ATTLIST div1 %common.att;>
]]>
<!--
#1997-09-30: maler: Added inform-div1 declarations.
#2000-03-07: maler: Added div5 level.
-->
<!-- inform-div1: Non-normative division in back matter -->
<!ENTITY % inform-div1.element "INCLUDE">
<![%inform-div1.element;[
<!ELEMENT inform-div1 (head, (%div.mix;)*, div2*)>
]]>
<!ENTITY % inform-div1.attlist "INCLUDE">
<![%inform-div1.attlist;[
<!ATTLIST inform-div1 %common.att;>
]]>
<!ENTITY % div2.element "INCLUDE">
<![%div2.element;[
<!ELEMENT div2 (head, (%div.mix;)*, div3*)>
]]>
<!ENTITY % div2.attlist "INCLUDE">
<![%div2.attlist;[
<!ATTLIST div2 %common.att;>
]]>
<!ENTITY % div3.element "INCLUDE">
<![%div3.element;[
<!ELEMENT div3 (head, (%div.mix;)*, div4*)>
]]>
<!ENTITY % div3.attlist "INCLUDE">
<![%div3.attlist;[
<!ATTLIST div3 %common.att;>
]]>
<!ENTITY % div4.element "INCLUDE">
<![%div4.element;[
<!ELEMENT div4 (head, (%div.mix;)*, div5*)>
]]>
<!ENTITY % div4.attlist "INCLUDE">
<![%div4.attlist;[
<!ATTLIST div4 %common.att;>
]]>
<!ENTITY % div5.element "INCLUDE">
<![%div5.element;[
<!ELEMENT div5 (head, (%div.mix;)*)>
]]>
<!ENTITY % div5.attlist "INCLUDE">
<![%div5.attlist;[
<!ATTLIST div5 %common.att;>
]]>
<!-- ............................................................... -->
<!-- Specification header .......................................... -->
<!-- ............................................................... -->
<!--
#1998-03-10: maler: Made header content model easily customizable.
-->
<!ENTITY % header.element "INCLUDE">
<![%header.element;[
<!ELEMENT header (%header.mdl;)>
]]>
<!ENTITY % header.attlist "INCLUDE">
<![%header.attlist;[
<!ATTLIST header %common.att;>
]]>
<!-- Example of title: "Extensible Cheese Language (XCL)" -->
<!ENTITY % title.element "INCLUDE">
<![%title.element;[
<!ELEMENT title (#PCDATA|phrase)*>
]]>
<!ENTITY % title.attlist "INCLUDE">
<![%title.attlist;[
<!ATTLIST title %common.att;>
]]>
<!-- Example of subtitle: "A Cheesy Specification" -->
<!ENTITY % subtitle.element "INCLUDE">
<![%subtitle.element;[
<!ELEMENT subtitle (#PCDATA|phrase)*>
]]>
<!ENTITY % subtitle.attlist "INCLUDE">
<![%subtitle.attlist;[
<!ATTLIST subtitle %common.att;>
]]>
<!-- Example of version: "Version 666.0" -->
<!ENTITY % version.element "INCLUDE">
<![%version.element;[
<!ELEMENT version (#PCDATA|phrase)*>
]]>
<!ENTITY % version.attlist "INCLUDE">
<![%version.attlist;[
<!ATTLIST version %common.att;>
]]>
<!-- Example of w3c-designation: "WD-xcl-19991231" -->
<!ENTITY % w3c-designation.element "INCLUDE">
<![%w3c-designation.element;[
<!ELEMENT w3c-designation (#PCDATA|phrase)*>
]]>
<!ENTITY % w3c-designation.attlist "INCLUDE">
<![%w3c-designation.attlist;[
<!ATTLIST w3c-designation %common.att;>
]]>
<!-- Example of w3c-doctype: "W3C Working Draft" -->
<!ENTITY % w3c-doctype.element "INCLUDE">
<![%w3c-doctype.element;[
<!ELEMENT w3c-doctype (#PCDATA|phrase)*>
]]>
<!ENTITY % w3c-doctype.attlist "INCLUDE">
<![%w3c-doctype.attlist;[
<!ATTLIST w3c-doctype %common.att;>
]]>
<!--
#1998-03-10: maler: Made pubdate content model easily customizable.
-->
<!ENTITY % pubdate.element "INCLUDE">
<![%pubdate.element;[
<!ELEMENT pubdate (%pubdate.mdl;)>
]]>
<!ENTITY % pubdate.attlist "INCLUDE">
<![%pubdate.attlist;[
<!ATTLIST pubdate %common.att;>
]]>
<!ENTITY % day.element "INCLUDE">
<![%day.element;[
<!ELEMENT day (#PCDATA|phrase)*>
]]>
<!ENTITY % day.attlist "INCLUDE">
<![%day.attlist;[
<!ATTLIST day %common.att;>
]]>
<!ENTITY % month.element "INCLUDE">
<![%month.element;[
<!ELEMENT month (#PCDATA|phrase)*>
]]>
<!ENTITY % month.attlist "INCLUDE">
<![%month.attlist;[
<!ATTLIST month %common.att;>
]]>
<!ENTITY % year.element "INCLUDE">
<![%year.element;[
<!ELEMENT year (#PCDATA|phrase)*>
]]>
<!ENTITY % year.attlist "INCLUDE">
<![%year.attlist;[
<!ATTLIST year %common.att;>
]]>
<!--
#1999-07-02: maler: Declared copyright element.
-->
<!ENTITY % copyright.element "INCLUDE">
<![%copyright.element;[
<!ELEMENT copyright (%hdr.mix;)+>
]]>
<!ENTITY % copyright.attlist "INCLUDE">
<![%copyright.attlist;[
<!ATTLIST copyright %common.att;>
]]>
<!-- Example of notice: "This draft is for public comment..." -->
<!ENTITY % notice.element "INCLUDE">
<![%notice.element;[
<!ELEMENT notice (%hdr.mix;)+>
]]>
<!ENTITY % notice.attlist "INCLUDE">
<![%notice.attlist;[
<!ATTLIST notice %common.att;>
]]>
<!--
#2000-03-07: maler: Broadened models of *loc to %p.pcd.mix;.
-->
<!ENTITY % publoc.element "INCLUDE">
<![%publoc.element;[
<!ELEMENT publoc (%p.pcd.mix;)*>
]]>
<!ENTITY % publoc.attlist "INCLUDE">
<![%publoc.attlist;[
<!ATTLIST publoc %common.att;>
]]>
<!--
#2002-08-15: nwalsh: Added altlocs element.
The semantics of the altlocs are equivalent to the Dublin Core relation element
with type="hasVersion". Each of the loc elements inside altlocs should identify
an alternate version of the resource described by the document, for example
HTML, XML, and PDF forms.
-->
<!ENTITY % altlocs.element "INCLUDE">
<![%altlocs.element;[
<!ELEMENT altlocs (loc+)>
]]>
<!ENTITY % altlocs.attlist "INCLUDE">
<![%altlocs.attlist;[
<!ATTLIST altlocs %common.att;>
]]>
<!ENTITY % prevlocs.element "INCLUDE">
<![%prevlocs.element;[
<!ELEMENT prevlocs (%p.pcd.mix;)*>
]]>
<!ENTITY % prevlocs.attlist "INCLUDE">
<![%prevlocs.attlist;[
<!ATTLIST prevlocs %common.att;>
]]>
<!--
#2005-10-13: nwalsh: restrict latestloc content model.
New pubrules allows for multiple latestlocs. For some reason, this element
used to allow PCDATA. Now it allows only loc elements. If this causes
trouble, tell Norm.
-->
<!ENTITY % latestloc.element "INCLUDE">
<![%latestloc.element;[
<!ELEMENT latestloc (loc+)>
]]>
<!ENTITY % latestloc.attlist "INCLUDE">
<![%latestloc.attlist;[
<!ATTLIST latestloc %common.att;>
]]>
<!ENTITY % errataloc.element "INCLUDE">
<![%errataloc.element;[
<!ELEMENT errataloc EMPTY>
]]>
<!ENTITY % errataloc.attlist "INCLUDE">
<![%errataloc.attlist;[
<!ATTLIST errataloc
%common.att;
%simple-xlink.att;
%href-req.att;
>
]]>
<!ENTITY % preverrataloc.element "INCLUDE">
<![%preverrataloc.element;[
<!ELEMENT preverrataloc EMPTY>
]]>
<!ENTITY % preverrataloc.attlist "INCLUDE">
<![%preverrataloc.attlist;[
<!ATTLIST preverrataloc
%common.att;
%simple-xlink.att;
%href-req.att;
>
]]>
<!ENTITY % translationloc.element "INCLUDE">
<![%translationloc.element;[
<!ELEMENT translationloc EMPTY>
]]>
<!ENTITY % translationloc.attlist "INCLUDE">
<![%translationloc.attlist;[
<!ATTLIST translationloc
%common.att;
%simple-xlink.att;
%href-req.att;
>
]]>
<!-- loc (defined in "Phrase-level elements" below) -->
<!ENTITY % authlist.element "INCLUDE">
<![%authlist.element;[
<!ELEMENT authlist (author+)>
]]>
<!ENTITY % authlist.attlist "INCLUDE">
<![%authlist.attlist;[
<!ATTLIST authlist %common.att;>
]]>
<!--
#1997-09-30: maler: Made affiliation optional.
#1998-03-10: maler: Made email optional.
-->
<!ENTITY % author.element "INCLUDE">
<![%author.element;[
<!ELEMENT author (name, affiliation?, email?)>
]]>
<!ENTITY % author.attlist "INCLUDE">
<![%author.attlist;[
<!ATTLIST author %common.att;>
]]>
<!ENTITY % name.element "INCLUDE">
<![%name.element;[
<!ELEMENT name (#PCDATA|phrase)*>
]]>
<!ENTITY % name.attlist "INCLUDE">
<![%name.attlist;[
<!ATTLIST name
%common.att;
%key.att;>
]]>
<!ENTITY % affiliation.element "INCLUDE">
<![%affiliation.element;[
<!ELEMENT affiliation (#PCDATA|phrase)*>
]]>
<!ENTITY % affiliation.attlist "INCLUDE">
<![%affiliation.attlist;[
<!ATTLIST affiliation %common.att;>
]]>
<!--
#1999-07-02: maler: Added show/actuate attributes and default values.
-->
<!ENTITY % email.element "INCLUDE">
<![%email.element;[
<!ELEMENT email (#PCDATA|phrase)*>
]]>
<!-- href attribute:
email functions as a hypertext reference through this
required attribute. Typically the reference would use
the mailto: scheme. E.g.:
<email href="mailto:elm@arbortext.com">elm@arbortext.com</email>
-->
<!ENTITY % email.attlist "INCLUDE">
<![%email.attlist;[
<!ATTLIST email
%common.att;
%simple-xlink.att;
%href-req.att;
%user-new.att;>
]]>
<!--
#1998-05-15: maler: Changed status content from %statusobj.mix;
# to plain %obj.mix;. statusp is obsolete.
-->
<!ENTITY % status.element "INCLUDE">
<![%status.element;[
<!ELEMENT status (%obj.mix;)+>
]]>
<!ENTITY % status.attlist "INCLUDE">
<![%status.attlist;[
<!ATTLIST status %common.att;>
]]>
<!ENTITY % abstract.element "INCLUDE">
<![%abstract.element;[
<!ELEMENT abstract (%hdr.mix;)*>
]]>
<!ENTITY % abstract.attlist "INCLUDE">
<![%abstract.attlist;[
<!ATTLIST abstract %common.att;>
]]>
<!ENTITY % pubstmt.element "INCLUDE">
<![%pubstmt.element;[
<!ELEMENT pubstmt (%hdr.mix;)+>
]]>
<!ENTITY % pubstmt.attlist "INCLUDE">
<![%pubstmt.attlist;[
<!ATTLIST pubstmt %common.att;>
]]>
<!ENTITY % sourcedesc.element "INCLUDE">
<![%sourcedesc.element;[
<!ELEMENT sourcedesc (%hdr.mix;)+>
]]>
<!ENTITY % sourcedesc.attlist "INCLUDE">
<![%sourcedesc.attlist;[
<!ATTLIST sourcedesc %common.att;>
]]>
<!ENTITY % langusage.element "INCLUDE">
<![%langusage.element;[
<!ELEMENT langusage (language+)>
]]>
<!ENTITY % langusage.attlist "INCLUDE">
<![%langusage.attlist;[
<!ATTLIST langusage %common.att;>
]]>
<!ENTITY % language.element "INCLUDE">
<![%language.element;[
<!ELEMENT language (#PCDATA|phrase)*>
]]>
<!ENTITY % language.attlist "INCLUDE">
<![%language.attlist;[
<!ATTLIST language %common.att;>
]]>
<!ENTITY % revisiondesc.element "INCLUDE">
<![%revisiondesc.element;[
<!ELEMENT revisiondesc (%hdr.mix;)+>
]]>
<!ENTITY % revisiondesc.attlist "INCLUDE">
<![%revisiondesc.attlist;[
<!ATTLIST revisiondesc %common.att;>
]]>
<!-- ............................................................... -->
<!-- Paragraph ..................................................... -->
<!-- ............................................................... -->
<!--
#1997-09-30: maler: Changed from %obj.mix; to %p.mix;.
#1997-12-29: maler: Changed order of %p.mix; and %p.pcd.mix;
# references.
#1997-12-29: maler: Changed order of %statusobj.mix; and
# %statusp.pcd.mix; references.
#1998-05-14: maler: Removed statusp declarations.
-->
<!ENTITY % p.element "INCLUDE">
<![%p.element;[
<!ELEMENT p (%p.pcd.mix;|%p.mix;)*>
]]>
<!ENTITY % p.attlist "INCLUDE">
<![%p.attlist;[
<!ATTLIST p %common.att;>
]]>
<!-- ............................................................... -->
<!-- Regular lists ................................................. -->