Submission.1 134 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Member Submissions - W3C</title><link rel="stylesheet" href="/2008/site/css/minimum" type="text/css" media="handheld, all" /><style type="text/css" media="print, screen and (min-width: 481px)" xml:space="preserve">
     @import url("/2008/site/css/advanced");
</style><link href="/2008/site/css/minimum" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 480px)" /><meta name="viewport" content="width=device-width" /><link rel="stylesheet" href="/2008/site/css/print" type="text/css" media="print" /><link rel="shortcut icon" href="/2008/site/images/favicon.ico" type="image/x-icon" /><style type="text/css" xml:space="preserve">
       table td .comment { font-size: smaller; display: block; padding-top: 10px; }
       table .firstcol { width: 12%}
       table .secondcol { width: 25%}
       table .thirdcol { width: 25%}
       .data.spec td a { display: inline; }
       table ul li { list-style: disc }
    </style></head><body id="www-w3-org" class="w3c_public"><div id="w3c_container">
    

         <div id="w3c_mast">
            <h1 class="logo">
               <a tabindex="2" accesskey="1" href="/"><img src="/2008/site/images/logo-w3c-mobile-lg" width="90" height="53" alt="W3C" /></a>
               <span class="alt-logo">W3C</span>
            </h1>
            <div id="w3c_nav">
               
		
		             
               <form action="/Help/search" method="get" enctype="application/x-www-form-urlencoded"><div class="w3c_sec_nav"><!-- --></div><ul class="main_nav"><li class="first-item">
                        <a href="/standards/">Standards</a>
                     </li><li>
                        <a href="/participate/">Participate</a>
                     </li><li>
                        <a href="/Consortium/membership">Membership</a>
                     </li><li class="last-item">
                        <a href="/Consortium/">About W3C</a>
                     </li><li class="search-item">
                        <div id="search-form">
                           <input tabindex="3" class="text" name="q" value="" title="Search" type="text" />
                           <button id="search-submit" name="search-submit" type="submit"><img class="submit" src="/2008/site/images/search-button" alt="Search" width="21" height="17" /></button>
                        </div>
                     </li></ul></form>
               
            </div> 
            
         </div> 
 
         

         <div id="w3c_main">
            <div id="w3c_logo_shadow" class="w3c_leftCol">
               <img height="32" alt="" src="/2008/site/images/logo-shadow" />
            </div>
            
            <div class="w3c_leftCol"><h2 class="offscreen">Site Navigation</h2>
    <h3 class="category"><span class="ribbon"><a href="/Consortium/membership.html" title="Up to Membership">Membership <img src="/2008/site/images/header-link" alt="Header link" width="13" height="13" class="header-link" /></a></span></h3>
       <ul class="theme">
        <li><a href="/Consortium/membership-benefits.html">Membership Benefits</a></li>
        <li><a href="/Consortium/join.html">Join W3C</a></li>
        <li><a href="/Consortium/fees">Membership Fees</a></li>
        <li><a href="/Consortium/membership-faq.html">Membership FAQ</a></li>
        <li><a href="/Consortium/Member/List">Current Members</a></li>
        <li><a class="current">Member Submissions</a></li>
        <li><a href="/Consortium/Member/Testimonial/List.html">Member Testimonials</a></li>
       </ul>
       <br /></div>
            <div class="w3c_mainCol">
               <div id="w3c_crumbs">
       <div id="w3c_crumbs_frame">
        <ul class="bct"> <!-- .bct / Breadcrumbs -->
          <li class="skip"><a tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#w3c_content_body">Skip</a></li>
          <li><a href="/">W3C</a> <span class="cr">»</span> </li>
          <li><a href="/Consortium/membership.html">Membership</a> <span class="cr">»</span> </li>
          <li class="current">Member Submissions</li>
        </ul>            
     </div>
    </div>
               <h1 class="title">Member Submissions</h1>
               <ul class="w3c_toc">
	       <li class="toc_prefix">On this page &#x2192; </li>
	       <li><a href="#submissions">submissions by year</a><span class="bullet">&#xA0;&#x2022; </span></li>
	       <li><a href="#about">about&#xA0;W3C&#xA0;member&#xA0;submissions</a></li>
	       </ul>
	       
               <div id="w3c_content_body">
                  <div class="line">

	                    <p id="submissions" class="intro tPadding">From time to time, the W3C Team publishes "Member Submissions"
