summaryrefslogtreecommitdiff
path: root/client/dl/xmlspec-its.xsd
blob: 6789551029c90d94f4d3773cf620ebfaa9d497de (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
<?xml version="1.0" encoding="UTF-8"?>
<!-- ............................................................... -->
<!-- XML specification DTD ......................................... -->
<!-- ............................................................... -->
<!-- $Id: xmlspec-its.xsd,v 1.1 2008/02/10 07:44:48 fsasaki 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 &ldquo; and &rdquo;.
  #                   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.
-->
<!-- ............................................................... -->
<!-- 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;.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:its="http://www.w3.org/2005/11/its">
  <xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
  <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
    <xs:import namespace="http://www.w3.org/2005/11/its" schemaLocation="its.xsd"/> 
  <xs:group name="p.class">
    <xs:sequence>
      <xs:element ref="p"/>
    </xs:sequence>
  </xs:group>
  <xs:element name="list.class" abstract="true"/>
  <xs:element name="speclist.class" abstract="true"/>
  <xs:element name="note.class" abstract="true"/>
  <xs:element name="illus.class" abstract="true"/>
  <!-- ............................................................... -->
  <!-- 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;.
  -->
  <xs:element name="annot.class" abstract="true">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="termdef.class" abstract="true"/>
  <xs:element name="emph.class" abstract="true"/>
  <xs:element name="ref.class" abstract="true"/>
  <xs:element name="loc.class" abstract="true">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
      <xs:attributeGroup ref="user-replace.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="tech.class" abstract="true"/>
  <xs:element name="ednote.class" abstract="true">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="name"/>
        <xs:element minOccurs="0" ref="date"/>
        <xs:element ref="edtext"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- 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;.
  -->
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="div.mix">
    <xs:choice>
      <xs:group ref="p.class"/>
      <xs:element ref="list.class"/>
      <xs:element ref="speclist.class"/>
      <xs:element ref="note.class"/>
      <xs:element ref="illus.class"/>
      <xs:element ref="ednote.class"/>
    </xs:choice>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="obj.mix">
    <xs:choice>
      <xs:group ref="p.class"/>
      <xs:element ref="list.class"/>
      <xs:element ref="speclist.class"/>
      <xs:element ref="note.class"/>
      <xs:element ref="illus.class"/>
      <xs:element ref="ednote.class"/>
    </xs:choice>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="p.mix">
    <xs:choice>
      <xs:element ref="list.class"/>
      <xs:element ref="speclist.class"/>
      <xs:element ref="note.class"/>
      <xs:element ref="illus.class"/>
    </xs:choice>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="hdr.mix">
    <xs:choice>
      <xs:group ref="p.class"/>
      <xs:element ref="list.class"/>
      <xs:element ref="ednote.class"/>
    </xs:choice>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="termdef.mix">
    <xs:choice>
      <xs:element ref="note.class"/>
      <xs:element ref="illus.class"/>
    </xs:choice>
  </xs:group>
  <!-- ............................................................... -->
  <!-- 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;.
  -->
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="p.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="annot.class"/>
        <xs:element ref="termdef.class"/>
        <xs:element ref="emph.class"/>
        <xs:element ref="ref.class"/>
        <xs:element ref="tech.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
        <xs:element ref="its:span"/>
        <xs:element ref="its:ruby"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="head.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="annot.class"/>
        <xs:element ref="emph.class"/>
        <xs:element ref="tech.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="label.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="annot.class"/>
        <xs:element ref="termdef.class"/>
        <xs:element ref="emph.class"/>
        <xs:element ref="tech.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="eg.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="annot.class"/>
        <xs:element ref="emph.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
        <xs:element ref="constraint"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="termdef.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="term"/>
        <xs:element ref="emph.class"/>
        <xs:element ref="ref.class"/>
        <xs:element ref="tech.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="bibl.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="emph.class"/>
        <xs:element ref="ref.class"/>
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- compensate for IE bug; suggested by ht -->
  <xs:group name="tech.pcd.mix">
    <xs:sequence>
      <xs:choice minOccurs="0">
        <xs:element ref="loc.class"/>
        <xs:element ref="ednote.class"/>
        <xs:element ref="phrase"/>
        <xs:element ref="rfc2119"/>
      </xs:choice>
    </xs:sequence>
  </xs:group>
  <!-- ............................................................... -->
  <!-- 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.
  -->
  <xs:complexType name="spec.mdl">
    <xs:sequence>
      <xs:element ref="header"/>
      <xs:element minOccurs="0" ref="front"/>
      <xs:element ref="body"/>
      <xs:element minOccurs="0" ref="back"/>
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="header.mdl">
    <xs:sequence>
      <xs:element ref="title"/>
      <xs:element minOccurs="0" ref="subtitle"/>
      <xs:element minOccurs="0" ref="version"/>
      <xs:element ref="w3c-designation"/>
      <xs:element ref="w3c-doctype"/>
      <xs:element ref="pubdate"/>
      <xs:element minOccurs="0" maxOccurs="unbounded" ref="notice"/>
      <xs:element ref="publoc"/>
      <xs:element minOccurs="0" ref="altlocs"/>
      <xs:choice minOccurs="0">
        <xs:sequence>
          <xs:element ref="prevlocs"/>
          <xs:element minOccurs="0" ref="latestloc"/>
        </xs:sequence>
        <xs:sequence>
          <xs:element ref="latestloc"/>
          <xs:element minOccurs="0" ref="prevlocs"/>
        </xs:sequence>
      </xs:choice>
      <xs:element ref="authlist"/>
      <xs:element minOccurs="0" ref="errataloc"/>
      <xs:element minOccurs="0" ref="preverrataloc"/>
      <xs:element minOccurs="0" ref="translationloc"/>
      <xs:element minOccurs="0" ref="copyright"/>
      <xs:choice>
        <xs:sequence>
          <xs:element ref="status"/>
          <xs:element ref="abstract"/>
        </xs:sequence>
        <xs:sequence>
          <xs:element ref="abstract"/>
          <xs:element ref="status"/>
        </xs:sequence>
      </xs:choice>
      <xs:element minOccurs="0" ref="pubstmt"/>
      <xs:element minOccurs="0" ref="sourcedesc"/>
      <xs:element ref="langusage"/>
      <xs:element ref="revisiondesc"/>
      <xs:element ref="its:rules" maxOccurs="1" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="pubdate.mdl">
    <xs:sequence>
      <xs:element minOccurs="0" ref="day"/>
      <xs:element ref="month"/>
      <xs:element ref="year"/>
    </xs:sequence>
  </xs:complexType>
  <!-- ............................................................... -->
  <!-- Entities for common attributes ................................ -->
  <!-- ............................................................... -->
  <!-- #2000-03-07: maler: Added %argtypes;. -->
  <!--
    argtypes:
    Values for function prototype argument datatypes.
  -->
  <xs:simpleType name="argtypes">
    <xs:restriction base="xs:token">
      <xs:enumeration value="boolean"/>
      <xs:enumeration value="expression"/>
      <xs:enumeration value="location-set"/>
      <xs:enumeration value="node-set"/>
      <xs:enumeration value="number"/>
      <xs:enumeration value="object"/>
      <xs:enumeration value="point"/>
      <xs:enumeration value="range"/>
      <xs:enumeration value="string"/>
    </xs:restriction>
  </xs:simpleType>
  <!--
    key attribute:
    Optionally provides a sorting or indexing key, for cases when
    the element content is inappropriate for this purpose.
  -->
  <xs:attributeGroup name="key.att">
    <xs:attribute name="key"/>
  </xs:attributeGroup>
  <!--
    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.
  -->
  <xs:attributeGroup name="def-req.att">
    <xs:attribute name="def" use="required" type="xs:IDREF"/>
  </xs:attributeGroup>
  <!--
    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.
  -->
  <xs:attributeGroup name="ref-req.att">
    <xs:attribute name="ref" use="required" type="xs:IDREF"/>
  </xs:attributeGroup>
  <!--
    #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.
  -->
  <xs:attributeGroup name="simple-xlink.att">
    <xs:attribute ref="xlink:type" default="simple"/>
  </xs:attributeGroup>
  <!--
    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.
  -->
  <xs:attributeGroup name="href.att">
    <xs:attribute name="href"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="href-req.att">
    <xs:attribute name="href" use="required"/>
  </xs:attributeGroup>
  <!--
    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.
  -->
  <xs:attributeGroup name="auto-embed.att">
    <xs:attributeGroup ref="xlink:show"/>
    <xs:attributeGroup ref="xlink:actuate"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="user-replace.att">
    <xs:attributeGroup ref="xlink:show1"/>
    <xs:attributeGroup ref="xlink:actuate1"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="user-new.att">
    <xs:attributeGroup ref="xlink:show2"/>
    <xs:attributeGroup ref="xlink:actuate1"/>
  </xs:attributeGroup>
  <!--
    xml:space attribute:
    Indicates that the element contains whitespace that the
    formatter or other application should retain, as appropriate
    to its function.
  -->
  <xs:attributeGroup name="xmlspace.att">
    <xs:attribute ref="xml:space" default="preserve"/>
  </xs:attributeGroup>
  <!-- #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".
  -->
  <xs:attributeGroup name="diff.att">
    <xs:attribute name="diff">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="chg"/>
          <xs:enumeration value="add"/>
          <xs:enumeration value="del"/>
          <xs:enumeration value="off"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:attributeGroup>
  <!--
    role attribute:
    Extends the useful life of the DTD by allowing authors to
    make a subtype of any element.  No default.
  -->
  <xs:attributeGroup name="role.att">
    <xs:attribute name="role" type="xs:NMTOKEN"/>
  </xs:attributeGroup>
  <!--
    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.
  -->
  <xs:attributeGroup name="common.att">
    <xs:attribute name="id" type="xs:ID"/>
    <xs:attributeGroup ref="role.att"/>
    <xs:attributeGroup ref="diff.att"/>
      <xs:attributeGroup ref="its:its-att.local.with-ns.attributes"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="common-idreq.att">
    <xs:attribute name="id" use="required" type="xs:ID"/>
    <xs:attributeGroup ref="role.att"/>
    <xs:attributeGroup ref="diff.att"/>
  </xs:attributeGroup>
  <!-- ............................................................... -->
  <!-- Common elements ............................................... -->
  <!-- ............................................................... -->
  <!-- head: Title on divisions, productions, and the like -->
  <xs:element name="head">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="head.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- 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.
  -->
  <xs:element name="spec">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="spec.mdl">
          <xs:attributeGroup ref="common.att"/>
          <xs:attribute name="w3c-doctype">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="cr"/>
                <xs:enumeration value="dispcmts"/>
                <xs:enumeration value="issues"/>
                <xs:enumeration value="wgnote"/>
                <xs:enumeration value="memsub"/>
                <xs:enumeration value="teamsub"/>
                <xs:enumeration value="note"/>
                <xs:enumeration value="other"/>
                <xs:enumeration value="pr"/>
                <xs:enumeration value="per"/>
                <xs:enumeration value="rec"/>
                <xs:enumeration value="wd"/>
                <xs:enumeration value="review"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="other-doctype"/>
          <xs:attribute name="status">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="int-review"/>
                <xs:enumeration value="ext-review"/>
                <xs:enumeration value="final"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!--
    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.
  -->
  <xs:element name="front">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="div1"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="body">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="div1"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1997-09-30: maler: Added inform-div1 to back content. -->
  <xs:element name="back">
    <xs:complexType>
      <xs:choice>
        <xs:sequence>
          <xs:element maxOccurs="unbounded" ref="div1"/>
          <xs:element minOccurs="0" maxOccurs="unbounded" ref="inform-div1"/>
        </xs:sequence>
        <xs:element maxOccurs="unbounded" ref="inform-div1"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="div1">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="div2"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #1997-09-30: maler: Added inform-div1 declarations.
    #2000-03-07: maler: Added div5 level.
  -->
  <!-- inform-div1: Non-normative division in back matter -->
  <xs:element name="inform-div1">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="div2"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="div2">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="div3"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="div3">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="div4"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="div4">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="div5"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="div5">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group minOccurs="0" maxOccurs="unbounded" ref="div.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Specification header .......................................... -->
  <!-- ............................................................... -->
  <!-- #1998-03-10: maler: Made header content model easily customizable. -->
  <xs:element name="header">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="header.mdl">
          <xs:attributeGroup ref="common.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- Example of title: "Extensible Cheese Language (XCL)" -->
  <xs:element name="title">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- Example of subtitle: "A Cheesy Specification" -->
  <xs:element name="subtitle">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- Example of version: "Version 666.0" -->
  <xs:element name="version">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- Example of w3c-designation: "WD-xcl-19991231" -->
  <xs:element name="w3c-designation">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- Example of w3c-doctype: "W3C Working Draft" -->
  <xs:element name="w3c-doctype">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1998-03-10: maler: Made pubdate content model easily customizable. -->
  <xs:element name="pubdate">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="pubdate.mdl">
          <xs:attributeGroup ref="common.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="day">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="month">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="year">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Declared copyright element. -->
  <xs:element name="copyright">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- Example of notice: "This draft is for public comment..." -->
  <xs:element name="notice">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #2000-03-07: maler: Broadened models of *loc to %p.pcd.mix;. -->
  <xs:element name="publoc">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #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.
  -->
  <xs:element name="altlocs">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="loc"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="prevlocs">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #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.
  -->
  <xs:element name="latestloc">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="loc"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="errataloc">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="preverrataloc">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="translationloc">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
    </xs:complexType>
  </xs:element>
  <!-- loc (defined in "Phrase-level elements" below) -->
  <xs:element name="authlist">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="author"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #1997-09-30: maler: Made affiliation optional.
    #1998-03-10: maler: Made email optional.
  -->
  <xs:element name="author">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="name"/>
        <xs:element minOccurs="0" ref="affiliation"/>
        <xs:element minOccurs="0" ref="email"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="name">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="key.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="affiliation">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <xs:element name="email">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
      <xs:attributeGroup ref="user-new.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    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>
  -->
  <!--
    #1998-05-15: maler: Changed status content from %statusobj.mix;
    #                   to plain %obj.mix;.  statusp is obsolete.
  -->
  <xs:element name="status">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="abstract">
    <xs:complexType>
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="pubstmt">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="sourcedesc">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="langusage">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="language"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="language">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="revisiondesc">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="hdr.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- 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.
  -->
  <xs:element name="p">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="p.pcd.mix"/>
        <xs:group ref="p.mix"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Regular lists ................................................. -->
  <!-- ............................................................... -->
  <!-- ulist: Unordered list, typically bulleted. -->
  <xs:element name="ulist" substitutionGroup="list.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="item"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="spacing">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="normal"/>
            <xs:enumeration value="compact"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <!--
    spacing attribute:
    Use "normal" to get normal vertical spacing for items;
    use "compact" to get less spacing.  The default is dependent
    on the stylesheet.
  -->
  <!-- olist: Ordered list, typically numbered. -->
  <xs:element name="olist" substitutionGroup="list.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="item"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="spacing">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="normal"/>
            <xs:enumeration value="compact"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <!--
    spacing attribute:
    Use "normal" to get normal vertical spacing for items;
    use "compact" to get less spacing.  The default is dependent
    on the stylesheet.
  -->
  <xs:element name="item">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- slist: Simple list, typically with no mark. -->
  <xs:element name="slist" substitutionGroup="list.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="sitem"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="sitem">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- glist: Glossary list, typically two-column. -->
  <xs:element name="glist" substitutionGroup="list.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="gitem"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="gitem">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="label"/>
        <xs:element ref="def"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="label">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="label.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="def">
    <xs:complexType>
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Special lists ................................................. -->
  <!-- ............................................................... -->
  <!-- blist: Bibliography list. -->
  <xs:element name="blist" substitutionGroup="speclist.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="bibl"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <xs:element name="bibl">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="bibl.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href.att"/>
      <xs:attributeGroup ref="user-replace.att"/>
      <xs:attributeGroup ref="key.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    href attribute:
    bibl optionally functions as a hypertext reference to the
    referred-to resource through this attribute.  E.g.:
    
    <bibl href="http://www.my.com/doc.htm">My Document</bibl>
  -->
  <!-- orglist: Organization member list. -->
  <xs:element name="orglist" substitutionGroup="speclist.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="member"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1997-09-30: maler: Added optional affiliation. -->
  <xs:element name="member">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="name"/>
        <xs:element minOccurs="0" ref="affiliation"/>
        <xs:element minOccurs="0" ref="role"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- name (defined in "Specification header" above) -->
  <!-- affiliation (defined in "Specification header" above) -->
  <xs:element name="role">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Notes ......................................................... -->
  <!-- ............................................................... -->
  <xs:element name="note" substitutionGroup="note.class">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #1998-05-14: maler: Declared issue element.
    #2000-03-07: maler: Added head, source, resolution, and status.
  -->
  <xs:element name="issue" substitutionGroup="note.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="head"/>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="source"/>
        <xs:group maxOccurs="unbounded" ref="obj.mix"/>
        <xs:element minOccurs="0" ref="resolution"/>
      </xs:sequence>
      <xs:attribute name="id" use="required" type="xs:ID"/>
      <xs:attributeGroup ref="role.att"/>
      <xs:attributeGroup ref="diff.att"/>
      <xs:attribute name="status" default="open">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="open"/>
            <xs:enumeration value="closed"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <!--
    status attribute:
    Indicates whether the issue is open or closed.  Note that
    the lack of a resolution element does not necessarily mean
    that the issue is still open.
  -->
  <xs:element name="source">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="resolution">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- wfcnote: Well-formedness constraint note. -->
  <xs:element name="wfcnote" substitutionGroup="note.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common-idreq.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    ID attribute:
    wfcnote must have an ID so that it can be pointed to
    from a wfc element in a production.
  -->
  <!-- vcnote: Validity constraint note. -->
  <xs:element name="vcnote" substitutionGroup="note.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common-idreq.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    ID attribute:
    vcnote must have an ID so that it can be pointed to
    from a vc element in a production.
  -->
  <!-- #1998-05-21: maler: Declared generic constraintnote element. -->
  <!-- constraintnote: Generic constraint note. -->
  <xs:element name="constraintnote" substitutionGroup="note.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common-idreq.att"/>
      <xs:attribute name="type" use="required" type="xs:NMTOKEN"/>
    </xs:complexType>
  </xs:element>
  <!--
    ID attribute:
    constraintnote must have an ID so that it can be
    pointed to from a constraint element in a production.
  -->
  <!--
    type attribute:
    constraintnote must have a type value keyword so that
    it can be correctly characterized in the specification.
  -->
  <!-- ............................................................... -->
  <!-- Basic display elements ........................................ -->
  <!-- ............................................................... -->
  <!-- #1998-03-23: maler: Added xml:space attribute. -->
  <!-- eg: Example element, with whitespace respected. -->
  <xs:element name="eg" substitutionGroup="illus.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="eg.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="xmlspace.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #2000-03-07: maler: Removed the xml:attributes attribute.
    #                   Added %local.graphic.att;.
  -->
  <!--
    graphic: Displayed graphic.  Graphic data should be
    displayed at the point where it is referenced.  Not
    actually conforming to XLink right now.
  -->
  <xs:element name="graphic" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attribute name="source" use="required"/>
      <xs:attributeGroup ref="auto-embed.att"/>
      <xs:attribute name="alt"/>
    </xs:complexType>
  </xs:element>
  <!--
    source attribute:
    The graphic data must reside at the location pointed to.
  -->
  <!-- #2000-03-07: maler: Added proto element structure. -->
  <!-- proto: Function prototype, in the XPath/XPointer style. -->
  <xs:element name="proto" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="arg"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="name" use="required" type="xs:NMTOKEN"/>
      <xs:attribute name="return-type" use="required" type="argtypes"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="arg">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="type" use="required" type="argtypes"/>
      <xs:attribute name="occur">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="opt"/>
            <xs:enumeration value="req"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <!-- #2000-03-07: maler: Added example element. -->
  <xs:element name="example" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="head"/>
        <xs:group maxOccurs="unbounded" ref="obj.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- EBNF .......................................................... -->
  <!-- ............................................................... -->
  <!--
    #1997-11-28: maler: Added prodgroup to scrap and defined it.
    #1998-05-21: maler: Added constraint to prod.
    #1999-07-02: maler: Added prodrecap to scrap; broadened scrap model.
    #                   Added headstyle attribute to scrap.
  -->
  <!-- scrap: Collection of EBNF language productions. -->
  <xs:element name="scrap" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="head"/>
        <xs:choice maxOccurs="unbounded">
          <xs:element ref="prodgroup"/>
          <xs:element ref="prod"/>
          <xs:element ref="bnf"/>
          <xs:element ref="prodrecap"/>
        </xs:choice>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="lang" type="xs:IDREF"/>
      <xs:attribute name="headstyle" default="show">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="show"/>
            <xs:enumeration value="suppress"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:complexType>
  </xs:element>
  <!--
    lang attribute:
    The scrap can link to a description of the language used,
    found in a language element in the header.
    headstyle attribute:
    Allows a scrap title to be suppressed from output.  To be
    used only when a scrap title directly next to a section
    title is distracting or repetetive.
  -->
  <!--
    prodgroup: Sub-collection of productions, needed for
    formatting reasons.
  -->
  <xs:element name="prodgroup">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="prod"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="pcw1"/>
      <xs:attribute name="pcw2"/>
      <xs:attribute name="pcw3"/>
      <xs:attribute name="pcw4"/>
      <xs:attribute name="pcw5"/>
    </xs:complexType>
  </xs:element>
  <!--
    pcw<n> attributes:
    Presentational attributes to control the width
    of the "pseudo-table" columns used to output
    groups of productions.
  -->
  <!-- prod: EBNF language production. -->
  <xs:element name="prod">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="lhs"/>
        <xs:sequence maxOccurs="unbounded">
          <xs:element ref="rhs"/>
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="com"/>
            <xs:element ref="wfc"/>
            <xs:element ref="vc"/>
            <xs:element ref="constraint"/>
          </xs:choice>
        </xs:sequence>
      </xs:sequence>
      <xs:attributeGroup ref="common-idreq.att"/>
      <xs:attribute name="num"/>
    </xs:complexType>
  </xs:element>
  <!--
    ID attribute:
    The production must have an ID so that cross-references
    (specref) and mentions of nonterminals (nt) can link to
    it.
  -->
  <!-- lhs: Left-hand side of production. -->
  <xs:element name="lhs">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    rhs: Right-hand side of production; may have many
    "right-hand sides," one to a line.
  -->
  <xs:element name="rhs">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="phrase"/>
        <xs:element ref="nt"/>
        <xs:element ref="xnt"/>
        <xs:element ref="com"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- nt and xnt (defined in "Phrase-level elements" below) -->
  <!-- #1997-11-28: maler: Added loc and bibref to com content. -->
  <!-- com: Production comment. -->
  <xs:element name="com">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="phrase"/>
        <xs:element ref="loc"/>
        <xs:element ref="bibref"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    wfc: Reference to a well-formedness constraint; should
    generate the head of the wfcnote pointed to.
  -->
  <xs:element name="wfc">
    <xs:complexType>
      <xs:attributeGroup ref="def-req.att"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    def attribute:
    Each well formedness tagline in a production must link to the
    wfcnote that defines it.
  -->
  <!--
    vc: Reference to a validity constraint; should generate
    the head of the vcnote pointed to.
  -->
  <xs:element name="vc">
    <xs:complexType>
      <xs:attributeGroup ref="def-req.att"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    def attribute:
    Each validity tagline in a production must link to the vcnote
    that defines it.
  -->
  <!-- #1998-05-21: maler: Declared generic constraint element. -->
  <!--
    constraint: Reference to a generic constraint; should
    generate the head of the constraintnote pointed to.
  -->
  <xs:element name="constraint">
    <xs:complexType>
      <xs:attributeGroup ref="def-req.att"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    def attribute:
    Each constraint tagline in a production must link to the
    constraint note that defines it.
  -->
  <!-- #1998-03-23: maler: Added xml:space attribute. -->
  <!--
    bnf: Un-marked-up EBNF production, with whitespace
    respected.
  -->
  <xs:element name="bnf">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="eg.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="xmlspace.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Declared prodrecap. -->
  <!--
    prodrecap: Reference to production or bnf that appears
    in its "normative" form elsewhere in the spec; should
    generate a copy of the original production, without
    a production number next to it.
  -->
  <xs:element name="prodrecap">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="ref-req.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Table ......................................................... -->
  <!-- ............................................................... -->
  <!--
    #1997-10-16: maler: Added table mechanism.
    #1997-11-28: maler: Added non-null system ID to entity declaration.
    #                   Added HTML table module.
    #1997-12-29: maler: IGNOREd SGML Open table model.
    #1998-03-10: maler: Removed SGML Open table model.
    #                   Merged html-tbl.mod file into main file.
    #                   Added %common.att; to all HTML table elements.
    #1998-05-14: maler: Replaced table model with full HTML 4.0 model.
    #                   Removed htable in favor of table.
    #                   Removed htbody in favor of tbody.
  -->
  <xs:attributeGroup name="cellhalign.att">
    <xs:attribute name="align">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="left"/>
          <xs:enumeration value="center"/>
          <xs:enumeration value="right"/>
          <xs:enumeration value="justify"/>
          <xs:enumeration value="char"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="char"/>
    <xs:attribute name="charoff"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="cellvalign.att">
    <xs:attribute name="valign">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="top"/>
          <xs:enumeration value="middle"/>
          <xs:enumeration value="bottom"/>
          <xs:enumeration value="baseline"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:attributeGroup>
  <xs:attributeGroup name="thtd.att">
    <xs:attribute name="abbr"/>
    <xs:attribute name="axis"/>
    <xs:attribute name="headers" type="xs:IDREFS"/>
    <xs:attribute name="scope">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="row"/>
          <xs:enumeration value="col"/>
          <xs:enumeration value="rowgroup"/>
          <xs:enumeration value="colgroup"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="rowspan" default="1" type="xs:NMTOKEN"/>
    <xs:attribute name="colspan" default="1" type="xs:NMTOKEN"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="width.att">
    <xs:attribute name="width"/>
  </xs:attributeGroup>
  <xs:attributeGroup name="span.att">
    <xs:attribute name="span" default="1" type="xs:NMTOKEN"/>
  </xs:attributeGroup>
  <!-- table: HTML-based geometric table model. -->
  <xs:element name="table" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="caption"/>
        <xs:choice>
          <xs:element minOccurs="0" maxOccurs="unbounded" ref="col"/>
          <xs:element minOccurs="0" maxOccurs="unbounded" ref="colgroup"/>
        </xs:choice>
        <xs:element minOccurs="0" ref="thead"/>
        <xs:element minOccurs="0" ref="tfoot"/>
        <xs:element maxOccurs="unbounded" ref="tbody"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="width.att"/>
      <xs:attribute name="summary"/>
      <xs:attribute name="border"/>
      <xs:attribute name="frame">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="void"/>
            <xs:enumeration value="above"/>
            <xs:enumeration value="below"/>
            <xs:enumeration value="hsides"/>
            <xs:enumeration value="lhs"/>
            <xs:enumeration value="rhs"/>
            <xs:enumeration value="vsides"/>
            <xs:enumeration value="box"/>
            <xs:enumeration value="border"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="rules">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="none"/>
            <xs:enumeration value="groups"/>
            <xs:enumeration value="rows"/>
            <xs:enumeration value="cols"/>
            <xs:enumeration value="all"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="cellspacing"/>
      <xs:attribute name="cellpadding"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="caption">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="col">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="span.att"/>
      <xs:attributeGroup ref="width.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="colgroup">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="col"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="span.att"/>
      <xs:attributeGroup ref="width.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="thead">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="tr"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="tfoot">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="tr"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="tbody">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="tr"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="tr">
    <xs:complexType>
      <xs:choice maxOccurs="unbounded">
        <xs:element ref="th"/>
        <xs:element ref="td"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="th">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="p.pcd.mix"/>
        <xs:group ref="p.mix"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="thtd.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="td">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="p.pcd.mix"/>
        <xs:group ref="p.mix"/>
      </xs:choice>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="thtd.att"/>
      <xs:attributeGroup ref="cellhalign.att"/>
      <xs:attributeGroup ref="cellvalign.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- IDL structures for DOM specifications ......................... -->
  <!-- ............................................................... -->
  <!-- ............................................................... -->
  <!-- Specialized entities for classes .............................. -->
  <xs:group name="idl-desc.class">
    <xs:choice>
      <xs:element ref="p"/>
      <xs:element ref="note"/>
    </xs:choice>
  </xs:group>
  <xs:element name="idl-tdef.class" abstract="true"/>
  <xs:element name="idl-mod.class" abstract="true"/>
  <xs:element name="idl-struct.class" abstract="true" substitutionGroup="idl-type.mix"/>
  <xs:element name="idl-meth.class" abstract="true"/>
  <!-- ............................................................... -->
  <!-- Specialized entities for mixtures ............................. -->
  <!--
    Quick reference to content model mixtures:
    
                            desc tdef mod struct meth
    group                     x    x   x    x      x
    definitions, module       x    x   x
    interface                 x    x               x
    typedef, case, component                x
  -->
  <xs:group name="idl-grp.mix">
    <xs:choice>
      <xs:group ref="idl-desc.class"/>
      <xs:element ref="idl-tdef.class"/>
      <xs:element ref="idl-mod.class"/>
      <xs:element ref="idl-struct.class"/>
      <xs:element ref="idl-meth.class"/>
    </xs:choice>
  </xs:group>
  <xs:group name="idl-defn.mix">
    <xs:choice>
      <xs:group ref="idl-desc.class"/>
      <xs:element ref="idl-tdef.class"/>
      <xs:element ref="idl-mod.class"/>
    </xs:choice>
  </xs:group>
  <xs:group name="idl-intfc.mix">
    <xs:choice>
      <xs:group ref="idl-desc.class"/>
      <xs:element ref="idl-tdef.class"/>
      <xs:element ref="idl-meth.class"/>
    </xs:choice>
  </xs:group>
  <xs:element name="idl-type.mix" abstract="true"/>
  <!-- ............................................................... -->
  <!-- Specialized entities for common attributes .................... -->
  <!--
    name attribute:
    Provides a name.  Required.
  -->
  <xs:attributeGroup name="idl-name.att">
    <xs:attribute name="name" use="required"/>
  </xs:attributeGroup>
  <!--
    type attribute:
    Provides a type.  Required.
  -->
  <xs:attributeGroup name="idl-type.att">
    <xs:attribute name="type" use="required"/>
  </xs:attributeGroup>
  <!-- ............................................................... -->
  <!-- Common IDL element ............................................ -->
  <xs:complexType name="descr">
    <xs:sequence>
      <xs:element ref="descr"/>
    </xs:sequence>
  </xs:complexType>
  <xs:element name="descr">
    <xs:complexType>
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="obj.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- IDL definition elements ....................................... -->
  <!-- definitions: Top-level element for definitions. -->
  <xs:element name="definitions" substitutionGroup="illus.class">
    <xs:complexType>
      <xs:group maxOccurs="unbounded" ref="idl-defn.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- group: Element used to group a set of definitions. -->
  <xs:element name="group" substitutionGroup="idl-tdef.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:group minOccurs="0" maxOccurs="unbounded" ref="idl-grp.mix"/>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- interface: Definition of an interface. -->
  <xs:element name="interface" substitutionGroup="idl-mod.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:group minOccurs="0" maxOccurs="unbounded" ref="idl-intfc.mix"/>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attribute name="inherits"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- module: Definition of a module. -->
  <xs:element name="module" substitutionGroup="idl-mod.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:group minOccurs="0" maxOccurs="unbounded" ref="idl-defn.mix"/>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- reference: Reference to some other declaration. -->
  <xs:element name="reference" substitutionGroup="idl-tdef.class">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attribute name="declaration" use="required" type="xs:IDREF"/>
    </xs:complexType>
  </xs:element>
  <!-- typedef: Definition of a named type. -->
  <xs:element name="typedef" substitutionGroup="idl-tdef.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element ref="idl-type.mix"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attribute name="array.size" type="xs:NMTOKEN"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- struct: Declaration of a struct type. -->
  <xs:element name="struct" substitutionGroup="idl-struct.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element maxOccurs="unbounded" ref="component"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- component: Declaration of a structural member. -->
  <xs:element name="component">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="idl-type.mix"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="idl-name.att"/>
    </xs:complexType>
  </xs:element>
  <!-- union: Declaration of a union type. -->
  <xs:element name="union" substitutionGroup="idl-struct.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element maxOccurs="unbounded" ref="case"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attribute name="switch.type" use="required"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="case">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element ref="idl-type.mix"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attribute name="labels" use="required"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- enum: Declaration of an enum type. -->
  <xs:element name="enum" substitutionGroup="idl-struct.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element maxOccurs="unbounded" ref="enumerator"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="enumerator">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- sequence: Declaration of a sequence type (not named). -->
  <xs:element name="sequence" substitutionGroup="idl-struct.class">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="sequence"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="idl-type.att"/>
      <xs:attribute name="size" type="xs:NMTOKEN"/>
    </xs:complexType>
  </xs:element>
  <!-- constant: Declaration of a named constant. -->
  <xs:element name="constant" substitutionGroup="idl-tdef.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attributeGroup ref="idl-type.att"/>
          <xs:attribute name="value" use="required"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- exception: Declaration of an exception. -->
  <xs:element name="exception" substitutionGroup="idl-tdef.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element minOccurs="0" maxOccurs="unbounded" ref="component"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!--  component (defined under struct, above) -->
  <!-- attribute: Declaration of an attribute (data member). -->
  <xs:element name="attribute" substitutionGroup="idl-meth.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attributeGroup ref="idl-type.att"/>
          <xs:attribute name="readonly" default="no">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="yes"/>
                <xs:enumeration value="no"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- method: Declaration of a method. -->
  <xs:element name="method" substitutionGroup="idl-meth.class">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:sequence>
            <xs:element ref="parameters"/>
            <xs:element ref="returns"/>
            <xs:element ref="raises"/>
          </xs:sequence>
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="parameters">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="param"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="param">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-name.att"/>
          <xs:attributeGroup ref="idl-type.att"/>
          <xs:attribute name="attr" default="inout">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="in"/>
                <xs:enumeration value="out"/>
                <xs:enumeration value="inout"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="returns">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="descr">
          <xs:attributeGroup ref="common.att"/>
          <xs:attributeGroup ref="idl-type.att"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="raises">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="exception"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <!--  exception (defined under constant, above) -->
  <xs:element name="typename" substitutionGroup="idl-struct.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- ............................................................... -->
  <!-- Phrase-level elements ......................................... -->
  <!-- ............................................................... -->
  <!-- #2000-03-07: maler: Added att and attval elements. -->
  <!-- att: Attribute name. -->
  <xs:element name="att" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- attval: Attribute value. -->
  <xs:element name="attval" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    bibref: Reference to a bibliography list entry; should
    generate, in square brackets, "key" on bibl.
  -->
  <xs:element name="bibref" substitutionGroup="ref.class">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="ref-req.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    ref attribute:
    A bibliography reference must link to the bibl element that
    describes the resource.
  -->
  <xs:element name="code" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    #1998-03-10: maler: Declared ednote and related elements.
    #1999-07-02: maler: Changed edtext content from #PCDATA to %p.pcd.mix;.
  -->
  <!-- ednote: Editorial note for communication among editors. -->
  <xs:element name="ednote" substitutionGroup="ednote.class"/>
  <xs:element name="date">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="edtext">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #2000-03-07: maler: Added el element. -->
  <!-- el: Element type name (GI). -->
  <xs:element name="el" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #2000-03-07: maler: Expanded emph to %p.pcd.mix;. -->
  <xs:element name="emph" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- footnote: Both footnote content and call to footnote. -->
  <xs:element name="footnote" substitutionGroup="annot.class"/>
  <!--
    #2000-03-07: maler: Added function and gave it content of
    #                   %tech.pcd.mix; instead of XPath's #PCDATA.
  -->
  <xs:element name="function" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="kw" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <!-- loc: Generic link to a Web resource, similar to HTML's A. -->
  <xs:element name="loc" substitutionGroup="loc.class"/>
  <!--
    href attribute:
            The purpose of a loc element is to function as a A-like
            hypertext link to a resource.  (Ideally, the content of loc
            will also mention the URI of the resource, so that readers of
            the printed version will be able to locate the resource.) E.g.:
    
    <loc href="http://www.my.com/doc.htm">http://www.my.com/doc.htm</loc>
  -->
  <!--
    nt: Mention of a nonterminal in text, along with a link to
    the production in the current document that defines it.
  -->
  <xs:element name="nt" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="def-req.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    def attribute:
    The nonterminal must link to the production that defines
    it.
  -->
  <!-- #2000-03-07: maler: Declared phrase. -->
  <!--
    phrase: "Attribute hanger" for small bits of (e.g.) differenced
    text in a paragraph or similar, when another element isn't handy.
    Beware that its content model may allow more nested elements than
    would normally be allowed in some contexts.
  -->
  <xs:element name="phrase" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #2003-06-25: nwalsh: RFC2119 elements -->
  <xs:element name="rfc2119" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1998-03-10: maler: Declared quote. -->
  <!-- quote: Scare quotes and other purely presentational quotes. -->
  <xs:element name="quote" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="p.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    specref: Reference to a div, olist item, prod, or issue
    in the current document; should generate italic "[n.n],
    Section Title" for div, "n" for numbered item, "[n]" for
    production, or "Issue id" for issue.
  -->
  <xs:element name="specref" substitutionGroup="ref.class">
    <xs:complexType>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="ref-req.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    ref attribute:
    The purpose of a specref element is to link to a div, item
    in an olist, or production in the current spec.
  -->
  <!-- #2000-03-07: maler: Added sub and sup. -->
  <!-- sub: Subscript. -->
  <xs:element name="sub" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- sup: Superscript. -->
  <xs:element name="sup" substitutionGroup="emph.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- term: The term in text that is being defined in text. -->
  <xs:element name="term" substitutionGroup="termdef.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- termdef: Definition of a term in text. -->
  <xs:element name="termdef" substitutionGroup="termdef.class">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="termdef.pcd.mix"/>
        <xs:group ref="termdef.mix"/>
      </xs:choice>
      <xs:attributeGroup ref="common-idreq.att"/>
      <xs:attribute name="term" use="required"/>
    </xs:complexType>
  </xs:element>
  <!--
    ID attribute:
    A term definition must have an ID so that it can be linked
    to from termref elements.
  -->
  <!--
    term attribute:
    The canonical form of the term or phrase being defined must
    appear in this attribute, even if the term or phrase also
    appears in the element content in identical form (e.g., in
    the term element).
  -->
  <!--
    termref: Mention of a term, along with a link to the
    definition in the current document.
  -->
  <xs:element name="termref" substitutionGroup="ref.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="def-req.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    ref attribute:
    A term reference must link to the termdef element that
    defines the term.
  -->
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <!--
    titleref: Citation of another document, which can also
    link to that document if it is a Web resource.
  -->
  <xs:element name="titleref" substitutionGroup="ref.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href.att"/>
      <xs:attributeGroup ref="user-new.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    href attribute:
            A title reference can optionally function as a hypertext
            link to the resource with this title.  E.g.:
    
    <loc href="http://www.my.com/doc.htm">http://www.my.com/doc.htm</loc>
  -->
  <!-- #2000-03-07: maler: Added var. -->
  <!--
    var: String standing for a variable value that the user
    or system will supply.  For example: "For each node
    <var>x</var> in this node-set..."
  -->
  <xs:element name="var" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="tech.pcd.mix"/>
      <xs:attributeGroup ref="common.att"/>
    </xs:complexType>
  </xs:element>
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <!--
    xnt: Mention of a nonterminal in text, along with a link to
    the production in another document that defines it.
  -->
  <xs:element name="xnt" substitutionGroup="tech.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
      <xs:attributeGroup ref="user-new.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    href attribute:
            The nonterminal must hyperlink to a resource that serves
            to define it (e.g., a production in a related XML
            specification).  E.g.:
    
    <xnt href="http://www.w3.org/TR/spec.htm#prod3">Name</xnt>
  -->
  <!--
    #1997-12-29: maler: Declared xspecref.
    #1999-07-02: maler: Added show/actuate attributes and default values.
  -->
  <!--
    xspecref: Reference to a div, olist item, prod, or issue
    in a related specification document; should generate
    no special text.
  -->
  <xs:element name="xspecref" substitutionGroup="ref.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
      <xs:attributeGroup ref="user-new.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    href attribute:
            The spec reference must hyperlink to the resource to
            cross-refer to (e.g., a section in a related XML
            specification).  E.g.:
    
    <xspecref href="http://www.w3.org/TR/spec.htm#sec2">
    the section on constraints</xspecref>
  -->
  <!-- #1999-07-02: maler: Added show/actuate attributes and default values. -->
  <!--
    termref: Mention of a term, along with a link to the
    definition in a related document.
  -->
  <xs:element name="xtermref" substitutionGroup="ref.class">
    <xs:complexType mixed="true">
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="phrase"/>
      </xs:sequence>
      <xs:attributeGroup ref="common.att"/>
      <xs:attributeGroup ref="simple-xlink.att"/>
      <xs:attributeGroup ref="href-req.att"/>
      <xs:attributeGroup ref="user-new.att"/>
    </xs:complexType>
  </xs:element>
  <!--
    href attribute:
            The term reference must hyperlink to the resource that
            serves to define the term (e.g., a term definition in
            a related XML specification).  E.g.:
    
    <xtermref href="http://www.w3.org/TR/spec.htm#term5">
    entity
    </xtermref>
  -->
  <!-- ............................................................... -->
  <!-- Unused elements for ADEPT ..................................... -->
  <!-- ............................................................... -->
  <!--
    #1997-09-30: maler: Added unusued elements.
    #1997-10-14: maler: Fixed div to move nested div to the mixture.
    #1998-05-14: maler: Added key-term, htable, and htbody.
    #1998-11-30: maler: Added para, listitem, itemizedlist, and orderedlist.
  -->
  <!--
    The following elements are purposely declared but never
    referenced.  Declaring them allows them to be pasted from
    an HTML document, an earlier version of an XMLspec document,
    or a DocBook document into a document using this DTD in ADEPT.
    The ATD Context Transformation mechanism will try to convert
    them to the appropriate element for this DTD.  While this
    conversion will not work for all fragments, it does allow many
    cases to work reasonably well.
  -->
  <xs:element name="div">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="head"/>
        <xs:choice minOccurs="0" maxOccurs="unbounded">
          <xs:group ref="div.mix"/>
          <xs:element ref="ul"/>
          <xs:element ref="ol"/>
          <xs:element ref="h1"/>
          <xs:element ref="h2"/>
          <xs:element ref="h3"/>
          <xs:element ref="h4"/>
          <xs:element ref="h5"/>
          <xs:element ref="h6"/>
          <xs:element ref="div"/>
        </xs:choice>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="h1">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="h2">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="h3">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="h4">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="h5">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="h6">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="head.pcd.mix"/>
        <xs:element ref="em"/>
        <xs:element ref="a"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="pre">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="eg.pcd.mix"/>
        <xs:element ref="em"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="ul">
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="item"/>
        <xs:element ref="li"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="ol">
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="item"/>
        <xs:element ref="li"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="li">
    <xs:complexType mixed="true">
      <xs:group minOccurs="0" maxOccurs="unbounded" ref="obj.mix"/>
    </xs:complexType>
  </xs:element>
  <xs:element name="em" type="xs:string"/>
  <xs:element name="a" type="xs:string"/>
  <xs:element name="key-term" type="xs:string"/>
  <xs:element name="htable">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" ref="caption"/>
        <xs:choice>
          <xs:element minOccurs="0" maxOccurs="unbounded" ref="col"/>
          <xs:element minOccurs="0" maxOccurs="unbounded" ref="colgroup"/>
        </xs:choice>
        <xs:element minOccurs="0" ref="thead"/>
        <xs:element minOccurs="0" ref="tfoot"/>
        <xs:element maxOccurs="unbounded" ref="tbody"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="htbody">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="tr"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="statusp">
    <xs:complexType mixed="true">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:group ref="p.pcd.mix"/>
        <xs:group ref="p.mix"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
  <xs:element name="itemizedlist">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="listitem"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="orderedlist">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="listitem"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="listitem">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="para"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="para" type="xs:string"/>
</xs:schema>
<!-- ............................................................... -->
<!-- Change history ................................................ -->
<!-- ............................................................... -->
<!--
  #This revision history is no longer being maintained. See the CVS log
  #for detailed revisions history.
  #####################################################################
  #1997-08-18: maler
  #- Did a major revision.
  #1997-09-10: maler
  #- Updated FPI.
  #- Removed namekey element and put key attribute on name element.
  #- Made statusp element and supporting entities.
  #- Added slist element with sitem+ content.
  #- Required head on scrap and added new bnf subelement.
  #- Added an xnt element and allowed it and nt in regular text and rhs.
  #- Removed the ntref element.
  #- Added back the com element to the content of rhs.
  #- Added a key attribute to bibl.
  #- Removed the ident element.
  #- Added a term element to be used inside termdef.
  #- Added an xtermref element parallel to termref.
  #- Beefed up DTD comments.
  #1997-09-12: maler
  #- Allowed term element in general text.
  #- Changed bibref to EMPTY.
  #- Added ref.class to termdef.pcd.mix.
  #1997-09-14: maler
  #- Changed main attribute of xtermref from def to href.
  #- Added termdef.class to label contents.
  #1997-09-30: maler
  #- Added character entity module and added new entities.
  #- Removed p from appearing directly in self; created %p.mix;.
  #- Added inform-div (non-normative division) element.
  #- Fixed xtermref comment to mention href, not ref.
  #- Extended orglist model to allow optional affiliation.
  #- Modified author to make affiliation optional.
  #- Added %speclist.class; and %note.class; to %obj.mix; and %p.mix;.
  #- Added %note.class; and %illus.class; to %termdef.pcd.mix;.
  #- Added unused HTML elements.
  #- Put empty system ID next to public ID in entity declarations.
  #1997-10-14: maler
  #- Fixed "unused" div content model to move nested div to mixture.
  #1997-10-16: maler
  #- Added SGML Open Exchange tables.
  #1997-11-28: maler
  #- Added support for prodgroup and its attributes.
  #- Added support for HTML tables.
  #- Added loc and bibref to content of com.
  #- Added loc to general p content models.
  #- Allowed p as alternative to statusp in status.
  #- Added non-null system IDs to external parameter entity declarations.
  #- (Modified the SGML Open table module to make it XML-compliant.)
  #- (Modified the character entity module.)
  #1997-12-29: maler
  #- Moved #PCDATA occurrences to come before GIs in content models.
  #- Removed use of the SGML Open table module.
  #- Added xspecref element.
  #- Ensured that all FPIs contain 4-digit year.
  #- (Modified the character entity module.)
  #1998-03-10: maler
  #- Merged the character entity and table modules into the main file.
  #- Added ldquo and rdquo entities.
  #- Added common attributes to prodgroup.
  #- Made the email element in header optional.
  #- Removed reference to the SGML Open table model.
  #- Added ednote element.
  #- Added quote element.
  #- Updated XLink usage to reflect 3 March 1998 WD.
  #- Added "local" entities to the class entities for customization.
  #- Parameterized several content models to allow for customization.
  #1998-03-23: maler
  #- Cleaned up some comments and removed some others.
  #- Added xml:space semi-common attribute to eg and bnf elements.
  #- Added show and embed attributes on all the uses of href.
  #- Added %common.att; to all HTML table elements.
  #- Added a real URI to the "typical invocation" comment.
  #1998-05-14: maler
  #- Fixed mdash, ldquo, and rdquo character entities.
  #- Switched to the full HTML 4.0 table model.
  #- Removed htable/htbody elements and replaced them with table/tbody.
  #- Added issue element to %note.class; and declared it.
  #- Allowed prevlocs and latestloc in either order.
  #- Added key-term, htable, htbody, and statusp as unused elements.
  #- Removed real statusp element in favor of plain p.
  #1998-05-21: maler
  #- Declared generic constraint and constraintnote elements.
  #- Added constraintnote to %note.class;.
  #- Added constraint to %eg.pcd.mix; and prod content model.
  #1998-08-22: maler
  #- Fixed %illus.class; to mention table instead of htable.
  #- Added definitions to %illus.class; for DOM model.
  #- Added DOM definitions element and its substructure.
  #- Updated XLink usage in %href.att; to use xlink:form and #IMPLIED.
  #- Added clarifying comments to href-using elements.
  #1998-11-30: maler
  #- Added new unused elements to support DocBook translation.
  #- Updated maler phone numbers.
  #1998-12-3: maler
  #- Fixed character entities with respect to escaping of ampersands.
  #- Added many more explanatory comments.
  #1999-07-02: maler
  #- Added %loc.class; to all PCD mixes that didn't already have it.
  #- Removed unused %loc.pcd.mix;.
  #- Made version in spec header optional.
  #- Added three new attributes to spec.
  #- Broadened content of edtext.
  #- Added optional copyright element to header.
  #- Reorganized XLink-related parameter entities; added xmlns:xlink.
  #- Changed edtext content from #PCDATA to %p.pcd.mix;.
  #- Added show/actuate atts and default values to all href elements.
  #- Changed versioning scheme from 8-digit dates to version numbers.
  #- Added w3c-doctype, other-doctype, status atts to spec element.
  #- Added prodrecap element inside scrap.
  #- Added headstyle attribute to scrap.
  #2000-03-07: maler
  #- Added proto element, its arg subelement, and the %argtypes; entity.
  #- Added function, var, sub, sup, phrase, el, att, attval elements.
  #- Expanded emph to %p.pcd.mix;.
  #- Allowed status and abstract to appear in the opposite order.
  #- Updated XLink usage to the latest WD, except for href and source.
  #- Removed the xml:attributes attribute from graphic.
  #- Added %local.graphic.att; to graphic.
  #- Added common diff attribute.
  #- Added div5 element.
  #- Broadened content models of publoc, prevlocs, and latestloc.
  #- Added head, source, resolution, and status attribute to issue.
  #- Added cr, issues, and dispcmts to w3c-doctype attribute on spec.
  #- Added example element.
-->
<!-- ............................................................... -->
<!-- End of XML specification DTD .................................. -->
<!-- ............................................................... -->