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
|
#
# Automatically Generated by /usr/local/validator/misc/spmpp.pl
#
#
# Special messages used globally.
<msg nomsg>
verbose = <<.EOF.
<p class="helpwanted">
<a
href="<!--#echo var="relroot" -->feedback.html?uri=<!--URI-->;errmsg_id=<!--MID-->#errormsg"
title="Suggest improvements on this error message through our feedback channels"
>✉</a>
</p>
.EOF.
</msg>
#
# OpenSP output.
<msg 0>
original = "length of name must not exceed NAMELEN (%1)"
</msg>
<msg 1>
original = "length of parameter entity name must not exceed NAMELEN less the length of the PERO delimiter (%1)"
</msg>
<msg 2>
original = "length of number must not exceed NAMELEN (%1)"
</msg>
<msg 3>
original = "length of attribute value must not exceed LITLEN less NORMSEP (%1)"
</msg>
<msg 4>
original = "a name group is not allowed in a parameter entity reference in the prolog"
</msg>
<msg 5>
original = "an entity end in a token separator must terminate an entity referenced in the same group"
</msg>
<msg 6>
original = "character %1 invalid: only %2 and token separators allowed"
</msg>
<msg 7>
original = "a parameter separator is required after a number that is followed by a name start character"
</msg>
<msg 8>
original = "character %1 invalid: only %2 and parameter separators allowed"
</msg>
<msg 9>
original = "an entity end in a parameter separator must terminate an entity referenced in the same declaration"
</msg>
<msg 10>
original = "an entity end is not allowed in a token separator that does not follow a token"
</msg>
<msg 11>
original = "%1 is not a valid token here"
</msg>
<msg 12>
original = "a parameter entity reference can only occur in a group where a token could occur"
</msg>
<msg 13>
original = "token %1 has already occurred in this group"
</msg>
<msg 14>
original = "the number of tokens in a group must not exceed GRPCNT (%1)"
</msg>
<msg 15>
original = "an entity end in a literal must terminate an entity referenced in the same literal"
</msg>
<msg 16>
original = "character %1 invalid: only minimum data characters allowed"
</msg>
<msg 18>
original = "a parameter literal in a data tag pattern must not contain a numeric character reference to a non-SGML character"
</msg>
<msg 19>
original = "a parameter literal in a data tag pattern must not contain a numeric character reference to a function character"
</msg>
<msg 20>
original = "a name group is not allowed in a general entity reference in a start tag"
</msg>
<msg 21>
original = "a name group is not allowed in a general entity reference in the prolog"
</msg>
<msg 22>
original = "%1 is not a function name"
</msg>
<msg 23>
original = "%1 is not a character number in the document character set"
</msg>
<msg 24>
original = "parameter entity %1 not defined"
</msg>
<msg 25>
original = "general entity %1 not defined and no default entity"
verbose <<.EOF.
<div class="ve mid-25">
<p>
This is usually a cascading error caused by a an undefined entity
reference or use of an unencoded ampersand (&) in an URL or body
text. See the previous message for further details.
</p>
</div>
.EOF.
</msg>
<msg 26>
original = "RNI delimiter must be followed by name start character"
</msg>
<msg 28>
original = "unterminated comment: found end of entity inside comment"
verbose <<.EOF.
<div class="ve mid-28">
<p>
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->.
This error may appear if you forget the last "--" to close one comment, therefore including the rest
of the content in your comment.
</p>
</div>
.EOF.
</msg>
<msg 29>
original = "comment started here"
</msg>
<msg 30>
original = "only one type of connector should be used in a single group"
</msg>
<msg 31>
original = "%1 is not a reserved name"
</msg>
<msg 32>
original = "%1 is not allowed as a reserved name here"
</msg>
<msg 33>
original = "length of interpreted minimum literal must not exceed reference LITLEN (%1)"
</msg>
<msg 34>
original = "length of tokenized attribute value must not exceed LITLEN less NORMSEP (%1)"
</msg>
<msg 35>
original = "length of system identifier must not exceed LITLEN (%1)"
</msg>
<msg 36>
original = "length of interpreted parameter literal must not exceed LITLEN (%1)"
</msg>
<msg 37>
original = "length of interpreted parameter literal in data tag pattern must not exceed DTEMPLEN (%1)"
</msg>
<msg 38>
original = "literal is missing closing delimiter"
verbose <<.EOF.
<div class="ve mid-38">
<p>
Did you forget to close a (double) quote mark?
</p>
</div>
.EOF.
</msg>
<msg 39>
original = "%1 invalid: only %2 and parameter separators are allowed"
<div class="ve mid-39">
<p>
This error is typical of a typo or error in the DOCTYPE declaration at the top
of your document's markup.
</p>
<p>
In most cases, it is safer not to type or edit the DOCTYPE declaration at all,
and preferable to let a tool include it, or copy and paste it from a
<a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">trusted list of DTDs</a>.
</p>
</div>
.EOF.
</msg>
<msg 40>
original = "%1 invalid: only %2 and token separators are allowed"
</msg>
<msg 41>
original = "%1 invalid: only %2 and token separators are allowed"
</msg>
<msg 42>
original = "unknown declaration type %1"
verbose <<.EOF.
<div class="ve mid-42">
<p>
This error may appear if you are using a bad syntax for your comments, such as "<!invalid comment>"
The proper syntax for comments is <!-- your comment here -->.
</p>
</div>
.EOF.
</msg>
<msg 43>
original = "%1 declaration not allowed in DTD subset"
</msg>
<msg 44>
original = "character %1 not allowed in declaration subset"
</msg>
<msg 45>
original = "end of document in DTD subset"
</msg>
<msg 46>
original = "character %1 not allowed in prolog"
</msg>
<msg 47>
original = "end of document in prolog"
verbose <<.EOF.
<div class="ve mid-47">
<p>
This error may appear when the validator receives an empty document. Please make sure that the document you are uploading is not empty, and <a href="<!--#echo var="relroot" -->feedback.html">report</a> any discrepancy.
</p>
</div>
.EOF.
</msg>
<msg 48>
original = "%1 declaration not allowed in prolog"
</msg>
<msg 49>
original = "%1 used both a rank stem and generic identifier"
</msg>
<msg 50>
original = "omitted tag minimization parameter can be omitted only if OMITTAG NO is specified"
</msg>
<msg 51>
original = "element type %1 already defined"
</msg>
<msg 52>
original = "entity reference with no applicable DTD"
</msg>
<msg 53>
original = "invalid comment declaration: found %1 outside comment but inside comment declaration"
</msg>
<msg 54>
original = "comment declaration started here"
</msg>
<msg 55>
original = "%1 declaration not allowed in instance"
</msg>
<msg 56>
original = "non-SGML character not allowed in content"
</msg>
<msg 57>
original = "no current rank for rank stem %1"
</msg>
<msg 58>
original = "duplicate attribute definition list for notation %1"
</msg>
<msg 59>
original = "duplicate attribute definition list for element %1"
</msg>
<msg 60>
original = "entity end not allowed in end tag"
</msg>
<msg 61>
original = "character %1 not allowed in end tag"
</msg>
<msg 62>
original = "%1 invalid: only S separators and TAGC allowed here"
</msg>
<msg 63>
original = "character data is not allowed here"
verbose <<.EOF.
<div class="ve mid-63">
<p>
You have used character data somewhere it is not permitted to appear.
Mistakes that can cause this error include:
</p>
<ul>
<li>putting text directly in the body of the document without wrapping
it in a container element (such as a <p>aragraph</p>), or</li>
<li>forgetting to quote an attribute value
(where characters such as "%" and "/" are common, but cannot appear
without surrounding quotes), or</li>
<li>using XHTML-style self-closing tags (such as <meta ... />)
in HTML 4.01 or earlier. To fix, remove the extra slash ('/')
character. For more information about the reasons for this, see
<a href="http://www.cs.tut.fi/~jkorpela/html/empty.html">Empty
elements in SGML, HTML, XML, and XHTML</a>.
</li>
</ul>
</div>
.EOF.
</msg>
<msg 64>
original = "document type does not allow element %1 here"
verbose <<.EOF.
<div class="ve mid-64">
<p>
The element named above was found in a context where it is not allowed.
This could mean that you have incorrectly nested elements -- such as a
"style" element in the "body" section instead of inside "head" -- or
two elements that overlap (which is not allowed).
</p>
<p>
One common cause for this error is the use of XHTML syntax in HTML
documents. Due to HTML's rules of implicitly closed elements, this error
can create cascading effects. For instance, using XHTML's "self-closing"
tags for "meta" and "link" in the "head" section of a HTML document may
cause the parser to infer the end of the "head" section and the
beginning of the "body" section (where "link" and "meta" are not
allowed; hence the reported error).
</p>
</div>
.EOF.
</msg>
<msg 65>
original = "document type does not allow element %1 here; missing one of %2 start-tag"
verbose <<.EOF.
<div class="ve mid-65">
<p>
The mentioned element is not allowed to appear in the context in which
you've placed it; the other mentioned elements are the only ones that
are both allowed there <em>and</em> can contain the element mentioned.
This might mean that you need a containing element, or possibly that
you've forgotten to close a previous element.
</p>
<p>
One possible cause for this message is that you have attempted to put a
block-level element (such as "<p>" or "<table>") inside an
inline element (such as "<a>", "<span>", or "<font>").
</p>
</div>
.EOF.
</msg>
<msg 66>
original = "document type does not allow element %1 here; assuming missing %2 start-tag"
</msg>
<msg 67>
original = "no start tag specified for implied empty element %1"
</msg>
<msg 68>
original = "end tag for %1 omitted, but its declaration does not permit this"
verbose <<.EOF.
<div class="ve mid-68">
<ul>
<li>You forgot to close a tag, or</li>
<li>you used something inside this tag that was not allowed, and the validator
is complaining that the tag should be closed before such content can be allowed.</li>
</ul>
<p>
The next message, "<code class="inline">start tag was here</code>"
points to the particular instance of the tag in question); the
positional indicator points to where the validator expected you to close the
tag.
</p>
</div>
.EOF.
</msg>
<msg 69>
original = "start tag was here"
verbose <<.EOF.
<div class="ve mid-69">
<p>
This is not an error, but rather a pointer to the start tag of the element
the previous error referred to.
</p>
</div>
.EOF.
</msg>
<msg 70>
original = "end tag for %1 omitted, but OMITTAG NO was specified"
verbose <<.EOF.
<div class="ve mid-70">
<p>
You may have neglected to close an element, or perhaps you meant to
"self-close" an element, that is, ending it with "/>" instead of ">".
</p>
</div>
.EOF.
</msg>
<msg 71>
original = "start tag was here"
verbose <<.EOF.
<div class="ve mid-71">
<p>
This is not an error, but rather a pointer to the start tag of the element
the previous error referred to.
</p>
</div>
.EOF.
</msg>
<msg 72>
original = "start tag omitted for element %1 with declared content"
</msg>
<msg 73>
original = "end tag for %1 which is not finished"
verbose <<.EOF.
<div class="ve mid-73">
<p>
Most likely, you nested tags and closed them in the wrong order. For
example <p><em>...</p> is not acceptable, as <em>
must be closed before <p>. Acceptable nesting is:
<p><em>...</em></p>
</p>
<p>
Another possibility is that you used an element which requires
a child element that you did not include. Hence the parent element
is "not finished", not complete. For instance, in HTML the <head>
element must contain a <title> child element, lists require
appropriate list items (<ul> and <ol> require <li>;
<dl> requires <dt> and <dd>), and so on.
</p>
</div>
.EOF.
</msg>
<msg 74>
original = "start tag for %1 omitted, but its declaration does not permit this"
</msg>
<msg 75>
original = "number of open elements exceeds TAGLVL (%1)"
</msg>
<msg 76>
original = "element %1 undefined"
verbose <<.EOF.
<div class="ve mid-76">
<p>
You have used the element named above in your document, but the
document type you are using does not define an element of that name.
This error is often caused by:
</p>
<ul>
<li>incorrect use of the "Strict" document type with a document that
uses frames (e.g. you must use the "Frameset" document type to get
the "<frameset>" element),</li>
<li>by using vendor proprietary extensions such as "<spacer>"
or "<marquee>" (this is usually fixed by using CSS to achieve
the desired effect instead).</li>
<li>by using upper-case tags in XHTML (in XHTML attributes and elements
must be all lower-case).</li>
</ul>
</div>
.EOF.
</msg>
<msg 77>
original = "empty end tag but no open elements"
</msg>
<msg 78>
original = "%1 not finished but containing element ended"
</msg>
<msg 79>
original = "end tag for element %1 which is not open"
verbose <<.EOF.
<div class="ve mid-79">
<p>
The Validator found an end tag for the above element, but that element is
not currently open. This is often caused by a leftover end tag from an
element that was removed during editing, or by an implicitly closed
element (if you have an error related to an element being used where it
is not allowed, this is almost certainly the case). In the latter case
this error will disappear as soon as you fix the original problem.
</p>
<p>
If this error occurred in a script section of your document, you should probably
read this <a href="<!--#echo var="relroot" -->docs/help.html#faq-javascript">FAQ entry</a>.
</p>
</div>
.EOF.
</msg>
<msg 80>
original = "internal parameter entity %1 cannot be CDATA or SDATA"
</msg>
<msg 81>
original = "character %1 not allowed in attribute specification list"
</msg>
<msg 82>
original = "an attribute value must be a literal unless it contains only name characters"
verbose <<.EOF.
<div class="ve mid-82">
<p>
You have used a character that is not considered a "name character" in an
attribute value. Which characters are considered "name characters" varies
between the different document types, but a good rule of thumb is that
unless the value contains <em>only</em> lower or upper case letters in the
range a-z you must put quotation marks around the value. In fact, unless
you have <em>extreme</em> file size requirements it is a very very good
idea to <em>always</em> put quote marks around your attribute values. It
is never wrong to do so, and very often it is absolutely necessary.
</p>
</div>
.EOF.
</msg>
<msg 83>
original = "entity end not allowed in attribute specification list except in attribute value literal"
</msg>
<msg 84>
original = "external parameter entity %1 cannot be CDATA, SDATA, NDATA or SUBDOC"
</msg>
<msg 85>
original = "duplicate declaration of entity %1"
</msg>
<msg 86>
original = "duplicate declaration of parameter entity %1"
</msg>
<msg 87>
original = "a reference to a PI entity is allowed only in a context where a processing instruction could occur"
</msg>
<msg 88>
original = "a reference to a CDATA or SDATA entity is allowed only in a context where a data character could occur"
</msg>
<msg 89>
original = "a reference to a subdocument entity or external data entity is allowed only in a context where a data character could occur"
</msg>
<msg 90>
original = "a reference to a subdocument entity or external data entity is not allowed in replaceable character data"
</msg>
<msg 91>
original = "the number of open entities cannot exceed ENTLVL (%1)"
</msg>
<msg 92>
original = "a reference to a PI entity is not allowed in replaceable character data"
</msg>
<msg 93>
original = "entity %1 is already open"
</msg>
<msg 94>
original = "short reference map %1 not defined"
</msg>
<msg 95>
original = "short reference map in DTD must specify associated element type"
</msg>
<msg 96>
original = "short reference map in document instance cannot specify associated element type"
</msg>
<msg 97>
original = "short reference map %1 for element %2 not defined in DTD"
</msg>
<msg 98>
original = "%1 is not a short reference delimiter"
</msg>
<msg 99>
original = "short reference delimiter %1 already mapped in this declaration"
</msg>
<msg 100>
original = "no document element"
</msg>
<msg 102>
original = "entity end not allowed in processing instruction"
</msg>
<msg 103>
original = "length of processing instruction must not exceed PILEN (%1)"
</msg>
<msg 104>
original = "missing PIC delimiter"
</msg>
<msg 105>
original = "an attribute specification must start with a name or name token"
verbose <<.EOF.
<div class="ve mid-105">
<p>
An attribute name (and some attribute values) must start with one of
a restricted set of characters. This error usually indicates that
you have failed to add a closing quotation mark on a previous
attribute value (so the attribute value looks like the start of a
new attribute) or have used an attribute that is not defined
(usually a typo in a common attribute name).
</p>
</div>
.EOF.
</msg>
<msg 106>
original = "%1 is not a member of a group specified for any attribute"
</msg>
<msg 107>
original = "the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified"
verbose <<.EOF.
<div class="ve mid-107">
<p>"VI delimiter" is a technical term for the equal sign. This error message
means that the name of an attribute and the equal sign cannot be omitted
when specifying an attribute. A common cause for this error message is
the use of "Attribute Minimization" in document types where it is not allowed,
in <a href="http://www.w3.org/TR/xhtml1/#h-4.5">XHTML</a> for instance.</p>
<p>How to fix: For attributes such as compact, checked or selected, do not write
e.g <option selected ... but rather <option selected="selected" ...
</p>
</div>
.EOF.
</msg>
<msg 108>
original = "there is no attribute %1"
verbose <<.EOF.
<div class="ve mid-108">
<p>
You have used the attribute named above in your document, but the
document type you are using does not support that attribute for this
element. This error is often caused by incorrect use of the "Strict"
document type with a document that uses frames (e.g. you must use
the "Transitional" document type to get the "target" attribute), or
by using vendor proprietary extensions such as "marginheight" (this
is usually fixed by using CSS to achieve the desired effect instead).
</p>
<p>
This error may also result if the element itself is not supported in
the document type you are using, as an undefined element will have no
supported attributes; in this case, see the element-undefined error
message for further information.
</p>
<p>
How to fix: check the spelling and case of the element and attribute,
(Remember XHTML is all lower-case) and/or
check that they are both allowed in the chosen document type, and/or
use CSS instead of this attribute. If you received this error when using the
<embed> element to incorporate flash media in a Web page, see the
<a href="<!--#echo var="relroot" -->docs/help.html#faq-flash">FAQ item on valid flash</a>.
</p>
</div>
.EOF.
</msg>
<msg 109>
original = "an attribute value specification must start with a literal or a name character"
</msg>
<msg 110>
original = "length of name token must not exceed NAMELEN (%1)"
</msg>
<msg 111>
original = "an attribute value literal can occur in an attribute specification list only after a VI delimiter"
verbose <<.EOF.
<div class="ve mid-111">
<p>
Have you forgotten the "equal" sign marking the separation
between the attribute and its declared value?
Typical syntax is <code>attribute="value"</code>.
</p>
</div>
.EOF.
</msg>
<msg 112>
original = "duplicate specification of attribute %1"
verbose <<.EOF.
<div class="ve mid-112">
<p>
You have specified an attribute more than once. Example: Using
the "<code class="inline">height</code>" attribute twice on the same
"<code class="inline">img</code>" tag.
</p>
</div>
.EOF.
</msg>
<msg 113>
original = "duplicate definition of attribute %1"
</msg>
<msg 114>
original = "data attribute specification must be omitted if attribute specification list is empty"
</msg>
<msg 115>
original = "marked section end not in marked section declaration"
</msg>
<msg 116>
original = "number of open marked sections must not exceed TAGLVL (%1)"
</msg>
<msg 117>
original = "missing marked section end"
</msg>
<msg 118>
original = "marked section started here"
</msg>
<msg 119>
original = "entity end in character data, replaceable character data or ignored marked section"
</msg>
<msg 120>
original = "normalized length of attribute value literal must not exceed LITLEN (%1); length was %2"
verbose <<.EOF.
<div class="ve mid-120">
<p>
This error almost always means that you've forgotten a closing quote on an attribute value. For instance,
in:
</p>
<code class="block">
<img src="fred.gif><br />
<!-- 50 lines of stuff --><br />
<img src="joe.gif">
</code>
<p>
The "<code class="inline">src</code>" value for the first
<code class="inline"><img></code> is the entire
fifty lines of stuff up to the next double quote, which probably
exceeds the <a href="sgml.html#sgml"><abbr
title="Standard Generalized Markup Language">SGML</abbr></a>-defined
length limit for <abbr title="HyperText Markup Language">HTML</abbr>
string literals. Note that the position indicator in the error
message points to where the attribute value <em>ended</em> — in
this case, the <code class="inline">"joe.gif"</code> line.
</p>
</div>
.EOF.
</msg>
<msg 121>
original = "syntax of attribute value does not conform to declared value"
verbose <<.EOF.
<div class="ve mid-121">
<p>
The value of an attribute contained something that is not allowed by
the specified syntax for that type of attribute. For instance, the
“<code class="inline">selected</code>” attribute must be
either minimized as “<code class="inline">selected</code>”
or spelled out in full as “<code
class="inline">selected="selected"</code>”; the variant
“<code class="inline">selected=""</code>” is not allowed.
</p>
</div>
.EOF.
</msg>
<msg 122>
original = "character %1 is not allowed in the value of attribute %2"
verbose <<.EOF.
<div class="ve mid-122">
<p>
It is possible that you violated the naming convention for this attribute.
For example, <code>id</code> and <code>name</code> attributes must begin with
a letter, not a digit.
</p>
</div>
.EOF.
</msg>
<msg 123>
original = "value of attribute %1 must be a single token"
verbose <<.EOF.
<div class="ve mid-123">
<p>
This attribute cannot take a space-separated list of words as a value, but only one word ("token").
This may also be caused by the use of a space for the value of an attribute which does not permit it.
</p>
</div>
.EOF.
</msg>
<msg 124>
original = "value of attribute %2 invalid: %1 cannot start a number token"
verbose <<.EOF.
<div class="ve mid-124">
<p>
The value of this attribute should be a number, and you probably used a wrong syntax.
</p>
</div>
.EOF.
</msg>
<msg 125>
original = "value of attribute %2 invalid: %1 cannot start a name"
verbose <<.EOF.
<div class="ve mid-125">
<p>
It is possible that you violated the naming convention for this attribute.
For example, <code>id</code> and <code>name</code> attributes must begin with
a letter, not a digit.
</p>
</div>
.EOF.
</msg>
<msg 126>
original = "non-impliable attribute %1 not specified but OMITTAG NO and SHORTTAG NO"
</msg>
<msg 127>
original = "required attribute %1 not specified"
verbose <<.EOF.
<div class="ve mid-127">
<p>
The attribute given above is required for an element that you've used,
but you have omitted it. For instance, in most HTML and XHTML document
types the "type" attribute is required on the "script" element and the
"alt" attribute is required for the "img" element.
</p>
<p>
Typical values for <code>type</code> are
<code>type="text/css"</code> for <code><style></code>
and <code>type="text/javascript"</code> for <code><script></code>.
</p>
</div>
.EOF.
</msg>
<msg 128>
original = "first occurrence of CURRENT attribute %1 not specified"
</msg>
<msg 129>
original = "%1 is not a notation name"
</msg>
<msg 130>
original = "%1 is not a general entity name"
</msg>
<msg 131>
original = "value of attribute %2 cannot be %1; must be one of %3"
verbose <<.EOF.
<div class="ve mid-131">
<p>
The value of the attribute is defined to be one of a list of possible
values but in the document it contained something that is not allowed
for that type of attribute. For instance, the “<code
class="inline">selected</code>” attribute must be either
minimized as “<code class="inline">selected</code>”
or spelled out in full as “<code
class="inline">selected="selected"</code>”; a value like
“<code class="inline">selected="true"</code>” is not
allowed.
</p>
</div>
.EOF.
</msg>
<msg 132>
original = "%1 is not a data or subdocument entity"
</msg>
<msg 133>
original = "content model is ambiguous: when no tokens have been matched, both the %2 and %3 occurrences of %1 are possible"
</msg>
<msg 134>
original = "content model is ambiguous: when the current token is the %2 occurrence of %1, both the %4 and %5 occurrences of %3 are possible"
</msg>
<msg 135>
original = "content model is ambiguous: when the current token is the %2 occurrence of %1 and the innermost containing AND group has been matched, both the %4 and %5 occurrences of %3 are possible"
</msg>
<msg 136>
original = "content model is ambiguous: when the current token is the %2 occurrence of %1 and the innermost %3 containing AND groups have been matched, both the %5 and %6 occurrences of %4 are possible"
</msg>
<msg 137>
original = "invalid comment declaration: found character %1 outside comment but inside comment declaration"
verbose <<.EOF.
<div class="ve mid-137">
<p>
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->.
This error may appear if you forget the last "--" to close one comment, and later open another.
</p>
</div>
.EOF.
</msg>
<msg 138>
original = "comment declaration started here"
</msg>
<msg 139>
original = "non SGML character number %1"
verbose <<.EOF.
<div class="ve mid-139">
<p>
You have used an illegal character in your text.
<abbr title="HyperText Markup Language">HTML</abbr> uses the standard
<a href="http://www.unicode.org/">UNICODE Consortium</a> character repertoire,
and it leaves undefined (among others) 65 character codes (0 to 31 inclusive and 127 to 159
inclusive) that are sometimes used for typographical quote marks and similar in
proprietary character sets. The validator has found one of these undefined
characters in your document. The character may appear on your browser as a
curly quote, or a trademark symbol, or some other fancy glyph; on a different
computer, however, it will likely appear as a completely different
character, or nothing at all.
</p>
<p>
Your best bet is to replace the character with the nearest equivalent
ASCII character, or to use an appropriate <a
href="http://www.w3.org/MarkUp/html3/latin1.html">character
entity</a>.
<!--
http://groups.google.com/group/uk.net.web.authoring/browse_frm/thread/54c97b9c6fb89751
http://www.w3.org/mid/45EFC85A.1000706@dorward.me.uk
-->
For more information on Character Encoding on the web, see Alan
Flavell's excellent <a
href="http://web.archive.org/web/20060425191748/ppewww.ph.gla.ac.uk/~flavell/charset/">HTML Character
Set Issues</a> reference.
</p>
<p>
This error can also be triggered by formatting characters embedded in
documents by some word processors. If you use a word processor to edit
your <abbr title="HyperText Markup Language">HTML</abbr> documents, be sure to use the "Save as ASCII" or similar
command to save the document without formatting information.
</p>
</div>
.EOF.
</msg>
<msg 140>
original = "data or replaceable character data in declaration subset"
</msg>
<msg 141>
original = "ID %1 already defined"
verbose <<.EOF.
<div class="ve mid-141">
<p>
An "id" is a unique identifier. Each time this attribute is used in a document
it must have a different value. If you are using this attribute as a hook for
style sheets it may be more appropriate to use classes (which group elements)
than id (which are used to identify exactly one element).
</p>
</div>
.EOF.
</msg>
<msg 142>
original = "ID %1 first defined here"
</msg>
<msg 143>
original = "value of fixed attribute %1 not equal to default"
</msg>
<msg 144>
original = "character %1 is not significant in the reference concrete syntax and so cannot occur in a comment in the SGML declaration"
</msg>
<msg 145>
original = "minimum data of first minimum literal in SGML declaration must be ""ISO 8879:1986"" or ""ISO 8879:1986 (ENR)"" or ""ISO 8879:1986 (WWW)"" not %1"
</msg>
<msg 146>
original = "parameter before LCNMSTRT must be NAMING not %1"
</msg>
<msg 147>
original = "unexpected entity end in SGML declaration: only %1, S separators and comments allowed"
</msg>
<msg 148>
original = "%1 invalid: only %2 and parameter separators allowed"
</msg>
<msg 149>
original = "magnitude of %1 too big"
</msg>
<msg 150>
original = "character %1 is not significant in the reference concrete syntax and so cannot occur in a literal in the SGML declaration except as the replacement of a character reference"
</msg>
<msg 151>
original = "%1 is not a valid syntax reference character number"
</msg>
<msg 152>
original = "a parameter entity reference cannot occur in an SGML declaration"
</msg>
<msg 153>
original = "%1 invalid: only %2 and parameter separators are allowed"
</msg>
<msg 154>
original = "cannot continue because of previous errors"
</msg>
<msg 155>
original = "SGML declaration cannot be parsed because the character set does not contain characters having the following numbers in ISO 646: %1"
</msg>
<msg 156>
original = "the specified character set is invalid because it does not contain the minimum data characters having the following numbers in ISO 646: %1"
</msg>
<msg 157>
original = "character numbers declared more than once: %1"
</msg>
<msg 158>
original = "character numbers should have been declared UNUSED: %1"
</msg>
<msg 159>
original = "character numbers missing in base set: %1"
</msg>
<msg 160>
original = "characters in the document character set with numbers exceeding %1 not supported"
</msg>
<msg 161>
original = "invalid formal public identifier %1: missing //"
</msg>
<msg 162>
original = "invalid formal public identifier %1: no SPACE after public text class"
</msg>
<msg 163>
original = "invalid formal public identifier %1: invalid public text class"
</msg>
<msg 164>
original = "invalid formal public identifier %1: public text language must be a name containing only upper case letters"
</msg>
<msg 165>
original = "invalid formal public identifer %1: public text display version not permitted with this text class"
</msg>
<msg 166>
original = "invalid formal public identifier %1: extra field"
</msg>
<msg 167>
original = "public text class of public identifier in notation identifier must be NOTATION"
</msg>
<msg 168>
original = "base character set %1 is unknown"
</msg>
<msg 169>
original = "delimiter set is ambiguous: %1 and %2 can be recognized in the same mode"
</msg>
<msg 170>
original = "characters with the following numbers in the syntax reference character set are significant in the concrete syntax but are not in the document character set: %1"
</msg>
<msg 171>
original = "there is no unique character in the document character set corresponding to character number %1 in the syntax reference character set"
</msg>
<msg 172>
original = "there is no unique character in the internal character set corresponding to character number %1 in the syntax reference character set"
</msg>
<msg 173>
original = "the character with number %1 in ISO 646 is significant but has no representation in the syntax reference character set"
</msg>
<msg 174>
original = "capacity set %1 is unknown"
</msg>
<msg 175>
original = "capacity %1 already specified"
</msg>
<msg 176>
original = "value of capacity %1 exceeds value of TOTALCAP"
</msg>
<msg 177>
original = "syntax %1 is unknown"
</msg>
<msg 178>
original = "UCNMSTRT must have the same number of characters as LCNMSTRT"
</msg>
<msg 179>
original = "UCNMCHAR must have the same number of characters as LCNMCHAR"
</msg>
<msg 180>
original = "number of open subdocuments exceeds quantity specified for SUBDOC parameter in SGML declaration (%1)"
</msg>
<msg 181>
original = "entity %1 declared SUBDOC, but SUBDOC NO specified in SGML declaration"
</msg>
<msg 182>
original = "a parameter entity referenced in a parameter separator must end in the same declaration"
</msg>
<msg 183>
original = "reference to non-existent ID %1"
verbose <<.EOF.
<div class="ve mid-183">
<p>This error can be triggered by:</p>
<ul>
<li>A non-existent input, select or textarea element</li>
<li>A missing id attribute</li>
<li>A typographical error in the id attribute</li>
</ul>
<p>Try to check the spelling and case of the id you are referring to.</p>
</div>
.EOF.
</msg>
<msg 184>
original = "generic identifier %1 used in DTD but not defined"
</msg>
<msg 185>
original = "%1 not finished but document ended"
</msg>
<msg 186>
original = "cannot continue with subdocument because of previous errors"
</msg>
<msg 187>
original = "no document type declaration; will parse without validation"
verbose <<.EOF.
<div class="ve mid-187">
<p>The document type could not be determined, because the document had no correct DOCTYPE declaration. The document does not look like HTML, therefore automatic fallback could not be performed, and the document was only checked against basic markup syntax.</p>
<p>Learn <a href="<!--#echo var="relroot" -->docs/help.html#faq-doctype">how to add a doctype to your document</a>
from our <acronym title="Frequently Asked Questions">FAQ</acronym>, or use the validator's
<code>Document Type</code> option to validate your document against a specific Document Type.</p>
</div>
.EOF.
</msg>
<msg 188>
original = "no internal or external document type declaration subset; will parse without validation"
</msg>
<msg 189>
original = "this is not an SGML document"
</msg>
<msg 190>
original = "length of start-tag before interpretation of literals must not exceed TAGLEN (%1)"
</msg>
<msg 191>
original = "a parameter entity referenced in a token separator must end in the same group"
</msg>
<msg 192>
original = "the following character numbers are shunned characters that are not significant and so should have been declared UNUSED: %1"
</msg>
<msg 193>
original = "there is no unique character in the specified document character set corresponding to character number %1 in ISO 646"
</msg>
<msg 194>
original = "length of attribute value must not exceed LITLEN less NORMSEP (-%1)"
</msg>
<msg 195>
original = "length of tokenized attribute value must not exceed LITLEN less NORMSEP (-%1)"
</msg>
<msg 196>
original = "concrete syntax scope is INSTANCE but value of %1 quantity is less than value in reference quantity set"
</msg>
<msg 197>
original = "public text class of formal public identifier of base character set must be CHARSET"
</msg>
<msg 198>
original = "public text class of formal public identifier of capacity set must be CAPACITY"
</msg>
<msg 199>
original = "public text class of formal public identifier of concrete syntax must be SYNTAX"
</msg>
<msg 200>
original = "when there is an MSOCHAR there must also be an MSICHAR"
</msg>
<msg 201>
original = "character number %1 in the syntax reference character set was specified as a character to be switched but is not a markup character"
</msg>
<msg 202>
original = "character number %1 was specified as a character to be switched but is not in the syntax reference character set"
</msg>
<msg 203>
original = "character numbers %1 in the document character set have been assigned the same meaning, but this is the meaning of a significant character"
</msg>
<msg 204>
original = "character number %1 assigned to more than one function"
</msg>
<msg 205>
original = "%1 is already a function name"
</msg>
<msg 206>
original = "characters with the following numbers in ISO 646 are significant in the concrete syntax but are not in the document character set: %1"
</msg>
<msg 207>
original = "general delimiter %1 consists solely of function characters"
</msg>
<msg 208>
original = "letters assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: %1"
</msg>
<msg 209>
original = "digits assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: %1"
</msg>
<msg 210>
original = "character number %1 cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is RE"
</msg>
<msg 211>
original = "character number %1 cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is RS"
</msg>
<msg 212>
original = "character number %1 cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is SPACE"
</msg>
<msg 213>
original = "separator characters assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: %1"
</msg>
<msg 214>
original = "character number %1 cannot be switched because it is a Digit, LC Letter or UC Letter"
</msg>
<msg 215>
original = "pointless for number of characters to be 0"
</msg>
<msg 216>
original = "%1 cannot be the replacement for a reference reserved name because it is another reference reserved name"
</msg>
<msg 217>
original = "%1 cannot be the replacement for a reference reserved name because it is the replacement of another reference reserved name"
</msg>
<msg 218>
original = "replacement for reserved name %1 already specified"
</msg>
<msg 219>
original = "%1 is not a valid name in the declared concrete syntax"
</msg>
<msg 220>
original = "%1 is not a valid short reference delimiter because it has more than one B sequence"
</msg>
<msg 221>
original = "%1 is not a valid short reference delimiter because it is adjacent to a character that can occur in a blank sequence"
</msg>
<msg 222>
original = "length of delimiter %1 exceeds NAMELEN (%2)"
</msg>
<msg 223>
original = "length of reserved name %1 exceeds NAMELEN (%2)"
</msg>
<msg 224>
original = "character numbers assigned to both LCNMCHAR or UCNMCHAR and LCNMSTRT or UCNMSTRT: %1"
</msg>
<msg 225>
original = "when the concrete syntax scope is INSTANCE the syntax reference character set of the declared syntax must be the same as that of the reference concrete syntax"
</msg>
<msg 226>
original = "end-tag minimization should be O for element with declared content of EMPTY"
</msg>
<msg 227>
original = "end-tag minimization should be O for element %1 because it has CONREF attribute"
</msg>
<msg 228>
original = "element %1 has a declared content of EMPTY and a CONREF attribute"
</msg>
<msg 229>
original = "element %1 has a declared content of EMPTY and a NOTATION attribute"
</msg>
<msg 230>
original = "declared value of data attribute cannot be ENTITY, ENTITIES, ID, IDREF, IDREFS or NOTATION"
</msg>
<msg 231>
original = "default value of data attribute cannot be CONREF or CURRENT"
</msg>
<msg 232>
original = "number of attribute names and name tokens (%1) exceeds ATTCNT (%2)"
</msg>
<msg 233>
original = "if the declared value is ID the default value must be IMPLIED or REQUIRED"
</msg>
<msg 234>
original = "the attribute definition list already declared attribute %1 as the ID attribute"
</msg>
<msg 235>
original = "the attribute definition list already declared attribute %1 as the NOTATION attribute"
</msg>
<msg 236>
original = "token %1 occurs more than once in attribute definition list"
</msg>
<msg 237>
original = "no attributes defined for notation %1"
</msg>
<msg 238>
original = "notation %1 for entity %2 undefined"
</msg>
<msg 239>
original = "entity %1 undefined in short reference map %2"
</msg>
<msg 240>
original = "notation %1 is undefined but had attribute definition"
</msg>
<msg 241>
original = "length of interpreted parameter literal in bracketed text plus the length of the bracketing delimiters must not exceed LITLEN (%1)"
</msg>
<msg 242>
original = "length of rank stem plus length of rank suffix must not exceed NAMELEN (%1)"
</msg>
<msg 243>
original = "document instance must start with document element"
</msg>
<msg 244>
original = "content model nesting level exceeds GRPLVL (%1)"
</msg>
<msg 245>
original = "grand total of content tokens exceeds GRPGTCNT (%1)"
</msg>
<msg 246>
original = "unclosed start-tag requires SHORTTAG YES"
verbose <<.EOF.
<div class="ve mid-246">
<p>
The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature)
but <a href="http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.7">its use is not recommended</a>.
In most cases, this is a typo that you will want to fix. If you really want to use shorttags,
be aware that they are not well implemented by browsers.
</p>
</div>
.EOF.
</msg>
<msg 247>
original = "NET-enabling start-tag requires SHORTTAG YES"
verbose <<.EOF.
<div class="ve mid-247">
<p>
For the current document, the validator interprets strings like
<code class="inline"><FOO /></code> according to legacy rules that
break the expectations of most authors and thus cause confusing warnings
and error messages from the validator. This interpretation is triggered
by HTML 4 documents or other SGML-based HTML documents. To avoid the
messages, simply remove the "/" character in such contexts. NB: If you
expect <code class="inline"><FOO /></code> to be interpreted as an
XML-compatible "self-closing" tag, then you need to use XHTML or HTML5.
</p>
<p>
This warning and related errors may also be caused by an unquoted
attribute value containing one or more "/". Example:
<code class="inline"><a href=http://w3c.org>W3C</a></code>.
In such cases, the solution is to put quotation marks around the value.
</p>
</div>
.EOF.
</msg>
<msg 248>
original = "unclosed end-tag requires SHORTTAG YES"
verbose <<.EOF.
<div class="ve mid-248">
<p>
The construct </foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature)
but <a href="http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.7">its use is not recommended</a>.
In most cases, this is a typo that you will want to fix. If you really want to use shorttags,
be aware that they are not well implemented by browsers.
</p>
</div>
.EOF.
</msg>
<msg 249>
original = "DTDs other than base allowed only if CONCUR YES or EXPLICIT YES"
</msg>
<msg 250>
original = "end of entity other than document entity after document element"
</msg>
<msg 251>
original = "%1 declaration illegal after document element"
</msg>
<msg 252>
original = "character reference illegal after document element"
</msg>
<msg 253>
original = "entity reference illegal after document element"
</msg>
<msg 254>
original = "marked section illegal after document element"
</msg>
<msg 255>
original = "the %1 occurrence of %2 in the content model for %3 cannot be excluded at this point because it is contextually required"
</msg>
<msg 256>
original = "the %1 occurrence of %2 in the content model for %3 cannot be excluded because it is neither inherently optional nor a member of an OR group"
</msg>
<msg 257>
original = "an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified"
</msg>
<msg 258>
original = "value cannot be specified both for notation attribute and content reference attribute"
</msg>
<msg 259>
original = "notation %1 already defined"
</msg>
<msg 260>
original = "short reference map %1 already defined"
</msg>
<msg 261>
original = "first defined here"
</msg>
<msg 262>
original = "general delimiter role %1 already defined"
</msg>
<msg 263>
original = "number of ID references in start-tag must not exceed GRPCNT (%1)"
</msg>
<msg 264>
original = "number of entity names in attribute specification list must not exceed GRPCNT (%1)"
</msg>
<msg 265>
original = "normalized length of attribute specification list must not exceed ATTSPLEN (%1); length was %2"
</msg>
<msg 266>
original = "short reference delimiter %1 already specified"
</msg>
<msg 267>
original = "single character short references were already specified for character numbers: %1"
</msg>
<msg 268>
original = "default entity used in entity attribute %1"
</msg>
<msg 269>
original = "reference to entity %1 uses default entity"
</msg>
<msg 270>
original = "entity %1 in short reference map %2 uses default entity"
</msg>
<msg 271>
original = "no DTD %1 declared"
</msg>
<msg 272>
original = "LPD %1 has neither internal nor external subset"
</msg>
<msg 273>
original = "element types have different link attribute definitions"
</msg>
<msg 274>
original = "link set %1 already defined"
</msg>
<msg 275>
original = "empty result attribute specification"
</msg>
<msg 276>
original = "no source element type %1"
</msg>
<msg 277>
original = "no result element type %1"
</msg>
<msg 278>
original = "end of document in LPD subset"
</msg>
<msg 279>
original = "%1 declaration not allowed in LPD subset"
</msg>
<msg 280>
original = "ID link set declaration not allowed in simple link declaration subset"
</msg>
<msg 281>
original = "link set declaration not allowed in simple link declaration subset"
</msg>
<msg 282>
original = "attributes can only be defined for base document element (not %1) in simple link declaration subset"
</msg>
<msg 283>
original = "a short reference mapping declaration is allowed only in the base DTD"
</msg>
<msg 284>
original = "a short reference use declaration is allowed only in the base DTD"
</msg>
<msg 285>
original = "default value of link attribute cannot be CURRENT or CONREF"
</msg>
<msg 286>
original = "declared value of link attribute cannot be ID, IDREF, IDREFS or NOTATION"
</msg>
<msg 287>
original = "only fixed attributes can be defined in simple LPD"
</msg>
<msg 288>
original = "only one ID link set declaration allowed in an LPD subset"
</msg>
<msg 289>
original = "no initial link set defined for LPD %1"
</msg>
<msg 290>
original = "notation %1 not defined in source DTD"
</msg>
<msg 291>
original = "result document type in simple link specification must be implied"
</msg>
<msg 292>
original = "simple link requires SIMPLE YES"
</msg>
<msg 293>
original = "implicit link requires IMPLICIT YES"
</msg>
<msg 294>
original = "explicit link requires EXPLICIT YES"
</msg>
<msg 295>
original = "LPD not allowed before first DTD"
</msg>
<msg 296>
original = "DTD not allowed after an LPD"
</msg>
<msg 297>
original = "definition of general entity %1 is unstable"
</msg>
<msg 298>
original = "definition of parameter entity %1 is unstable"
</msg>
<msg 299>
original = "multiple link rules for ID %1 but not all have link attribute specifications"
</msg>
<msg 300>
original = "multiple link rules for element type %1 but not all have link attribute specifications"
</msg>
<msg 301>
original = "link type %1 does not have a link set %2"
</msg>
<msg 302>
original = "link set use declaration for simple link process"
</msg>
<msg 303>
original = "no link type %1"
</msg>
<msg 304>
original = "both document type and link type %1"
</msg>
<msg 305>
original = "link type %1 already defined"
</msg>
<msg 306>
original = "document type %1 already defined"
</msg>
<msg 307>
original = "link set %1 used in LPD but not defined"
</msg>
<msg 308>
original = "\#IMPLIED already linked to result element type %1"
</msg>
<msg 309>
original = "number of active simple link processes exceeds quantity specified for SIMPLE parameter in SGML declaration (%1)"
</msg>
<msg 310>
original = "only one chain of explicit link processes can be active"
</msg>
<msg 311>
original = "source document type name for link type %1 must be base document type since EXPLICIT YES 1"
</msg>
<msg 312>
original = "only one implicit link process can be active"
</msg>
<msg 313>
original = "sorry, link type %1 not activated: only one implicit or explicit link process can be active (with base document type as source document type)"
</msg>
<msg 314>
original = "name missing after name group in entity reference"
</msg>
<msg 315>
original = "source document type name for link type %1 must be base document type since EXPLICIT NO"
</msg>
<msg 316>
original = "link process must be activated before base DTD"
</msg>
<msg 317>
original = "unexpected entity end while starting second pass"
</msg>
<msg 318>
original = "type %1 of element with ID %2 not associated element type for applicable link rule in ID link set"
</msg>
<msg 319>
original = "DATATAG feature not implemented"
</msg>
<msg 320>
original = "generic identifier specification missing after document type specification in start-tag"
</msg>
<msg 321>
original = "generic identifier specification missing after document type specification in end-tag"
</msg>
<msg 322>
original = "a NET-enabling start-tag cannot include a document type specification"
</msg>
<msg 323>
original = "DTD did not contain element declaration for document type name"
verbose <<.EOF.
<div class="ve mid-323">
<p>
A DOCTYPE declares the version of the language used, as well as what the root
(top) element of your document will be. For example, if the top element
of your document is <html>, the DOCTYPE declaration
will look like: "<!DOCTYPE html".
</p>
<p>
In most cases, it is safer not to type or edit the DOCTYPE declaration at all,
and preferable to let a tool include it, or copy and paste it from a
<a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">trusted list of DTDs</a>.
</p>
</div>
.EOF.
</msg>
<msg 324>
original = "invalid default SGML declaration"
</msg>
<msg 325>
original = "reference to entity %1 for which no system identifier could be generated"
verbose <<.EOF.
<div class="ve mid-325">
<p>
This is usually a cascading error caused by a an undefined entity
reference or use of an unencoded ampersand (&) in an URL or body
text. See the previous message for further details.
</p>
</div>
.EOF.
</msg>
<msg 326>
original = "entity was defined here"
</msg>
<msg 327>
original = "content model is mixed but does not allow \#PCDATA everywhere"
</msg>
<msg 328>
original = "start or end of range must specify a single character"
</msg>
<msg 329>
original = "number of first character in range must not exceed number of second character in range"
</msg>
<msg 330>
original = "delimiter cannot be an empty string"
</msg>
<msg 331>
original = "too many characters assigned same meaning with minimum literal"
</msg>
<msg 332>
original = "earlier reference to entity %1 used default entity"
</msg>
<msg 333>
original = "empty start-tag"
verbose <<.EOF.
<div class="ve mid-334">
<p>
The construct <> is sometimes valid in HTML (it is an example of the rather obscure “Shorttags” feature)
but <a href="http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.7">its use is not recommended</a>.
In most cases, this is a typo that you will want to fix. If you really want to use shorttags,
be aware that they are not well implemented by browsers.
</p>
</div>
.EOF.
</msg>
<msg 334>
original = "empty end-tag"
verbose <<.EOF.
<div class="ve mid-334">
<p>
The construct </> is valid in HTML (it is an example of the rather obscure “Shorttags” feature)
but <a href="http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.7">its use is not recommended</a>.
In most cases, this is a typo that you will want to fix. If you really want to use shorttags,
be aware that they are not well implemented by browsers.
</p>
</div>
.EOF.
</msg>
<msg 335>
original = "unused short reference map %1"
</msg>
<msg 336>
original = "unused parameter entity %1"
</msg>
<msg 337>
original = "cannot generate system identifier for public text %1"
</msg>
<msg 338>
original = "cannot generate system identifier for general entity %1"
verbose <<.EOF.
<div class="ve mid-338">
<p>
An entity reference was found in the document, but there is no reference
by that name defined. Often this is caused by misspelling the reference
name, unencoded ampersands, or by leaving off the trailing semicolon (;).
<strong>The most common cause of this error is unencoded ampersands in
URLs</strong> as described by the <a
href="http://www.htmlhelp.com/">WDG</a> in "<a
href="http://www.htmlhelp.com/tools/validator/problems.html#amp">Ampersands
in URLs</a>".
</p>
<p>
Entity references start with an ampersand (&) and end with a
semicolon (;). If you want to use a literal ampersand in your document
you must encode it as "&amp;" (<em>even inside URLs!</em>). Be
careful to end entity references with a semicolon or your entity
reference may get interpreted in connection with the following text.
Also keep in mind that named entity references are case-sensitive;
&Aelig; and &aelig; are different characters.
</p>
<p>
If this error appears in some markup generated by PHP's session handling
code, <a href="http://www.w3.org/QA/2005/04/php-session"
title="Ampersands, PHP Sessions and Valid HTML">this article</a> has
explanations and solutions to your problem.
</p>
<p>
Note that in most documents, errors related to entity references will
trigger up to 5 separate messages from the Validator. Usually these
will all disappear when the original problem is fixed.
</p>
</div>
.EOF.
</msg>
<msg 339>
original = "cannot generate system identifier for parameter entity %1"
</msg>
<msg 340>
original = "cannot generate system identifier for document type %1"
</msg>
<msg 341>
original = "cannot generate system identifier for link type %1"
</msg>
<msg 342>
original = "cannot generate system identifier for notation %1"
</msg>
<msg 343>
original = "element type %1 both included and excluded"
</msg>
<msg 344>
original = "no document type declaration; implying %1"
verbose <<.EOF.
<div class="ve mid-344">
<p>
The checked page did not contain a document type ("DOCTYPE") declaration.
The Validator has tried to validate with a fallback DTD,
but this is quite likely to be incorrect and will generate a large number
of incorrect error messages. It is highly recommended that you insert the
proper DOCTYPE declaration in your document -- instructions for doing this
are given above -- and it is necessary to have this declaration before the
page can be declared to be valid.
</p>
</div>
.EOF.
</msg>
<msg 345>
original = "minimum data of AFDR declaration must be ""ISO/IEC 10744:1997"" not %1"
</msg>
<msg 346>
original = "AFDR declaration required before use of AFDR extensions"
</msg>
<msg 347>
original = "ENR extensions were used but minimum literal was not ""ISO 8879:1986 (ENR)"" or ""ISO 8879:1986 (WWW)"""
</msg>
<msg 348>
original = "illegal numeric character reference to non-SGML character %1 in literal"
</msg>
<msg 349>
original = "cannot convert character reference to number %1 because description %2 unrecognized"
</msg>
<msg 350>
original = "cannot convert character reference to number %1 because character %2 from baseset %3 unknown"
</msg>
<msg 351>
original = "character reference to number %1 cannot be converted because of problem with internal character set"
</msg>
<msg 352>
original = "cannot convert character reference to number %1 because character not in internal character set"
</msg>
<msg 353>
original = "Web SGML adaptations were used but minimum literal was not ""ISO 8879:1986 (WWW)"""
</msg>
<msg 354>
original = "token %1 can be value for multiple attributes so attribute name required"
</msg>
<msg 355>
original = "length of hex number must not exceed NAMELEN (%1)"
</msg>
<msg 356>
original = "%1 is not a valid name in the declared concrete syntax"
</msg>
<msg 357>
original = "CDATA declared content"
</msg>
<msg 358>
original = "RCDATA declared content"
</msg>
<msg 359>
original = "inclusion"
</msg>
<msg 360>
original = "exclusion"
</msg>
<msg 361>
original = "NUMBER or NUMBERS declared value"
</msg>
<msg 362>
original = "NAME or NAMES declared value"
</msg>
<msg 363>
original = "NUTOKEN or NUTOKENS declared value"
</msg>
<msg 364>
original = "CONREF attribute"
</msg>
<msg 365>
original = "CURRENT attribute"
</msg>
<msg 366>
original = "TEMP marked section"
</msg>
<msg 367>
original = "included marked section in the instance"
</msg>
<msg 368>
original = "ignored marked section in the instance"
</msg>
<msg 369>
original = "RCDATA marked section"
</msg>
<msg 370>
original = "processing instruction entity"
</msg>
<msg 371>
original = "bracketed text entity"
</msg>
<msg 372>
original = "internal CDATA entity"
</msg>
<msg 373>
original = "internal SDATA entity"
</msg>
<msg 374>
original = "external CDATA entity"
</msg>
<msg 375>
original = "external SDATA entity"
</msg>
<msg 376>
original = "attribute definition list declaration for notation"
</msg>
<msg 377>
original = "rank stem"
</msg>
<msg 378>
original = "no system id specified"
verbose <<.EOF.
<div class="ve mid-378">
<p>
Your document includes a DOCTYPE declaration with a public identifier
(e.g. "-//W3C//DTD XHTML 1.0 Strict//EN") but no system identifier
(e.g. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"). This is
authorized in HTML (based on SGML), but not in XML-based languages.
</p>
<p>
If you are using a standard XHTML document type, it is recommended to use exactly
one of the DOCTYPE declarations from the
<a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">recommended list on the W3C QA Website</a>.
</p>
</div>
.EOF.
</msg>
<msg 379>
original = "comment in parameter separator"
</msg>
<msg 380>
original = "named character reference"
</msg>
<msg 381>
original = "AND group"
</msg>
<msg 382>
original = "attribute value not a literal"
</msg>
<msg 383>
original = "attribute name missing"
</msg>
<msg 384>
original = "element declaration for group of element types"
</msg>
<msg 385>
original = "attribute definition list declaration for group of element types"
</msg>
<msg 386>
original = "empty comment declaration"
</msg>
<msg 387>
original = "S separator in comment declaration"
verbose <<.EOF.
<div class="ve mid-387">
<p>
This may happen if you have consecutive comments but did not close one of them properly.
The proper syntax for comments is <!-- my comment -->.
</p>
</div>
.EOF.
</msg>
<msg 388>
original = "multiple comments in comment declaration"
</msg>
<msg 389>
original = "no status keyword"
</msg>
<msg 390>
original = "multiple status keywords"
</msg>
<msg 391>
original = "parameter entity reference in document instance"
</msg>
<msg 392>
original = "CURRENT attribute"
</msg>
<msg 393>
original = "element type minimization parameter"
</msg>
<msg 394>
original = "reference not terminated by REFC delimiter"
verbose <<.EOF.
<div class="ve mid-394">
<p>
If you meant to include an entity that starts with "&", then you should
terminate it with ";". Another reason for this error message is that
you inadvertently created an entity by failing to escape an "&"
character just before this text.
</p>
</div>
.EOF.
</msg>
<msg 395>
original = "\#PCDATA not first in model group"
</msg>
<msg 396>
original = "\#PCDATA in SEQ group"
</msg>
<msg 397>
original = "\#PCDATA in nested model group"
</msg>
<msg 398>
original = "\#PCDATA in model group that does not have REP occurrence indicator"
</msg>
<msg 399>
original = "name group or name token group used connector other than OR"
</msg>
<msg 400>
original = "processing instruction does not start with name"
</msg>
<msg 401>
original = "S separator in status keyword specification in document instance"
</msg>
<msg 402>
original = "reference to external data entity"
</msg>
<msg 403>
original = "reference to external entity in attribute value"
verbose <<.EOF.
<div class="ve mid-403">
<p>
This is generally the sign of an ampersand that was not properly escaped for inclusion
in an attribute, in a href for example. You will need to escape all instances of '&'
into '&amp;'.
</p>
</div>
.EOF.
</msg>
<msg 404>
original = "character %1 is the first character of a delimiter but occurred as data"
verbose <<.EOF.
<div class="ve mid-404">
<p>
This message may appear in several cases:
</p>
<ul>
<li>You tried to include the "<" character in your page: you should escape it as "&lt;"</li>
<li>You used an unescaped ampersand "&": this may be valid in some contexts,
but it is recommended to use "&amp;", which is always safe.</li>
<li>Another possibility is that you forgot to close quotes in a previous tag.</li>
</ul>
</div>
.EOF.
</msg>
<msg 405>
original = "SGML declaration was not implied"
</msg>
<msg 406>
original = "marked section in internal DTD subset"
</msg>
<msg 407>
original = "NET-enabling start-tag not immediately followed by null end-tag"
verbose <<.EOF.
<div class="ve mid-407">
<p>
This error may occur when there is a mistake in how a self-closing tag is closed, e.g '.../ >'.
The proper syntax is '... />' (note the position of the space).
</p>
</div>
.EOF.
</msg>
<msg 408>
original = "entity end in different element from entity reference"
</msg>
<msg 409>
original = "NETENABL IMMEDNET requires EMPTYNRM YES"
</msg>
<msg 410>
original = "reference to non-SGML character"
verbose <<.EOF.
<div class="ve mid-410">
<p>
You've included a character reference to a character that is not defined
in the document type you've chosen. This is most commonly caused by
numerical references to characters from vendor proprietary
character repertoires. Often the culprit will be fancy or typographical
quote marks from either the Windows or Macintosh character repertoires.
</p>
<p>
The solution is to reference UNICODE characters instead. A list of
common characters from the Windows character repertoire and their
UNICODE equivalents can be found in the document "<a
href="http://www.cs.tut.fi/~jkorpela/www/windows-chars.html#list"
>On the use of some MS Windows characters in HTML</a>" maintained by
<a href="http://www.cs.tut.fi/~jkorpela/">Jukka Korpela</a>
<<a href="mailto:jkorpela@cs.tut.fi">jkorpela@cs.tut.fi</a>>.
</p>
</div>
.EOF.
</msg>
<msg 411>
original = "declaration of default entity"
</msg>
<msg 412>
original = "reference to parameter entity in parameter separator in internal subset"
</msg>
<msg 413>
original = "reference to parameter entity in token separator in internal subset"
</msg>
<msg 414>
original = "reference to parameter entity in parameter literal in internal subset"
</msg>
<msg 415>
original = "cannot generate system identifier for SGML declaration reference"
</msg>
<msg 416>
original = "public text class of formal public identifier of SGML declaration must be SD"
</msg>
<msg 417>
original = "SGML declaration reference was used but minimum literal was not ""ISO 8879:1986 (WWW)"""
</msg>
<msg 418>
original = "member of model group containing \#PCDATA has occurrence indicator"
</msg>
<msg 419>
original = "member of model group containing \#PCDATA is a model group"
</msg>
<msg 420>
original = "reference to non-predefined entity"
</msg>
<msg 421>
original = "reference to external entity"
</msg>
<msg 422>
original = "declaration of default entity conflicts with IMPLYDEF ENTITY YES"
</msg>
<msg 423>
original = "parsing with respect to more than one active doctype not supported"
</msg>
<msg 424>
original = "cannot have active doctypes and link types at the same time"
</msg>
<msg 425>
original = "number of concurrent document instances exceeds quantity specified for CONCUR parameter in SGML declaration (%1)"
</msg>
<msg 426>
original = "datatag group can only be specified in base document type"
</msg>
<msg 427>
original = "element not in the base document type can't have an empty start-tag"
</msg>
<msg 428>
original = "element not in base document type can't have an empty end-tag"
</msg>
<msg 429>
original = "immediately recursive element"
</msg>
<msg 430>
original = "invalid URN %1: missing "":"""
</msg>
<msg 431>
original = "invalid URN %1: missing ""urn:"" prefix"
</msg>
<msg 432>
original = "invalid URN %1: invalid namespace identifier"
</msg>
<msg 433>
original = "invalid URN %1: invalid namespace specific string"
</msg>
<msg 434>
original = "invalid URN %1: extra field"
</msg>
<msg 435>
original = "prolog can't be omitted unless CONCUR NO and LINK EXPLICIT NO and either IMPLYDEF ELEMENT YES or IMPLYDEF DOCTYPE YES"
</msg>
<msg 436>
original = "can't determine name of \#IMPLIED document element"
</msg>
<msg 437>
original = "can't use \#IMPLICIT doctype unless CONCUR NO and LINK EXPLICIT NO"
</msg>
<msg 438>
original = "Sorry, \#IMPLIED doctypes not implemented"
</msg>
<msg 439>
original = "reference to DTD data entity ignored"
</msg>
<msg 440>
original = "notation %1 for parameter entity %2 undefined"
</msg>
<msg 441>
original = "notation %1 for external subset undefined"
</msg>
<msg 442>
original = "attribute %1 can't be redeclared"
</msg>
<msg 443>
original = "\#IMPLICIT attributes have already been specified for notation %1"
</msg>
<msg 444>
original = "a name group is not allowed in a parameter entity reference in a start tag"
</msg>
<msg 445>
original = "name group in a parameter entity reference in an end tag (SGML forbids them in start tags)"
</msg>
<msg 446>
original = "if the declared value is NOTATION a default value of CONREF is useless"
</msg>
<msg 447>
original = "Sorry, \#ALL and \#IMPLICIT content tokens not implemented"
</msg>
<msg no-xmlns>
original = "Missing xmlns attribute for element %1. The value should be: %2"
verbose <<.EOF.
<div class="ve no-xmlns">
<p>
Many Document Types based on XML need a mandatory <code>xmlns</code> attribute on the root element. For example, the root element for <a href="http://www.w3.org/TR/xhtml1/#strict">XHTML</a> might look like:<br />
<code><html xmlns="http://www.w3.org/1999/xhtml"></code>
</p>
</div>
.EOF.
</msg>
|