on the W3C Web site to draw attention to particular issues. These are not
<a href="/standards/">standards-track documents</a>, 
but are meant to be useful to the community. Learn more below
<a href="#about">about Member Submissions</a> and see related
<a href="../TeamSubmission/">Team Submissions</a>.</p>

                     <h3>
                        <a name="y2011" id="y2011">2011</a>
                     </h3>

                     <div class="data spec">
		       <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead>
		       <tbody>


			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2011-08-30</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2011/04/">Tiling and Layering Module for SVG 1.2 Tiny Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2011/04/Comment/">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
                             <li><a href="/Submission/2011/SUBM-SVGTL-20110607/">Tiling and Layering Module for SVG 1.2 Tiny</a></li>
			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
                           KDDI CORPORATION, on 7 June 2011
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2011-05-03</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2011/03/">Binary RDF Representation for Publication and Exchange (HDT) Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2011/03/Comment/">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
                             <li><a href="/Submission/2011/SUBM-HDT-20110330/">Binary RDF Representation for Publication and Exchange (HDT)</a></li>
                             <li><a href="/Submission/2011/SUBM-HDT-Extending-VoID-20110330/">Extending VoID for publishing HDT</a></li>
                             <li><a href="/Submission/2011/SUBM-HDT-RDFS-20110330/">RDF Schema for HDT Header Descriptions</a></li>
                             <li><a href="/Submission/2011/SUBM-HDT-Related-20110330/">Relationship of HDT to relevant other technologies</a></li>
                             <li><a href="/Submission/2011/SUBM-HDT-Implementation-20110330/">Implementation of HDT</a></li>

			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
                               DERI Galway at the National University of Ireland, Galway, Ireland, Free University of Bozen-Bolzano, The Open University, Universidad Politécnica de Madrid, Alcatel-Lucent, Cisco, OpenLink Software, Profium Ltd, on 30 March 2011
			 </td>
			 </tr>


			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2011-02-22</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2011/02/">SPARQL Inferencing Notation (SPIN) Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2011/02/Comment/">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
			     <li><a href="http://www.w3.org/Submission/2011/SUBM-spin-overview-20110222/">SPIN - Overview and Motivation</a></li>
			     <li><a href="http://www.w3.org/Submission/2011/SUBM-spin-sparql-20110222/">SPIN - SPARQL Syntax</a></li>
			     <li><a href="http://www.w3.org/Submission/2011/SUBM-spin-modeling-20110222/">SPIN - Modeling Vocabulary</a></li>
			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
                               TopQuadrant, OpenLink Software, Rensselaer Polytechnic Institute, on 22 February 2011
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2011-02-24</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2011/01/">Web Tracking Protection Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2011/01/Comment/">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
			     <li><a href="http://www.w3.org/Submission/2011/SUBM-web-tracking-protection-20110224/">Web Tracking Protection</a></li>
			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
                           Microsoft Corporation, on 02 February 2011
			 </td>
			 </tr>
                       </tbody>
                       </table>
                     </div>

                     <h3>
                        <a name="y2010" id="y2010">2010</a>
                     </h3>

                     <div class="data spec">
		       <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead>
		       <tbody>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2010-08-23</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2010/05/">WSMO-Lite: Lightweight Semantic Descriptions for Services on the Web Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2010/05/Comment/">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-WSMO-Lite-20100823/">WSMO-Lite: Lightweight Semantic Descriptions for Services on the Web</a></li>
			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
                           The Open University,
                           Ontotext AD,
                           Forschungszentrum Informatik (FZI),
                           University of Manchester, on 23 August 2010
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2010-08-01</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2010/04/">OWLlink Protocol Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2010/04/Comment">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <ul>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-structural-specification-20100701/">OWLlink: Structural Specification</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-httpxml-binding-20100701/">OWLlink: HTTP/XML Binding</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-httpfunct-binding-20100701/">OWLlink: HTTP/Functional Binding</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-httpsexpr-binding-20100701/">OWLlink: HTTP/S-Expression Binding</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-extension-retraction-20100701/">OWLlink Extension: Retraction</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-extension-retraction-httpxml-binding-20100701/">OWLlink Extension: Retraction HTTP/XML Binding</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-extension-retraction-httpfunct-binding-20100701/">OWLlink Extension: Retraction HTTP/Functional Binding</a></li>
			     <li><a href="http://www.w3.org/Submission/2010/SUBM-owllink-extension-retraction-httpsexpr-binding-20100701/">OWLlink Extension: Retraction HTTP/S-Expression Binding</a></li>
			   </ul>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
			   Clark &amp; Parsia LLC,
			   Creative Commons,
			   Daimler Chrysler Research and Technology,
			   Free University of Bozen-Bolzano,
			   German Research Center for Artificial Intelligence,
			   NTT DOCOMO,
			   Stanford University,
			   University of Aberdeen, Computing Science,
			   University of Manchester,
			   Vrije Universiteit, on 1 July 2010
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2010-05-25</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2010/02/">SA-REST: Semantic Annotation of Web Resources Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2010/02/Comment">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <a href="/Submission/SA-REST/">SA-REST: Semantic Annotation of Web Resources</a>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
			   Wright State University, on 5 April 2010
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2010-04-08</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2010/03/">WOFF File Format 1.0 Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2010/03/Comment">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <a href="/Submission/WOFF/">WOFF File Format 1.0</a>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
			      Microsoft Corporation, Mozilla Foundation, Opera Software ASA on 08 April 2010
			 </td>
			 </tr>

			 <tr>
			   <td class="firstcol" rowspan="1" colspan="1">2010-01-20</td><td class="secondcol" rowspan="1" colspan="1">
			   <a href="/Submission/2010/01/">Representing vCard Objects in RDF Submission</a>
			   <br />
			   <span class="comment">(<a href="/Submission/2010/01/Comment">W3C Staff Comment</a>)</span>
			 </td>
			 <td class="thirdcol" rowspan="1" colspan="1">
			   <a href="/Submission/vcard-rdf">Representing vCard Objects in RDF</a>
			 </td>
			 <td class="fourth" rowspan="1" colspan="1">
			   NICTA on 20 January 2010
			 </td>
			 </tr>

		       </tbody>
		       </table>
		     </div>


                     <h3>
                        <a name="y2009" id="y2009">2009</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead>
			  <tbody>
			    <tr>
			      <td class="firstcol" rowspan="1" colspan="1">2009-10-14</td><td class="secondcol" rowspan="1" colspan="1">
                                <a href="/Submission/2009/03/">WADL Submission</a>
                                <br />
                                <span class="comment">(<a href="/Submission/2009/03/Comment">W3C Staff Comment</a>)</span>
                              </td>
			      <td class="thirdcol" rowspan="1" colspan="1">
                                <a href="/Submission/wadl/">Web Application Description Language</a>
                              </td>
			      <td class="fourth" rowspan="1" colspan="1">
				Sun Microsystems, Inc. on 31 August 2009
			      </td>
			    </tr>


			    <tr>
			      <td class="firstcol" rowspan="1" colspan="1">2009-06-23</td><td class="secondcol" rowspan="1" colspan="1">
                                <a href="/Submission/2009/01/">XSPARQL Submission</a>
                                <br />
                                <span class="comment">(<a href="/Submission/2009/01/Comment">W3C Staff Comment</a>)</span>
                              </td><td class="thirdcol" rowspan="1" colspan="1">
                                <ul><li>
                                    <a href="/Submission/xsparql-language-specification/">XSPARQL Language Specification</a>
                                  </li><li>
                                    <a href="/Submission/xsparql-semantics/">XSPARQL: Semantics</a>
                                  </li><li>
                                    <a href="/Submission/xsparql-implementation/">XSPARQL: Implementation and Test-cases</a>
                                  </li><li>
                                    <a href="/Submission/xsparql-use-cases/">XSPARQL: Use cases</a>
                                </li></ul>
                              </td>
			      <td class="fourth" rowspan="1" colspan="1">
      Asemantics S.R.L., DERI Galway at the National University of Ireland, 
      Galway, Ireland, Fundación CTIC (Centro Tecnológico para el Desarrollo en Asturias de 
      las Tecnologías de la Información y la Comunicación), Institut National de Recherche en 
      Informatique et en Automatique (INRIA), Ontotext, OpenLink Software Inc., Profium, Talis 
      Information Limited, and University of Innsbruck on 20 January 2009.
			      </td>
			    </tr>


			    <tr>
			      <td class="firstcol" rowspan="1" colspan="1">2009-05-14</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2009/02/">Website Parse Template (WPT) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2009/02/Comment">W3C Staff Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="/Submission/WPT/">Website Parse Template</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">OMFICA.org on 21 March 2009</td></tr></tbody></table>
		                   </div>

                     <h3>
                        <a name="y2008" id="y2008">2008</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2008-10-09</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2008/04/">SPARQL Update
        Submissions</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2008/04/Comment">W3C Staff Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="/Submission/SPARQL-Update/">SPARQL Update</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard, Freie Universitat, DERI
        Galway at the National University of Ireland, Oracle
        Corporation, Talis Information Systems Ltd., Garlik Ltd.,
        OpenLink Software Inc., INRIA, Computas AS, Semsol on
        15 July 2008</td></tr><tr><td rowspan="1" colspan="1">2008-09-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2008/06/">Web Services
        Metadata Exchange 1.1 (WS-MetadataExchange)
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2008/06/Comment">W3C Staff
        Comment</a>
                                    )</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-MetadataExchange/">Web Services Metadata
        Exchange 1.1 (WS-MetadataExchange)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">CA, Hitachi, IBM, Layer 7, Microsoft,
        Progress Software, Red Hat, SAP, Software AG, TIBCO, WSO2
        and Xerox on 13 August 2008</td></tr><tr><td rowspan="1" colspan="1">2008-09-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2008/05/">Web Services
        Resource Transfer (WS-RT) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2008/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WSRT/">Web Services
        Resource Transfer (WS-RT)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">CA, Fujitsu, Hitachi, IBM and Intel on
        12 August 2008</td></tr><tr><td rowspan="1" colspan="1">2008-05-26</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2008/01/">Embedded OpenType
        (.EOT) Font Format Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2008/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
				                                <ul><li>
                                          <a href="/Submission/EOT/">Embedded
        OpenType (EOT) File Format</a>
                                       </li><li>
                                          <a href="/Submission/MTX/">MicroType® Express (MTX) Font
        Format</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, Monotype Imaging
        on 05 March 2008</td></tr><tr><td rowspan="1" colspan="1">2008-08-20</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2008/02/">ccREL: The Creative
        Commons Rights Expression Language</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2008/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/EOT/">ccREL: The
        Creative Commons Rights Expression Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Creative Commons on 01 May 2008</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2007" id="y2007">2007</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2008-01-31</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2007/05/">SOAP over Java™
        Message Service 1.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2007/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="/Submission/SOAPJMS/">SOAP over
        Java™ Message Service 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, IBM, Progress Software,
        Software AG, Sun Microsystems, Inc., TIBCO Software and
        WSO2 on 09 November 2007</td></tr><tr><td rowspan="1" colspan="1">2007-12-17</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2007/09/">RDF/XML Source
        Declaration Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2007/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/rdfsource/">RDF/XML
        Source Declaration</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">INRIA (Institut National de Recherche en
        Informatique et en Automatique) on 06
        September 2007</td></tr><tr><td rowspan="1" colspan="1">2007-08-02</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2007/03/">Web Services Policy
        Attachment for Endpoint Reference (WS-PAEPR)
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2007/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-PAEPR/">Web
        Services Policy Attachment for Endpoint Reference
        (WS-PAEPR)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Axway, BEA Systems, Inc., JBoss Inc.,
        Nokia, Oracle, and Progress Software Corporation on
        20 July 2007</td></tr><tr><td rowspan="1" colspan="1">2007-07-31</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2007/02/">Semantically-Interlinked
        Online Communities (SIOC) Ontology Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2007/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/sioc-spec/">SIOC
        Core Ontology Specification</a>
                                       </li><li>
                                          <a href="/Submission/sioc-applications/">SIOC Ontology:
        Applications and Implementation Status</a>
                                       </li><li>
                                          <a href="/Submission/sioc-related/">SIOC Ontology: Related
        Ontologies and RDF Vocabularies</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Asemantics S.R.L., DERI Galway at the
        National University of Ireland, German Research Center for
        Artificial Intelligence (DFKI) Gmbh, Forschungszentrum
        Informatik (FZI), Fraunhofer Gesellschaft, Fundación CTIC,
        OpenLink Software Inc., Opera Software, STFC (Science &amp;
        Technology Facilities Council), Universidad Politécnica de
        Madrid, Department of Information and Communication
        Technology - University of Trento on 12
        June 2007</td></tr><tr><td rowspan="1" colspan="1">2007-03-21</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2007/01/">Service Modeling
        Language (SML) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2007/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/sml">Service
        Modeling Language, Version 1.0</a>
                                       </li><li>
                                          <a href="/Submission/sml-if">SML Interchange Format Version
        1.0</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA, CA, Cisco, EMC (Documentum), HP,
        IBM, Intel, Microsoft and Sun Microsystems on 28 February 2007</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2006" id="y2006">2006</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2007-02-21</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/10/">OWL 1.1 Web
        Ontology Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/10/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
				                                <ul><li>
                                          <a href="/Submission/owl11-overview/">OWL
        1.1 Web Ontology Language Overview</a>
                                       </li><li>
                                          <a href="/Submission/owl11-owl_specification/">OWL 1.1 Web Ontology
        Language Structural Specification and Functional-Style
        Syntax</a>
                                       </li><li>
                                          <a href="/Submission/owl11-xml_syntax/">OWL
        1.1 Web Ontology Language XML Syntax</a>
                                       </li><li>
                                          <a href="/Submission/owl11-semantics/">OWL 1.1 Web Ontology
        Language Model-Theoretic Semantics</a>
                                       </li><li>
                                          <a href="/Submission/owl11-rdf_mapping/">OWL 1.1 Web Ontology
        Language Mapping to RDF Graphs</a>
                                       </li><li>
                                          <a href="/Submission/owl11-tractable/">OWL 1.1 Web Ontology
        Language Tractable Fragments</a>
                                       </li></ul>
                                 </td><td class="fourth" rowspan="1" colspan="1">SRI International, TopQuadrant,
        University of Manchester and webMethods, Inc. on
        19 December 2006</td></tr><tr><td rowspan="1" colspan="1">2007-01-10</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/09/">WS-MTOMPolicy
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-MTOMPolicy/">MTOM
        Serialization Policy Assertion</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM and Microsoft on 16 November 2006</td></tr><tr><td rowspan="1" colspan="1">2006-09-27</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/08/">WS-Transfer
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-Transfer/">Web
        Services Transfer (WS-Transfer)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, CA, Microsoft, Sonic
        Software and Systinet, A Mercury Division on 12 September 2006</td></tr><tr><td rowspan="1" colspan="1">2006-04-26</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/06/">WS-Policy
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
				                                <ul><li>
                                          <a href="/Submission/WS-Policy/">Web
        Services Policy 1.2 - Framework (WS-Policy)</a>
                                       </li><li>
                                          <a href="/Submission/WS-PolicyAttachment/">Web Services Policy 1.2
        - Attachment (WS-PolicyAttachment)</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Adobe Systems, BEA Systems, CA,
        Ericsson, IBM, IONA, Layer 7 Technologies, Microsoft,
        Nokia, Oracle, Ricoh Company, SAP, Sonic Software, Sun
        Microsystems, Inc., Systinet, A Mercury Division, TIBCO
        Software, VeriSign, webMethods and WSO2 on 13 April 2006</td></tr><tr><td rowspan="1" colspan="1">2006-04-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/05/">WSDL 1.1 Binding
        Extension for SOAP 1.2 and SOAP 1.1 Binding for MTOM 1.0
        Specifications Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/wsdl11soap12/">WSDL
        1.1 Binding Extension for SOAP 1.2</a>
                                       </li><li>
                                          <a href="/Submission/soap11mtom10/">SOAP 1.1 Binding for MTOM
        1.0</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM, Microsoft, Oracle, and SAP AG on
        7 March 2006</td></tr><tr><td rowspan="1" colspan="1">2006-03-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/04/">Web Services
        Transfer (WS-Transfer)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-Transfer/">Web
        Services Transfer (WS-Transfer)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, Computer Associates,
        Microsoft, Sonic Software, and Systinet, A Mercury Division
        on 1 March 2006</td></tr><tr><td rowspan="1" colspan="1">2006-03-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/03/">Web Services
        Eventing (WS-Eventing)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-Eventing/">Web
        Services Eventing (WS-Eventing)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, Computer Associates, IBM,
        Microsoft, and Tibco Software on 1 March
        2006</td></tr><tr><td rowspan="1" colspan="1">2006-03-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/02/">Web Services
        Enumeration (WS-Enumeration)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WS-Enumeration/">Web
        Services Enumeration (WS-Enumeration)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, Computer Associates,
        Microsoft, Sonic Software, and Systinet, A Mercury Division
        on 1 March 2006</td></tr><tr><td rowspan="1" colspan="1">2006-03-13</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2006/01/">WebCGM
        2.0</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2006/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/WebCGM20/">WebCGM
        2.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Oasis Open on 23
        December 2005</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2005" id="y2005">2005</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2005-11-07</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/10/">Web Service
        Semantics - WSDL-S</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/10/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="/Submission/WSDL-S/">Web Service
        Semantics - WSDL-S</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM on 1 October
        2005</td></tr><tr><td rowspan="1" colspan="1">2005-10-26</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/09/">Web Services
        Polling (WS-Polling)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="/Submission/ws-polling/">Web
        Services Polling (WS-Polling)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM on 21 September
        2005</td></tr><tr><td rowspan="1" colspan="1">2005-09-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/08/">Web Rule Language
        (WRL)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/08/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/WRL/">Web Rule
        Language (WRL)</a>
                                       </li><li>
                                          <a href="/Submission/WRL-xmlschemas/">XML Schema for WRL/XML
        Serialization</a>
                                       </li><li>
                                          <a href="/Submission/WRL-related/">Relationship of WRL to relevant
        other technologies</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">DERI Galway at the National University
        of Ireland, DERI Innsbruck at the
        Leopold-Franzens-Universität Innsbruck, The Open
        University, Software AG, Forschungszentrum Informatik
        (FZI), BT, and National Research Council Canada on
        21 June 2005</td></tr><tr><td rowspan="1" colspan="1">2005-09-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/07/">Semantic Web
        Services Framework (SWSF)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/SWSF/">Semantic Web
        Services Framework (SWSF) Overview</a>
                                       </li><li>
                                          <a href="/Submission/SWSF-SWSL/">Semantic Web Services Language
        (SWSL)</a>
                                       </li><li>
                                          <a href="/Submission/SWSF-SWSO/">Semantic Web
        Services Ontology (SWSO)</a>
                                       </li><li>
                                          <a href="/Submission/SWSF-Applications/">SWSF Application
        Scenarios</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">National Institute of Standards and
        Technology (NIST), National Research Council of Canada, SRI
        International, Stanford University, Toshiba Corporation,
        and University of Southampton on 09 May
        2005</td></tr><tr><td rowspan="1" colspan="1">2005-06-03</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/06/">Web Service
        Modeling Ontology (WSMO)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="/Submission/WSMO/">Web Service
        Modeling Ontology (WSMO)</a>
                                       </li><li>
                                          <a href="/Submission/WSML/">Web Service Modeling Language
        (WSML)</a>
                                       </li><li>
                                          <a href="/Submission/WSMX/">Web Service
        Execution Environment (WSMX)</a>
                                       </li><li>
                                          <a href="/Submission/WSMO-related/">Relationship of WSMO to
        relevant other technologies</a>
                                       </li><li>
                                          <a href="/Submission/WSMO-primer/">WSMO Primer</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">DERI Innsbruck at the
        Leopold-Franzens-Universität Innsbruck, Austria, DERI
        Galway at the National University of Ireland, Galway,
        Ireland, BT, The Open University, and SAP AG on
        04 April 2005</td></tr><tr><td rowspan="1" colspan="1">2005-06-03</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/06/">CBD - Concise
        Bounded Description</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/SUBM-CBD-20050603/">CBD
        - Concise Bounded Description</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Nokia on 25 August
        2004</td></tr><tr><td rowspan="1" colspan="1">2005-04-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/03/">Timesheets: XML
        Timing Language</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/xml-timing/">Timesheets: XML
        Timing Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Helsinki University of Technology on
        15 February 2005</td></tr><tr><td rowspan="1" colspan="1">2005-04-11</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/04/">XML Pipeline
        Language (XPL) Version 1.0 (Draft)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/xpl/">XML Pipeline Language
        (XPL) Version 1.0 (Draft)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Orbeon, Inc. on 11
        March 2005</td></tr><tr><td rowspan="1" colspan="1">2005-04-11</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/01/">Semantic Web Rule
        Language First-Order Logic (SWRL FOL)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/Submission/SWRL-FOL/">A Proposal for a
        SWRL Extension towards First-Order Logic</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Submission/FOL-RuleML/">FOL RuleML: The
        First-Order Logic Web Language</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">National Research Council of Canada,
        Network Inference, and Stanford University on 27 January 2005</td></tr><tr><td rowspan="1" colspan="1">2005-04-11</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2005/02/">Web Forms
        2.0</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2005/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/web-forms2/">Web Forms
        2.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Opera Software ASA and Mozilla
        Foundation on 08 February
        2005</td></tr><tr><td rowspan="1" colspan="1">2000-05-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/03/">XML Japanese
        Profile (Second Edition)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/japanese-xml/">XML Japanese
        Profile (Second Edition)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Xerox, Panasonic, Toshiba, GLOCOM,
        Academia Sinica and Alis Technologies on 28 March 2000</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2004" id="y2004">2004</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2004-11-22</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/07/">OWL Web Ontology
        Language for Services (OWL-S)</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
				                                <ul><li>
                                          <a href="http://www.w3.org/Submission/2004/SUBM-OWL-S-20041122/">OWL-S:
        Semantic Markup for Web Services</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Submission/2004/SUBM-OWL-S-related-20041122/">
        OWL-S' Relationship to Selected Other Technologies</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">France Telecom, Maryland Information and
        Network Dynamics Lab at the University of Maryland,
        National Institute of Standards and Technology (NIST),
        Network Inference, Nokia, SRI International, Stanford
        University, Toshiba Corporation, and University of
        Southampton on 02 November
        2004</td></tr><tr><td rowspan="1" colspan="1">2004-08-10</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/05/">WS-Addressing
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/SUBM-ws-addressing-20040810/">
        WS-Addressing</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, IBM, Microsoft, SAP, and
        Sun Microsystems, Inc. on 3 August
        2004</td></tr><tr><td rowspan="1" colspan="1">2004-07-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/04/">Solution
        Installation Schema Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/Submission/2004/SUBM-InstallableUnit-DD-20040712/">
        Specification and XML schema of Installable Unit Deployment
        Descriptor</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Submission/2004/SUBM-InstallableUnit-PF-20040712/">
        Specification and XML schema of Installable Unit Package
        Format</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM and Novell, on 11
        June 2004</td></tr><tr><td rowspan="1" colspan="1">2004-05-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/03/">Semantic Web Rule
        Language (SWRL) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/SUBM-SWRL-20040521/">SWRL:
        A Semantic Web Rule Language Combining OWL and
        RuleML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">National Research Council of Canada,
        Network Inference, and Stanford University, on 5 May 2004</td></tr><tr><td rowspan="1" colspan="1">2004-04-26</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/02/">WS-MessageDelivery
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/SUBM-ws-messagedelivery-20040426/">
        WS-MessageDelivery Version 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Arjuna Technologies Limited, Cyclone
        Commerce Inc., Enigmatec Corporation, IONA Technologies,
        Nokia Corporation, Oracle Corporation, SeeBeyond Technology
        Corporation, Sun Microsystems Inc., on 13 April 2004</td></tr><tr><td rowspan="1" colspan="1">2004-01-22</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/01/">XML Schema API
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2004/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/SUBM-xmlschema-api-20040309/">
        XML Schema API</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM and X-Hive, on 9 December 2003, and
        updated on 23 February 2004</td></tr><tr><td rowspan="1" colspan="1">2004-01-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/06/">RDQL
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2004/SUBM-RDQL-20040109/">RDQL
        - A Query Language for RDF</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard, on 29 October 2003</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2003" id="y2003">2003</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2003-12-01</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/07/">EPAL
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/SUBM-EPAL-20031110/">Enterprise
        Privacy Authorization Language (EPAL 1.2)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines (IBM),
        on 10 November 2003</td></tr><tr><td rowspan="1" colspan="1">2003-10-02</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/03/">RDF Net API
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/SUBM-rdf-netapi-20031002/">
        RDF Net API</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard, on 20 June 2003</td></tr><tr><td rowspan="1" colspan="1">2003-06-12</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/02/">XIndirect
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2003/NOTE-XIndirect-20030612">XML
        Indirection Facility</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">ISOGEN, on 7 April
        2003</td></tr><tr><td rowspan="1" colspan="1">2003-05-12</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/04/">SMIL Pro
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org//TR/2003/NOTE-SMIL2-AuthExt-20030512/">SMIL
        2.0 Extension for Professional Multimedia Authoring -
        Preliminary Investigation</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Sony, on 31 March
        2003</td></tr><tr><td rowspan="1" colspan="1">2003-02-20</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2003/01/">XML Advanced
        Electronic Signatures (XAdES) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2003/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2003/NOTE-XAdES-20030220/">XML
        Advanced Electronic Signatures (XAdES)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">ETSI, on 30 March
        2003</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2002" id="y2002">2002</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2002-12-20</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/08/">EGIX
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/08/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-EGIX-20021220/">Embedding
        Glyph Identifiers in XML Documents</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">GLOCOM, Infoteria, Media Fusion, on
        27 September 2002</td></tr><tr><td rowspan="1" colspan="1">2002-12-18</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/07/">Simulation
        Reference Markup Language (SRML) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-SRML-20021218">SRML -
        Simulation Reference Markup Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Boeing, on 31 May
        2002</td></tr><tr><td rowspan="1" colspan="1">2002-09-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/05/">XMCL - the
        eXtensible Media Commerce Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-xmcl-20020919/">XMCL - the
        eXtensible Media Commerce Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">RealNetworks Inc., on 19 September 2002</td></tr><tr><td rowspan="1" colspan="1">2002-09-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/06/">Open Digital Rights
        Language (ODRL) Version 1.1 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-odrl-20020919/">Open
        Digital Rights Language (ODRL) Version 1.1</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IPR Systems, on 31
        May 2002</td></tr><tr><td rowspan="1" colspan="1">2002-08-08</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/04/">Web Service
        Choreography Interface (WSCI) 1.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-wsci-20020808">Web Service
        Choreography Interface (WSCI) 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">BEA Systems, BPMI.org, Commerce One,
        Fujitsu Limited, Intalio, IONA, Oracle Corporation, SAP AG,
        SeeBeyond Technology Corporation, Sun Microsystems, on
        8 August 2002</td></tr><tr><td rowspan="1" colspan="1">2002-05-28</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/03/">Extensible User
        Interface Protocol (XUP) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-xup-20020528">XUP -
        Extensible User Interface Protocol</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">MartSoft, on 28 May
        2002</td></tr><tr><td rowspan="1" colspan="1">2002-03-14</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/02/">Web Services
        Conversation Languages (WSCL) Submission
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-wscl10-20020314/">Web
        Services Conversation Language (WSCL) 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard Company, on 14 March 2002</td></tr><tr><td rowspan="1" colspan="1">2002-02-28</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2002/01/">XML Pipeline
        Definition Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2002/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2002/NOTE-xml-pipeline-20020228/">XML
        Pipeline Definition Language Version 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Sun Microsystems, Inc., Alis
        Technologies, Inc., Arbortext, Inc., Cisco Systems Inc.,
        Fujitsu Limited, Markup Technology, Ltd., Oracle
        Corporation, on 28 February
        2002</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2001" id="y2001">2001</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2001-12-21</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/13/">XHTML+Voice Profile
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/13/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-xhtml+voice-20011221/">XHTML+Voice
        Profile 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines,
        Motorola, Inc., Opera Software, on 21
        December 2001</td></tr><tr><td rowspan="1" colspan="1">2001-12-18</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/12/">DAML+OIL Web
        Ontology Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/12/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-daml+oil-axioms-20011218">An
        Axiomatic Semantics for RDF, RDF-S, and DAML+OIL (March
        2001)</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-daml+oil-model-20011218">A
        Model-Theoretic Semantics for DAML+OIL (March 2001)</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-daml+oil-reference-20011218">
        DAML+OIL (March 2001) Reference Description</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-daml+oil-walkthru-20011218/">
        Annotated DAML+OIL Ontology Markup</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Lucent Technologies, on 18 December 2001</td></tr><tr><td rowspan="1" colspan="1">2001-11-28</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/11/">Tentative Hold
        Protocol Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/11/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-tenthold-1-20011128/">Tentative
        Hold Protocol Part 1: White Paper</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-tenthold-2-20011128/">Tentative
        Hold Protocol Part 2: Technical Specification</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Intel, on 28 November
        2001</td></tr><tr><td rowspan="1" colspan="1">2001-10-31</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/10/">DEL - Data
        Extraction Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/10/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-data-extraction-20011031">DEL
        - Data Extraction Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Republica Corp., on 31 October 2001</td></tr><tr><td rowspan="1" colspan="1">2001-08-04</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/09/">Edge Side Includes
        (ESI) Submission Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-edge-arch-20010804">Edge
        Architecture Specification</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-esi-invp-20010804">ESI
        Invalidation Protocol 1.0</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2001/NOTE-esi-lang-20010804">ESI
        Language Specification 1.0</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Art Technology Group, BEA Systems, Inc.,
        Circadence Corporation, Digital Island, Inc., IBM
        Corporation, Interwoven, Inc., Oracle Corporation, Sun
        Microsystems, Vignette Corporation, Akamai Technologies,
        Inc., on 4 August 2001</td></tr><tr><td rowspan="1" colspan="1">2001-03-30</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/08/">XML Key Management
        Specification (XKMS) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/08/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-xkms-20010330/">XML Key
        Management Specification (XKMS)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">VeriSign, Microsoft, webMethods,
        Baltimore Technologies, Citigroup, Hewlett-Packard, IBM,
        IONA Technologies, PureEdge, Reuters Limited, on
        30 March 2001</td></tr><tr><td rowspan="1" colspan="1">2001-03-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/07/">Web Services
        Description Language (WSDL) 1.1 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-wsdl-20010315">Web Services
        Description Language (WSDL) 1.1</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines
        Corporation, Microsoft Corporation, Allaire, Ariba, BEA,
        Bowstreet, Commerce One, Compaq Computer Corporation, on
        15 March 2001</td></tr><tr><td rowspan="1" colspan="1">2001-03-14</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/06/">The [NEL] Newline
        Character Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-newline-20010314">The [NEL]
        Newline Character</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines
        Corporation, on 14 March
        2001</td></tr><tr><td rowspan="1" colspan="1">2001-02-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/05/">XBL - XML Binding
        Language 1.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-xbl-20010223/">XBL - XML
        Binding Language 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">America Online, Inc., on 23 February 2001</td></tr><tr><td rowspan="1" colspan="1">2001-02-22</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/04/">Representing vCard
        Objects in RDF/XML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222">Representing
        vCard Objects in RDF/XML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IPR Systems Pty Ltd, on 22 February 2001</td></tr><tr><td rowspan="1" colspan="1">2001-02-21</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/03/">Clear, Secure,
        Portable Visual Marks for the Cyber World
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-visual-marks-20010221/">Clear,
        Secure, and Portable Visual Marks for the Cyber
        World</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hitachi Ltd., on 21
        February 2001</td></tr><tr><td rowspan="1" colspan="1">2001-02-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/02/">URISpace 1.0
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-urispace-20010215">URISpace
        1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Akamai Technologies, on 15 February 2001</td></tr><tr><td rowspan="1" colspan="1">2001-02-06</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2001/01/">SOAP Security
        Extensions: Digital Signature Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2001/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2001/NOTE-SOAP-dsig-20010206">SOAP
        Security Extensions: Digital Signature</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines
        Corporation, Microsoft Corporation, on 6
        February 2001</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y2000" id="y2000">2000</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">2000-12-11</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/11/">SOAP Messages with
        Attachments Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/11/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-SOAP-attachments-20001211">SOAP
        Messages with Attachments</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Commerce One, Inc., Hewlett Packard
        Company, International Business Machines Corporation, on
        11 December 2000</td></tr><tr><td rowspan="1" colspan="1">2000-11-21</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/10/">XTND/XEXPR
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/10/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/2000/NOTE-xexpr-20001121">XEXPR - A
        Scripting Language for XML</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2000/NOTE-xtnd-20001121">XTND - XML
        Transition Network Definition</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">eBusiness Technologies, Inc., on
        21 November 2000</td></tr><tr><td rowspan="1" colspan="1">2000-11-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/09/">Shop Log File
        Format Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-shoplogfileformat-20001115">
        Shop Log File Format</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Exody E-Business Intelligence GmbH, on
        15 November 2000</td></tr><tr><td rowspan="1" colspan="1">2000-11-14</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/08/">SpeechObjects
        Specification V1.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/08/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-speechobjects-20001114">SpeechObjects
        Specification V1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Nuance Communications, on 14 November 2000</td></tr><tr><td rowspan="1" colspan="1">2000-10-13</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/07/">XMSG
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-xmsg-20001013">XMSG - XML
        Messaging Specification</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Lexica, LLC, on 13
        October 2000</td></tr><tr><td rowspan="1" colspan="1">2000-06-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/06/">JSGF/JSML
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/2000/NOTE-jsgf-20000605">JSpeech
        Grammar Format</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/2000/NOTE-jsml-20000605">JSpeech
        Markup Language</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Sun Microsystems, Inc., on 5 June 2000</td></tr><tr><td rowspan="1" colspan="1">2000-05-08</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/05/">Simple Object
        Access Protocol (SOAP) 1.1 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508">Simple
        Object Access Protocol (SOAP) 1.1</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Ariba, Inc., Commerce One, Inc., Compaq
        Computer Corporation, DevelopMentor, Inc., Hewlett Packard
        Company, International Business Machines Corporation, on
        18 April 2000</td></tr><tr><td rowspan="1" colspan="1">2000-05-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/04/">Voice eXtensible
        Markup Language version 1.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-voicexml-20000505">Voice
        eXtensible Markup Language (VoiceXML™) version 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">AT&amp;T, IBM, Lucent Technologies,
        Motorola, on 17 March 2000</td></tr><tr><td rowspan="1" colspan="1">2000-04-14</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/03/">XML Japanese
        Profile Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-japanese-xml-20000414">XML
        Japanese Profile</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Xerox, Panasonic, Toshiba, GLOCOM,
        Academia Sinica, Alis Technologies, on 28 March 2000</td></tr><tr><td rowspan="1" colspan="1">2000-03-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/02/">XML Document
        Navigation Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-xdnl-20000323">XML Document
        Navigation Language</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">NEC Corporation, on 15 March 2000</td></tr><tr><td rowspan="1" colspan="1">2000-01-13</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/2000/01/">Datatypes for DTDs
        (DT4DTD) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/2000/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/2000/NOTE-dt4dtd-20000113">Datatypes
        for DTDs (DT4DTD) 1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Extensibility, Inc., on 10 November 1999</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y1999" id="y1999">1999</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">1999-11-29</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/11/">Using P3P for
        E-Commerce Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/11/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-P3P-for-ecommerce-19991129">
        Using P3P for E-Commerce</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft, Citibank, N.A. ("Citibank"),
        on 29 November 1999</td></tr><tr><td rowspan="1" colspan="1">1999-08-06</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/10/">NVML
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/10/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-NVML-19990806">NaVigation
        Markup Language (NVML)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Fujitsu Limited, on 6
        August 1999</td></tr><tr><td rowspan="1" colspan="1">1999-07-30</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/15/">Schema for
        Object-oriented XML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/15/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/1999/07/NOTE-SOX-19990730">Schema for
        Object-oriented XML 2.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Veo Systems Inc., on 30 September 1998</td></tr><tr><td rowspan="1" colspan="1">1999-07-10</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/08/">Annotation of Web
        Content for Transcoding Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/08/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/1999/07/NOTE-annot-19990710">Annotation
        of Web Content for Transcoding</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">IBM, on 28 July
        1999</td></tr><tr><td rowspan="1" colspan="1">1999-07-06</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/09/">Form-based Device
        Input and Upload in HTML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/09/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/1999/07/NOTE-device-upload-19990706">Form-based
        Device Input and Upload in HTML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Cisco Systems, on 28
        July 1999</td></tr><tr><td rowspan="1" colspan="1">1999-06-24</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/06/">POIX: Point Of
        Interest eXchange Language Specification
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/1999/06/NOTE-poix-19990624">POIX: Point
        Of Interest eXchange Language Specification</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">ACCESS Co., Ltd., TOYOTA MOTOR
        CORPORATION, Mitsubishi Electric Corporation, on
        24 June 1999</td></tr><tr><td rowspan="1" colspan="1">1999-06-24</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/07/">WAP Binary XML
        Content Format Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/07/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/1999/06/NOTE-wbxml-19990624">WAP Binary
        XML Content Format</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Ericsson, IBM, Motorola, Phone.com, on
        24 June 1999</td></tr><tr><td rowspan="1" colspan="1">1999-06-14</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/05/">XML Forms
        Architecture (XFA) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1999/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/1999/05/XFA/xfa-formcalc-19990614">XFA-FormCalc</a>
                                       </li><li>
                                          <a href="http://www.w3.org/1999/05/XFA/xfa-template-19990614">XFA-Template</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">JetForm Corporation, on 14 June 1999</td></tr><tr><td rowspan="1" colspan="1">1999-02-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/04/">Personalized
        Information Description Language (PIDL)
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1999/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-PIDL-19990209">Personalized
        Information Description Language (PIDL)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">NEC Corporation, on 9
        February 1999</td></tr><tr><td rowspan="1" colspan="1">1999-02-03</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/03/">User Agent
        Authentication Forms Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1999/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-authentform-19990203">User
        Agent Authentication Forms</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Agranat Systems, Inc., Microsoft
        Corporation, on 3 February
        1999</td></tr><tr><td rowspan="1" colspan="1">1999-01-20</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/02/">Universal Commerce
        Language and Protocol (UCLP) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1999/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-uclp-19990120">Universal
        Commerce Language and Protocol (UCLP)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">SAIC/Bellcore, on 20
        January 1999</td></tr><tr><td rowspan="1" colspan="1">1999-01-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1999/01/">Document Definition
        Markup Language (DDML) Specification, Version 1.0
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1999/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1999/NOTE-ddml-19990119">Document
        Definition Markup Language (DDML) Specification, Version
        1.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">GMD, on 19 January
        1999</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y1998" id="y1998">1998</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">1998-12-03</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/20/">DrawML
        Specification Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/20/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-drawml-19981203">DrawML
        Specification</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Excosoft AB, on 3
        December 1998</td></tr><tr><td rowspan="1" colspan="1">1998-11-11</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/19/">Simple Tree
        Transformation Sheets 3 (STTS3) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/19/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-STTS3-19981111">Simple Tree
        Transformation Sheets 3 (STTS3)</a>
	                                </td><td class="fourth" rowspan="1" colspan="1">Electricité de France, on 11 November 1998</td></tr><tr><td rowspan="1" colspan="1">1998-11-04</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/13/">WebCGM Profile -- A
        Web Profile of CGM Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/13/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-WebCGM-19981104">WebCGM
        Profile</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Boeing Company, Council for the Central
        Laboratory of the Research Councils (CCLRC), on
        19 August 1998</td></tr><tr><td rowspan="1" colspan="1">1998-10-26</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/18/">The Information and
        Content Exchange (ICE) Protocol Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/18/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-ice-19981026">The
        Information and Content Exchange (ICE) Protocol</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Adobe Systems Incorporated, CNET
        Incorporated, Microsoft Corporation, Sun Microsystems Inc.,
        Vignette Corporation, on 26 October
        1998</td></tr><tr><td rowspan="1" colspan="1">1998-10-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/17/">HTML Components
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/17/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-HTMLComponents-19981023">HTML
        Components</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, on 23 October 1998</td></tr><tr><td rowspan="1" colspan="1">1998-09-18</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/14/">Timed Interactive
        Multimedia Extensions for HTML (HTML+TIME)
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/14/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-HTMLplusTIME-19980918">Timed
        Interactive Multimedia Extensions for HTML
        (HTML+TIME)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Compaq Computer Corporation, Macromedia
        Inc., Microsoft Corporation, on 18
        September 1998</td></tr><tr><td rowspan="1" colspan="1">1998-09-02</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/16/">Extensible Forms
        Description Language (XFDL) 4.0 Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/16/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-XFDL-19980902">Extensible
        Forms Description Language (XFDL) 4.0</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">UWI Unisoft Wares Inc., on 2 September 1998</td></tr><tr><td rowspan="1" colspan="1">1998-08-27</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/14/">Date and Time
        Formats Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/14/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-datetime-19980827">Date and
        Time Formats</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Reuters, Limited, on 15 September 1997</td></tr><tr><td rowspan="1" colspan="1">1998-08-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/12/">XML-QL: A Query
        Language for XML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/12/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-xml-ql-19980819">XML-QL: A
        Query Language for XML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">AT&amp;T Labs, on 19
        August 1998</td></tr><tr><td rowspan="1" colspan="1">1998-07-31</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/11/">Document Content
        Description for XML (DCD) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/11/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-dcd-19980731">Document
        Content Description for XML (DCD)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">International Business Machines
        Corporation, Microsoft Corporation, on 10 August 1998</td></tr><tr><td rowspan="1" colspan="1">1998-06-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/09/">Signed Document
        Markup Language (SDML) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/09/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-SDML-19980619">Signed
        Document Markup Language (SDML)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Financial Services Technology Consortium
        (FSTC), on 8 June 1998</td></tr><tr><td rowspan="1" colspan="1">1998-06-19</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/10/">Action Sheets: A
        Modular Way of Defining Behavior for XML and HTML
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/10/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-AS-19980619">Action Sheets:
        A Modular Way of Defining Behavior for XML and
        HTML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Netscape Communications, on 19 June 1998</td></tr><tr><td rowspan="1" colspan="1">1998-06-19</td><td rowspan="1" colspan="1">Hyper Graphics Markup Language
        Submission</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-HGML-19980619">Hyper
        Graphics Markup Language (HGML)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Orange, PCSL, PRP (UK), on 29 April 1998</td></tr><tr><td rowspan="1" colspan="1">1998-05-13</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/08/">Vector Markup
        Language (VML) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/08/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-VML-19980513">Vector Markup
        Language (VML)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Autodesk, Inc., Hewlett-Packard Company,
        Macromedia, Inc., Microsoft Corporation, on 13 May 1998</td></tr><tr><td rowspan="1" colspan="1">1998-05-11</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/07/">WebBroker:
        Distributed Object Communication on the Web
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1998/07/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-webbroker-19980511">WebBroker:
        Distributed Object Communication on the Web</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">DataChannel, Inc., on 26 March 1998</td></tr><tr><td rowspan="1" colspan="1">1998-04-10</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/06/">Precision Graphics
        Markup Language (PGML) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/06/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-PGML-19980410">Precision
        Graphics Markup Language (PGML)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Adobe Systems Incorporated,
        International Business Machines Corporation, on
        3 April 1998</td></tr><tr><td rowspan="1" colspan="1">1998-03-31</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/05/">Web Schematics
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/05/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-WebSchematics-19980331">Web
        Schematics on the World Wide Web</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Council for the Central Laboratory of
        the Research Councils (CCLRC), on 22
        March 1998</td></tr><tr><td rowspan="1" colspan="1">1998-02-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/04/">Compact HTML
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/04/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-compactHTML-19980209">Compact
        HTML for Small Information Appliances</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">ACCESS Co., Ltd., Matsushita Electric
        Industrial Co., Ltd., NEC Corporation, on 9 February 1998</td></tr><tr><td rowspan="1" colspan="1">1998-02-03</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/03/">Spice
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/03/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-spice-19980123.html">Adding
        Style and Behavior to XML with a dash of Spice</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard, on 3
        February 1998</td></tr><tr><td rowspan="1" colspan="1">1998-01-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/01/">XML Data Schemas
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/01/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-XML-data-0105">XML
        Data</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, ArborText, Inc.,
        DataChannel, Inso Corporation, on 5
        January 1998</td></tr><tr><td rowspan="1" colspan="1">1998-01-05</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1998/02/">HTML Threading
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1998/02/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/1998/NOTE-HTMLThreading-0105">HTML
        Threading: Conventions for use of HTML in email</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, Lotus Development
        Corporation, Qualcomm Corporation, on 5
        January 1998</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y1997" id="y1997">1997</a>
                     </h3>

                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">1997-12-30</td><td class="secondcol" rowspan="1" colspan="1">User Agent Attributes for Reporting
        Client Properties Submission</td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-agent-attributes-971230">Client-Specific
        Web Services by Using User Agent Attributes</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">ACCESS CO.,LTD, on 26
        October 1997</td></tr><tr><td rowspan="1" colspan="1">1997-10-23</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/18/">PICS Extension for
        HTTP Cookies Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-PICS-cookie-extension-971023.HTML">
        PICS Extension for HTTP Cookies</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Engage Technologies, on 23 October 1997</td></tr><tr><td rowspan="1" colspan="1">1997-10-17</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/16/">Simple Tree
        Transformation Sheets 2 Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-stts2-971017">Simple Tree
        Transformation Sheets 2</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Electricité de France, on 17 October 1997</td></tr><tr><td rowspan="1" colspan="1">1997-10-17</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/17/">Internet Privacy
        Working Group Privacy Practices for the Web
        Submission</a>
                                    <br />
                                    <span class="comment">(<a href="/Submission/1997/17/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-IPWG-Practices-971017">Internet
        Privacy Working Group Privacy Practices for the
        Web</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Center for Democracy and Technology
        (CDT), on 17 October 1997</td></tr><tr><td rowspan="1" colspan="1">1997-09-22</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/15/">Web Interface
        Definition Language [WIDL] Submission</a>
                                    <span class="comment">(<a href="/Submission/1997/15/comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-widl-970922">Web Interface
        Definition Language (WIDL)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">webMethods, Inc., on 22 September 1997</td></tr><tr><td rowspan="1" colspan="1">1997-09-01</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/11/">Generic Diff Format
        Specification (GDIFF) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/11/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-gdiff-19970901">Generic Diff
        Format Specification</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Marimba Incorporated, on 25 August 1997</td></tr><tr><td rowspan="1" colspan="1">1997-08-27</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/13/">A Proposal for
        eXtensible Style Language (XSL) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/13/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-XSL-970910">A Proposal for
        XSL</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corp., ArborText, Inso Corp.,
        on 27 August 1997</td></tr><tr><td rowspan="1" colspan="1">1997-08-25</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/10/">HTTP Distribution
        and Replication Protocol (DRP) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/10/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-drp-19970825">The HTTP
        Distribution and Replication Protocol</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Marimba, Inc., Netscape Communications
        Corp., Novell, Inc., Sun Microsystems, on 25 August 1997</td></tr><tr><td rowspan="1" colspan="1">1997-08-13</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/9/">The Open Software
        Description Format (OSD) Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/9/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-OSD">The Open Software
        Description Format (OSD)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Marimba Incorporated, Microsoft
        Corporation, on 13 August
        1997</td></tr><tr><td rowspan="1" colspan="1">1997-06-24</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/8/">Meta Content
        Framework Using XML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/8/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-MCF-XML-970624">Meta Content
        Framework using XML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Netscape Communications Corporation, on
        6 June 1997</td></tr><tr><td rowspan="1" colspan="1">1997-06-15</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/12/">Navigation through
        LINK elements in HTML Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/12/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-link-970826">Navigation through
        LINK elements in HTML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Electricité de France, on 28 July 1997</td></tr><tr><td rowspan="1" colspan="1">1997-06-02</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/6/">OPS - Open Profiling
        Specification Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1997/7/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/NOTE-OPS-FrameWork">Proposal for an
        Open Profiling Standard</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/NOTE-OPS-OverHTTP">Implementation of
        OPS Over HTTP</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/NOTE-OPS-StandardPractices">Standard
        Practices for OPS Systems</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Netscape Communications Corporation, on
        2 June 1997</td></tr><tr><td rowspan="1" colspan="1">1997-06-02</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/7/">Web Privacy -
        Privacy and Profiling on the Web Submission</a>
                                    <br />
                                    <span class="comment">(<a href="http://www.w3.org/Submission/1997/7/Comment">W3C Staff
        Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-Web-privacy">Privacy and
        Profiling on the Web</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, on 2 June 1997</td></tr><tr><td rowspan="1" colspan="1">1997-05-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/5/">HDML - Handheld
        Device Markup Language Submission</a>
                                    <br />
                                    <span class="comment">(<a href="1997/5/Comment.html">W3C
        Staff Comment</a>)</span>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/TR/NOTE-Submission-HDML">Proposal for a
        Handheld Device Markup Language</a>
                                       </li><li>
                                          <a href="http://www.w3.org/TR/NOTE-Submission-HDML-spec">Handheld
        Device Markup Language Specification</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Unwired Planet, Alcatel Alsthom
        Recherche, AT&amp;T, GEMPLUS, Mitsubishi Electric
        Corporation, Sun Microsystems Corporation, Tandem Computers
        Inc., on 9 May 1997</td></tr><tr><td rowspan="1" colspan="1">1997-03-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/2/">Channel Definition
        Format [CDF] Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-CDFsubmit">Channel Definition
        Format (CDF)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, on 9 March 1997</td></tr><tr><td rowspan="1" colspan="1">1997-03-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/3/">XML WebCollections
        Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-XMLsubmit">Web Collections using
        XML</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, on 9 March 1997</td></tr><tr><td rowspan="1" colspan="1">1997-01-06</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1997/1/">HTML Object
        Model/Dynamic HTML Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <ul><li>
                                          <a href="http://www.w3.org/Member/9702/wd-omOverview-970106.htm">Dynamic
        HTML Overview</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Member/9702/WD-OMEvent-970106.htm">Structured
        Document Event Model</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Member/9702/wd-omstructure-970106">Structured
        Document Navigation Model</a>
                                       </li><li>
                                          <a href="http://www.w3.org/Member/9702/wd-omCSS-961212.htm">Cascading
        Style Sheets Object Model</a>
                                       </li></ul>                                 
                                 </td><td class="fourth" rowspan="1" colspan="1">Microsoft Corporation, on 8 January 1997</td></tr></tbody></table>
                     </div>

                     <h3>
                        <a name="y1996" id="y1996">1996</a>
                     </h3>
                     <div class="data spec">
                        <table summary=""><thead><tr><th rowspan="1" colspan="1">Published</th><th rowspan="1" colspan="1">Submission / Comment</th><th rowspan="1" colspan="1">Documents</th><th rowspan="1" colspan="1">Submitters</th></tr></thead><tbody><tr><td class="firstcol" rowspan="1" colspan="1">1996-11-08</td><td class="secondcol" rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1996/4/">Internet Imaging
        Protocol Submission</a>
                                 </td><td class="thirdcol" rowspan="1" colspan="1">
                                    <a href="http://image.hp.com/htdocs_sys/iip.html">Internet Imaging
        Protocol</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard Company, Live Picture
        Inc., Eastman Kodak Company, on 8
        November 1996</td></tr><tr><td rowspan="1" colspan="1">1996-09-09</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1996/3/">Web Printing
        Extensions Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/MarkUp/Group/9609/Web~Printing~Extensions.htm">
        Web Printing Extensions</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Hewlett-Packard Company, Microsoft
        Corporation, on 9 September
        1996</td></tr><tr><td rowspan="1" colspan="1">1996-08-22</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1996/1/">JavaScript-Based
        Style Sheets [JSSS] Submission</a>
                                 </td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/Submission/1996/1/WD-jsss-960822">JavaScript-Based
        Style Sheets</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Netscape Communications Corporation, on
        7 October 1996</td></tr><tr><td rowspan="1" colspan="1">1996-07-24</td><td rowspan="1" colspan="1">RDM Submission</td><td rowspan="1" colspan="1">
                                    <a href="http://www.w3.org/TR/NOTE-rdm">Resource Description
        Messages (RDM)</a>
                                 </td><td class="fourth" rowspan="1" colspan="1">Netscape Corporation, on 26 July 1996</td></tr></tbody></table>
                     </div>

                     <h2 id="about">About W3C Member Submissions</h2>

                     <p>The Member Submission process allows Members to propose technology
or other ideas for consideration by the Team. After review, the Team
<span class="rfc2119">MAY</span> publish the material at the W3C Web
site.</p>

                     <p>The acknowledgment of a Submission request does not imply that any
action will be taken by W3C. It does not imply an endorsement by W3C,
including the <a href="../People/">W3C Team</a>, any of
the <a href="../Consortium/Member/List">Members</a>, or any of the
Host Institutes. Learn more about the <a href="/Consortium/Process/submission#Submission">Member Submission
process</a>.</p>

                  </div>
               </div>
            </div>
         </div>
         
         
         
      </div><div id="w3c_footer">
         <div id="w3c_footer-inner">
            <h2 class="offscreen">Footer Navigation</h2>
            <div class="w3c_footer-nav">
               <h3>Navigation</h3>
               <ul class="footer_top_nav"><li>
                     <a href="/">Home</a>
                  </li><li>
                     <a href="/standards/">Standards</a>
                  </li><li>
                     <a href="/participate/">Participate</a>
                  </li><li>
                     <a href="/Consortium/membership">Membership</a>
                  </li><li class="last-item">
                     <a href="/Consortium/">About W3C</a>
                  </li></ul>
            </div>
            <div class="w3c_footer-nav">
               <h3>Contact W3C</h3>
               <ul class="footer_bottom_nav"><li>
                     <a href="/Consortium/contact">Contact</a>
                  </li><li>
                     <a accesskey="0" href="/Help/">Help and FAQ</a>
                  </li><li>
                     <a href="/Consortium/sponsor/">Sponsor / Donate</a>
                  </li><li>
                     <a href="/Consortium/siteindex">Site Map</a>
                  </li><li>
                     <address id="w3c_signature">
                        <a href="mailto:site-comments@w3.org">Feedback</a> (<a href="http://lists.w3.org/Archives/Public/site-comments/">archive</a>)</address>
                  </li></ul>
            </div>
            <div class="w3c_footer-nav">
               <h3>W3C Updates</h3>
               <ul class="footer_follow_nav"><li>
                     <a href="http://twitter.com/W3C" title="Follow W3C on Twitter">
                        <img src="/2008/site/images/twitter-bird" alt="Twitter" width="78" height="83" class="social-icon" />
                     </a>
                     <a href="http://identi.ca/w3c" title="See W3C on Identica">
                        <img src="/2008/site/images/identica-logo" alt="Identica" width="91" height="83" class="social-icon" />
                     </a>
                  </li></ul>
            </div>
            <p class="copyright">Copyright © 2012 W3C <sup>®</sup> (<a href="http://www.csail.mit.edu/">
                  <acronym title="Massachusetts Institute of Technology">MIT</acronym>
               </a>, <a href="http://www.ercim.org/">
                  <acronym title="European Research Consortium for Informatics and Mathematics"> ERCIM</acronym>
               </a>, <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies apply</a>.</p>
         </div>
      </div><!-- Generated from data/scripts.php, ../../smarty/{scripts.tpl} --><!-- At the bottom for performance reasons --><div id="w3c_scripts">
         <script type="text/javascript" src="/2008/site/js/main" xml:space="preserve"><!-- --></script>
      </div></body></html>