registering-mediatype 45.6 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
<?xml version="1.0" encoding="UTF-8"?>
<!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-us" lang="en-us">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>How to Register a Media Type for a W3C Specification</title>
  <link rel="stylesheet" href="/StyleSheets/generic-base-1.css" type="text/css"
  />
  <link rel="stylesheet" type="text/css" href="/Guide/guide2006.css" />
  <link rel="shortcut icon" href="/Icons/WWW/Literature.gif" />
  <style type="text/css">
     tr:nth-child(odd) { background: #ddd }
     table { border-collapse: collapse }
     th, td { padding: .5ex;  border: 1px solid black; }</style>
</head>

<body>

<div id="header">
<span class="logo"><a href="/"><img src="/Icons/WWW/w3c_home_nb" alt="W3C"
height="48" width="72" /></a></span> 

<div class="breadcrumb">
<a href="/Member/">Member</a><a href="/Guide/">The Art of Consensus</a>


<h1>Register an Internet Media Type for a W3C Spec</h1>
</div>

<p class="baseline">This <strong>Guidebook</strong> is the collected wisdom of
the W3C Group Chairs and other collaborators.</p>
</div>

<div class="toc">
<h4>Also On This Page →</h4>
<ul>
  <li style="display: none"><a href="#Status">Status</a></li>
  <li><a href="#Planned">New Procedure</a></li>
  <li><a href="#Old">Old Procedure</a></li>
  <li><a href="#RegStatus">Registration Status</a></li>
  <li><a href="#History">History</a></li>
</ul>
</div>

<div class="toolbox box" style="margin-bottom: 1em">
<h4>Publication Policies</h4>
<ul>
  <li><a href="/Guide/pubrules">Technical Report Publication Policy</a></li>
  <li><a href="/Guide/pubrules-about">About pubrules</a></li>
  <li><a href="/2005/05/tr-versions">Version Management in W3C Technical
    Reports</a></li>
  <li><a href="/2005/07/13-pubrules-disclosure">Guidelines for linking to
    disclosure pages</a></li>
  <li><a href="/2005/07/13-nsuri">URIs for W3C Namespaces</a></li>
  <li>How to Register a Media Type for a W3C Specification</li>
  <li><a href="/2005/04/xpointer-policy">XPointer Scheme Name Registry
    Policy</a></li>
</ul>

<h4>Resources</h4>
<ul>
  <li><a href="/Guide/transitions">Organize Recommendation Track
  Transition</a></li>
  <li><a href="/Guide/transitions-about">Details of Rec Track
  transitions</a></li>
  <li><a
    href="http://www.w3.org/2004/02/Process-20040205/tr.html#Reports">Recommendation
    Track Process</a></li>
  <li><a href="/2003/Editors/">W3C Editors' Home Page</a></li>
  <li><a href="/2001/06/manual/">Manual of Style</a></li>
  <li><a href="/2005/03/28-editor-style.html">Style Guidelines for
    Group-Internal Drafts</a></li>
</ul>

<h4>Tools</h4>
<ul>
  <li><a href="http://validator.w3.org/checklink">Link checker</a></li>
  <li><a href="http://validator.w3.org/">HTML Validator</a></li>
  <li><a href="http://jigsaw.w3.org/css-validator/">CSS Validator</a></li>
</ul>
</div>

<p>All formats defined by W3C Recommendations are of general interest to the
Internet Community and are therefore registered in the standards tree (formerly
IETF tree), which requires approval by the IESG.</p>

<h2 id="Status">Status of This Document</h2>

<p>This document explains the procedures available to register an Internet
Media Type for a format defined by a W3C Recommendation in the <a
href="http://www.iana.org/assignments/media-types/">IANA registry</a>. It is
being maintained by <a href="mailto:plh@w3.org">Philippe Le Hégaret</a> who,
together with Thomas Roessler, is serving as IETF/W3C liaison.</p>

<p>A new process, <a href="http://tools.ietf.org/html/bcp13">BCP 13</a>, for
registering Mime media types is defined in <a
href="http://www.ietf.org/rfc/rfc4288.txt">Media Type Specifications and
Registration Procedures</a> together with <a
href="http://www.ietf.org/rfc/rfc4289.txt">Multipurpose Internet Mail
Extensions (MIME) Part Four: Registration Procedures</a>, which covers IANA
registration procedures for MIME external body access types and
content-transfer-encodings. While the first document hasn’t been formally
approved, it is our understanding that this is the process followed by the IETF
and the IESG.</p>

<p>The TAG refers to this document in its April 2004 Finding <a
href="/2001/tag/2004/0430-mime">Internet Media Type registration, consistency
of use</a>:</p>

<blockquote style="width: 50%" cite="http://www.w3.org/2001/tag/2004/0430-mime">
  <p>W3C Working Groups engaged in defining a format follow <cite>How to
  Register a Media Type with IANA</cite>to register an Internet Media Type
  (defined in <a href="http://www.ietf.org/rfc/rfc2046.txt">[RFC2046]</a>) for
  the format.</p>
</blockquote>

<h2><a name="Planned" id="Planned">1. New Procedure: Registration template in
spec, no RFC</a></h2>

<p>This procedure has been written in preparation for approval of <a
href="http://www.ietf.org/rfc/rfc4288.txt">Media Type Specifications and
Registration Procedures</a> and publication as an RFC. While a few details need
to be worked out in cooperation with the IETF, the expected time for this to
happen seems to be short enough to be able to recommend that WGs that can start
at the start of this process should actually start using this process.</p>

<p><em>Note:</em> Once a media type has been published by the IANA, the owner
may request a change to its definition. The same procedure that would be
appropriate for the original registration request is used to process a change
request. See also <a href="http://tools.ietf.org/html/bcp13#section-9">Section
9, Change Procedures</a> in BCP 13.</p>
<ol>
  <li>Draft a proposal for the Media Type registration as a normative part of
    your specification, following the instructions in <a
    href="http://www.ietf.org/rfc/rfc4288.txt">Media Type Specifications and
    Registration Procedures</a>, section 4, and the template in section 10.
    Make sure that this part of the specification is readable on its own,
    without the context of the specification. If you are using XML, see <a
    href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a> (and the work on
    RFC3023bis) requirements and section <a
    href="http://www.w3.org/TR/webarch/#xml-media-types">4.5.7 Media types for
    XML</a> of the <a href="http://www.w3.org/TR/webarch/">World Wide Web
    Architecture</a> as well. In the introduction to the relevant section, say
    that this registration is for community review and will be submitted to the
    IESG for review, approval, and registration with IANA.</li>
  <li>When doing the W3C <a href="http://www.w3.org/Guide/LastCall">Last Call
    announcement</a>: Send an email to the mailing list <a
    href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a> asking for
    comments on the Media Type section of your specification: 
    <ul>
      <li>Include a pointer to and a plaintext copy (not just an attachment) of
        the Media Type registration section in your email to <a
        href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a>.</li>
      <li>Make sure you address and reply to comments and questions on <a
        href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a>. If you
        change the registration in your specification as a result of comments
        on ietf-type (or for any other reason), send the revised version to <a
        href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a>.</li>
      <li>If you are registering an XML-based format, you may want to cc: <a
        href="mailto:ietf-xml-mime@imc.org">ietf-xml-mime@imc.org</a>.</li>
      <li>Note that you need to be <a
        href="https://www.ietf.org/mailman/listinfo/ietf-types">subscribed to
        the list</a> to post to it.</li>
      <li>To make it easier for your WG to track comments on the Media Type
        section, you may cross-post the comments list for your
      specification.</li>
    </ul>
  </li>
  <li>As part of the preparation of moving out of Last Call (to W3C Candidate
    Recommendation or beyond): 
    <ul>
      <li>Change the introduction to the registration information to say that
        it is being submitted to the IESG for review, approval, and
        registration with IANA (see also <a
        href="http://www3.tools.ietf.org/group/iesg/trac/wiki/MediaTypes">MediaTypes
        - IESG</a>).</li>
      <li>Send a request to <a href="mailto:tlr@w3.org">Thomas Roessler</a> and
        <a href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF liaisons,
        with the following information: 
        <ol>
          <li>Statement asking us to request review and approval by the IESG,
            and registration by IANA (so that we know what this is about).</li>
          <li>Expected date of state transition (publication in TR), and next
            state (CR or PR) (so that we know when we can send this to the
            IESG, and don’t loose time).</li>
          <li>Pointer to registration template at the place it will be
            published (dated and undated), so that we can tell the IESG what to
            review.</li>
          <li>Pointer to Last Call email to <a
            href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a> (<a
            href="http://www.ietf.org/mail-archive/web/ietf-types/">archives</a>)
            and following discussion/comment resolution (relevant threads in
            email archive and/or relevant part of Last Call resolution table),
            so that we can show to the IESG that this has received appropriate
            community review.</li>
        </ol>
        <p>If any of the above information changes, send an update.</p>
      </li>
    </ul>
  </li>
  <li>As part of the preparation for later state transitions (CR-&gt;PR,
    PR-&gt;REC): 
    <ol>
      <li>Check on progress of registration, first directly at <a
        href="http://www.iana.org/assignments/media-types/">IANA</a>, and if
        your type is not yet registered there, contact <a
        href="mailto:tlr@w3.org">Thomas Roessler</a> and <a
        href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF liaisons, who
        will check with the IESG.</li>
      <li>Update the introduction to the registration information in your
        specification to say either “registered with IANA at…” or
        “under review by the IESG…”, as applicable.</li>
      <li>If your registration points to a dated version, request update of the
        registration via <a href="mailto:tlr@w3.org">Thomas Roessler</a> and <a
        href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF liaisons.</li>
    </ol>
  </li>
</ol>

<h2><a name="Current" id="Current">2. Old Procedure: Registration with an
RFC</a></h2>

<p>This is the plain old way to register a Media Type by producing an RFC. This
is recommended for cases where the specification does not contain the
registration information, and updating the specification just for adding the
registration information does not seem feasible.</p>
<ol>
  <li>Create and submit an Internet-Draft containing a proposal for the Media
    Type registration, following the instructions in <a
    href="http://www.ietf.org/rfc/rfc2048.txt">RFC2048</a>, section 2.2. If you
    are using XML, see <a
    href="http://www.ietf.org/rfc/rfc3023.txt">RFC3023</a> requirements as
    well. 
    <ol>
      <li>See <a href="http://www.ietf.org/ietf/1id-guidelines.txt">Guidelines
        to Authors of Internet-Drafts</a>; for editing the draft, we recommend
        <a href="http://xml.resource.org/">XML2RFC</a>.</li>
      <li>An online <a
        href="http://ietf.levkowetz.com/tools/idnits/idnits.pyht">validity
        checker</a> is available.</li>
      <li>Submit the Internet-Draft for publication at <a
        href="http://www.ietf.org/internet-drafts/">http://www.ietf.org/internet-drafts/</a>
        by sending it to the Internet-Drafts editor at <a
        href="mailto:internet-drafts@ietf.org">internet-drafts@ietf.org</a>.</li>
      <li>Internet-Drafts expire after 6 months; if needed, resubmit the
      draft.</li>
    </ol>
  </li>
  <li>Send an email to the mailing list <a
    href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a> asking for
    comments on your draft: 
    <ul>
      <li>Include a plaintext copy of the draft in your email to <a
        href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a> (i.e. not an
        attachment).</li>
      <li>Make sure you address and reply to comments and questions on <a
        href="mailto:ietf-types@ietf.org">ietf-types@ietf.org</a>. Create and
        submit an updated Internet-Draft if needed.</li>
      <li>If you are registering an XML-based format, you may want to cc: <a
        href="mailto:ietf-xml-mime@imc.org">ietf-xml-mime@imc.org</a>.</li>
      <li>Note that you need to be <a
        href="https://www.ietf.org/mailman/listinfo/ietf-types">subscribed to
        the list</a> to post to it.</li>
      <li><a href="http://www.ietf.org/rfc/rfc2048.txt">RFC2048</a> section
        “2.3.1. Present the Media Type to the Community for Review”
        requires the information to be available for a two week review
      period.</li>
    </ul>
  </li>
  <li>Once all issues raised have been addressed in a published Internet-Draft,
    send an email to the <a href="mailto:iesg@iana.org">IESG</a> to request
    IESG approval for your Media Type registration (<a
    href="http://lists.w3.org/Archives/Team/w3t-archive/2005May/0136.html">example</a>),
    publication of the Internet-Draft as an informational RFC, and registration
    of the Media Type with IANA. 
    <ul>
      <li>cc: <a href="mailto:tlr@w3.org">Thomas Roessler</a> and <a
        href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF liaisons, on
        your email.</li>
      <li>Follow the progress of your Internet-Draft on the <a
        href="https://datatracker.ietf.org/public/pidtracker.cgi">IETF ID
        Tracker</a>.</li>
      <li>Respond promptly to requests from the IESG, in particular from the
        Area Director shepherding your Internet-Draft.</li>
      <li>If necessary, update your Internet-Draft.</li>
      <li>In case of questions or problems, contact <a
        href="mailto:tlr@w3.org">Thomas Roessler</a> and <a
        href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF liaisons,
        and/or the Area Director shepherding your Internet-Draft.</li>
    </ul>
  </li>
</ol>

<h2><a name="RegStatus" id="RegStatus">3. Status of Internet Media type
registrations</a></h2>

<p>(specs/entries missing: p3p?, xml schema?, cc/pp? xkms?)</p>

<table>
  <tbody>
    <tr>
      <th>Spec</th>
      <th>Spec Status</th>
      <th>Info in Spec</th>
      <th>Type (proposed)</th>
      <th>Registration Status</th>
      <th>Remarks</th>
      <th>Plans</th>
      <th>Contact</th>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-CSS2">Cascading Style Sheets, level
        2 (CSS2)</a></td>
      <td><a href="http://www.w3.org/TR/1998/REC-CSS2-19980512/">REC</a></td>
      <td><a href="http://www.w3.org/TR/REC-CSS2/conform.html#text-css">section
        3.4</a></td>
      <td><code>text/css</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc2318.txt">RFC 2318</a></td>
      <td>use CSS3 to move info to spec?</td>
      <td><a href="mailto:bbos@w3.org">Bert Bos</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/emma/">Extensible MultiModal Annotation
        markup language (EMMA)</a></td>
      <td><a href="/TR/2008/PR-emma-20081215/">PR</a></td>
      <td><a href="http://www.w3.org/TR/emma/#media-type-registration">B.1
        Registration of MIME media type application/emma+xml</a></td>
      <td><code>application/emma+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td></td>
      <td>-</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/html4">HTML 4.01</a></td>
      <td><a href="http://www.w3.org/TR/1999/REC-html401-19991224/">REC</a></td>
      <td>-</td>
      <td><code>text/html</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc2854.txt">RFC 2854</a> <br />
        see also <cite><a href="http://www.w3.org/TR/xhtml-media-types">XHTML
        Media Types</a></cite></td>
      <td><a href="http://www.w3.org/TR/html5/iana.html#text-html">template in
        HTML 5</a></td>
      <td><a href="mailto:mike@w3.org">Mike Smith</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/html5">HTML5</a></td>
      <td><a href="http://www.w3.org/TR/html5">WD</a></td>
      <td><a
        href="http://www.w3.org/TR/html5/iana.html#text-html-sandboxed">12.2:
        full template</a></td>
      <td>(text/html-sandboxed)</td>
      <td></td>
      <td></td>
      <td>follow new process</td>
      <td><a href="mailto:mike@w3.org">Mike Smith</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/html5">HTML5</a></td>
      <td><a href="http://www.w3.org/TR/html5">WD</a></td>
      <td><a
        href="http://www.w3.org/TR/html5/iana.html#text-cache-manifest">12.4:
        full template</a></td>
      <td>(text/cache-manifest)</td>
      <td></td>
      <td></td>
      <td>follow new process</td>
      <td><a href="mailto:mike@w3.org">Mike Smith</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xhtml1">The Extensible HyperText Markup
        Language (XHTML 1.0)</a></td>
      <td><a href="http://www.w3.org/TR/2002/REC-xhtml1-20020801">REC</a></td>
      <td><a href="http://www.w3.org/TR/xhtml1/#media">Section 5.1</a></td>
      <td><code>application/xhtml+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3236.txt">RFC 3236</a> <br />
        see also <cite><a href="http://www.w3.org/TR/xhtml-media-types">XHTML
        Media Types</a></cite></td>
      <td><a
        href="http://www.w3.org/TR/html5/iana.html#application-xhtml-xml">template
        in HTML 5</a></td>
      <td><a href="mailto:mike@w3.org">Mike Smith</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/InkML">Ink Markup Language
      (InkML)</a></td>
      <td><a href="/TR/2011/CR-InkML-20110111/">CR</a></td>
      <td><a
        href="http://www.w3.org/TR/2006/WD-InkML-20061023/#mime-definition">App.
        B: full template</a></td>
      <td>(application/inkml+xml)</td>
      <td>-</td>
      <td><a
        href="http://www.alvestrand.no/pipermail/ietf-types/2008-January/001989.html">Submitted
        to IESG for approval</a></td>
      <td>template in spec =&gt; new registration process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/ttaf1-dfxp/">Timed Text (TT) Authoring
        Format</a></td>
      <td><a href="/TR/2010/REC-ttaf1-dfxp-20101118/">REC</a></td>
      <td><a
        href="/TR/2010/REC-ttaf1-dfxp-20101118/#media-type-registration">App C:
        full template</a></td>
      <td>(application/ttml+xml)</td>
      <td>-</td>
      <td>Submitted to IESG for approval</td>
      <td>Check in with IESG?</td>
      <td>Timed Text Working Group (public-tt@w3.org)</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/MathML3/">Mathematical Markup Language
        (MathML 3.0)</a></td>
      <td><a href="/TR/2010/REC-MathML3-20101021/">REC</a></td>
      <td><a
        href="/TR/2010/REC-MathML3-20101021/appendixb.html#media-types-mathml">Appendix
        B.2: full template</a></td>
      <td><code>application/mathml+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Paul Libbrecht (member-math@w3.org)</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/MathML3/">Mathematical Markup Language
        (MathML 3.0)</a></td>
      <td><a href="/TR/2010/REC-MathML3-20101021/">REC</a></td>
      <td><a
        href="/TR/2010/REC-MathML3-20101021/appendixb.html#media-types-mathml-p">Appendix
        B.3: full template</a></td>
      <td><code>application/mathml-presentation+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Paul Libbrecht (member-math@w3.org)</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/MathML3/">Mathematical Markup Language
        (MathML 3.0)</a></td>
      <td><a href="/TR/2010/REC-MathML3-20101021/">REC</a></td>
      <td><a
        href="/TR/2010/REC-MathML3-20101021/appendixb.html#media-types-mathml-c">Appendix
        B.4: full template</a></td>
      <td><code>application/mathml-content+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Paul Libbrecht (member-math@w3.org)</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/powder-dr/">Protocol for Web
        Description Resources (POWDER): Description Resources</a> </td>
      <td><a href="http://www.w3.org/TR/2009/REC-powder-dr-20090901/">REC</a>
      </td>
      <td><a href="http://www.w3.org/TR/powder-dr/#appB">Appendix B</a></td>
      <td>(application/powder+xml)</td>
      <td></td>
      <td><p>Need to address comments from IESG. Full template need to be in
        errata. </p>
      </td>
      <td>Check in plh</td>
      <td>Phil Archer</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/powder-dr/">Protocol for Web
        Description Resources (POWDER): Description Resources</a></td>
      <td><a
      href="http://www.w3.org/TR/2009/REC-powder-dr-20090901/">REC</a></td>
      <td><a href="http://www.w3.org/TR/powder-dr/#appC">Appendix C</a></td>
      <td>(application/powder-s+xml)</td>
      <td></td>
      <td>Need to address comments from IESG. Full template need to be in
      errata</td>
      <td>Check in with plh</td>
      <td>Phil Archer</td>
    </tr>
    <tr>
      <td><p><a href="http://www.w3.org/TR/PNG/">Portable Network Graphics
        (PNG)</a></p>
      </td>
      <td><a href="http://www.w3.org/TR/2003/REC-PNG-20031110">REC</a></td>
      <td><a href="http://www.w3.org/TR/PNG/#A-Conventions">Annex A</a></td>
      <td><code>image/png</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/image/">registered</a></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/image/png">registration
        by email</a></td>
      <td>-</td>
      <td>Glenn Randers-Pehrson</td>
    </tr>
    <tr>
      <td><p><a href="http://www.w3.org/TR/voicexml20/" name="voicexml"
        id="voicexml">Voice Extensible Markup Language (VoiceXML 2.0)</a></p>
      </td>
      <td><a href="/TR/2004/REC-voicexml20-20040316/">REC</a></td>
      <td><p><a
        href="http://www.w3.org/TR/2004/REC-voicexml20-20040316/#dmlAMediaType">App.
        N: no template</a></p>
      </td>
      <td><code>application/voicexml+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="/TR/pronunciation-lexicon/">Pronunciation Lexicon
        Specification</a></td>
      <td><a href="/TR/2008/REC-pronunciation-lexicon-20081014/">REC</a></td>
      <td>-</td>
      <td><code>application/pls+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/ccxml/">Voice Browser Call Control:
        CCXML Version 1.0</a></td>
      <td>LC</td>
      <td><a href="http://www.w3.org/TR/ccxml/#ccxml-mime-definition">Appendix
        I, full template</a>?!</td>
      <td><code>application/ccxml+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/speech-grammar">Speech Recognition
        Grammar Specification (SGRS)</a> abnf</td>
      <td><a href="/TR/2004/REC-speech-grammar-20040316/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2004/REC-speech-grammar-20040316/#AppG">App.
        G: no template</a></td>
      <td><code>application/srgs</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/speech-grammar">Speech Recognition
        Grammar Specification (SRGS)</a> xml</td>
      <td><a href="/TR/2004/REC-speech-grammar-20040316/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2004/REC-speech-grammar-20040316/#AppG">App.
        G: no template</a></td>
      <td><code>application/srgs+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/speech-synthesis/" name="ssml"
        id="ssml">Speech Synthesis Markup Language (SSML 1.0)</a></td>
      <td><a href="/TR/2004/REC-speech-synthesis-20040907/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2003/CR-speech-synthesis-20031218/#AppC">App.
        E: no template</a></td>
      <td><code>application/ssml+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc4267.txt">RFC4267</a></td>
      <td>use old process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/scxml/">State Chart XML (SCXML): State
        Machine Notation for Control Abstraction 1.0</a></td>
      <td><a href="/TR/2008/WD-scxml-20080516/">WD</a></td>
      <td>-</td>
      <td></td>
      <td>-</td>
      <td></td>
      <td>follow new process</td>
      <td>Kazuyuki Ashimura</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/smil20">Synchronized Multimedia
        Integration Language (SMIL 2.0)</a></td>
      <td><a href="http://www.w3.org/TR/2005/REC-SMIL2-20050107/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/SMIL20/smil-modules.html#smilModulesNSSMIL20MimeType">Section
        2.3.1: no template</a></td>
      <td><del><code>application/smil</code></del></td>
      <td>-</td>
      <td><strong>obsoleted</strong> in SMIL 2.1 and RFC 4536</td>
      <td>-</td>
      <td><a href="mailto:ph@w3.org">Philipp Hoschka</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/smil2">Synchronized Multimedia
        Integration Language (SMIL 2.1)</a></td>
      <td><a href="http://www.w3.org/TR/2005/REC-SMIL2-20051213/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/SMIL2/smil-modules.html#smilModulesNSSMIL21MimeType">Section
        2.4.1: no template</a></td>
      <td><code>application/smil+xml</code></td>
      <td>registered</td>
      <td><a href="http://www.ietf.org/rfc/rfc4536.txt">RFC 4536</a></td>
      <td>-</td>
      <td><a href="mailto:ph@w3.org">Philipp Hoschka</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/SVG11/" name="svg" id="svg">Scalable
        Vector Graphics (SVG) 1.1 (Second Edition)</a></td>
      <td><a href="/TR/2010/WD-SVG11-20100622/">LC</a></td>
      <td><a href="http://www.w3.org/TR/SVG11/mimereg.html">App. P: full
        template</a></td>
      <td><code>image/svg+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/image/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Chris Lilley, Doug Schepers (<a
        href="mailto:member-svg-media-type@w3.org">member-svg-media-type@w3.org</a>).</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/soap12">SOAP 1.2</a></td>
      <td><a
      href="http://www.w3.org/TR/2003/REC-soap12-part2-20030624/">REC</a></td>
      <td>(Part2, <a href="http://www.w3.org/TR/soap12-part2/#ietf-draft">App.
        A, full template</a>)</td>
      <td><code>application/soap+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3902.txt">RFC 3902</a></td>
      <td>-</td>
      <td>Mark Nottingham</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xop10/">XML-binary Optimized
        Packaging</a></td>
      <td><a href="http://www.w3.org/TR/2005/REC-xop10-20050125/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2005/REC-xop10-20050125/#identifying_xop_documents">Section
        5, full template</a></td>
      <td><code>application/xop+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/xop+xml">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Mark Nottingham</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/wsdl20" name="WSDL" id="WSDL">Web
        Services Description Language (WSDL 2.0)</a></td>
      <td><a href="http://www.w3.org/TR/2007/REC-wsdl20-20070626">REC</a></td>
      <td><a href="http://www.w3.org/TR/wsdl20/#ietf-draft">App. A: full
        template</a></td>
      <td><code>application/wsdl+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/wsdl+xml">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td><a href="../../People/LeHegaret/">Philippe Le Hégaret</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/ws-policy/" name="WS-Policy"
        id="WS-CDL">Web Services Policy 1.5</a></td>
      <td><a
      href="http://www.w3.org/TR/2007/REC-ws-policy-20070904">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2006/WD-ws-policy-20061117/#media-type">Appendix
        A, full template</a></td>
      <td><code>application/wspolicy+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/wspolicy+xml">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td><a href="mailto:fsasaki@w3.org">Felix Sasaki</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/widgets/">Widget Packaging and
        Configuration</a></td>
      <td><a href="http://www.w3.org/TR/2009/CR-widgets-20091201/">CR</a></td>
      <td><a
        href="http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw">Appendix,
        full template</a></td>
      <td><code>application/widget</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Steven Pemberton, member-webapps@w3.org</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language
        (XML)</a></td>
      <td><a href="http://www.w3.org/TR/2008/REC-xml-20081126/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/REC-xml/#sec-guessing-with-ext-info">App.
        F.2</a></td>
      <td><code>application/xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a></td>
      <td>Waiting for an update</td>
      <td>Chris Lilley</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language
        (XML)</a></td>
      <td><a href="http://www.w3.org/TR/2008/REC-xml-20081126/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/REC-xml/#sec-guessing-with-ext-info">App.
        F.2</a></td>
      <td><code>text/xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a> <br />
        <strong>deprecated in next version</strong></td>
      <td>Waiting for an update</td>
      <td>Chris Lilley</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language
        (XML)</a></td>
      <td><a href="http://www.w3.org/TR/2008/REC-xml-20081126/">REC</a></td>
      <td>-</td>
      <td><code>application/xml-external-parsed-entity</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a></td>
      <td>Waiting for an update</td>
      <td>Chris Lilley</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language
        (XML)</a></td>
      <td><a href="http://www.w3.org/TR/2008/REC-xml-20081126/">REC</a></td>
      <td>-</td>
      <td><code>application/xml-dtd</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a></td>
      <td>Waiting for an update</td>
      <td>Chris Lilley</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language
        (XML)</a></td>
      <td><a href="http://www.w3.org/TR/2008/REC-xml-20081126/">REC</a></td>
      <td>-</td>
      <td><code>text/xml-external-parsed-entity</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a> <br />
        <strong>deprecated in next version</strong></td>
      <td>Waiting for an update</td>
      <td>Chris Lilley</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/exi/">Efficient XML Interchange</a></td>
      <td><a href="http://www.w3.org/TR/2009/CR-exi-20091208/">CR</a></td>
      <td><a href="http://www.w3.org/TR/exi/#internetMediaType">App F.2, full
        template</a></td>
      <td><code>application/exi</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td></td>
      <td></td>
      <td>W3C</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xmlenc-core">XML Encryption</a></td>
      <td><a
      href="http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/">REC</a></td>
      <td><a href="http://www.w3.org/TR/xmlenc-core/#sec-MediaType">Section 8,
        template</a></td>
      <td><code>application/xenc+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/xenc+xml">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>José Kahan</td>
    </tr>
    <!--
                                                                                            <tr>
                                                                                              <td><a href="http://www.w3.org/TR/xbl/">XML Binding Language (XBL) 2.0</a></td>
                                                                                              <td>LC</td>
                                                                                              <td></td>
                                                                                              <td>?</td>
                                                                                              <td>-</td>
                                                                                              <td>Nothing done</td>
                                                                                              <td></td>
                                                                                              <td>?</td>
                                                                                            </tr>
                                                                                        -->
    <tr>
      <td><a href="http://www.w3.org/TR/xproc/">XProc: An XML Pipeline
        Language</a></td>
      <td><a href="/TR/2010/REC-xproc-20100511/">REC</a></td>
      <td><a href="http://www.w3.org/TR/xproc/#xproc-media-type">App. I, full
        template</a></td>
      <td>(application/xproc+xml)</td>
      <td>-</td>
      <td>Nothing done. Reping spec author.</td>
      <td>Check in with Norm and Henry</td>
      <td>public-xml-processing-model-comments@w3.org</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xquery/">XQuery 1.0</a></td>
      <td><a href="http://www.w3.org/TR/2007/REC-xquery-20070123/">REC</a></td>
      <td><a href="http://www.w3.org/TR/xquery/#id-mime-type">App. I, full
        template</a></td>
      <td>(application/xquery)</td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">-</a></td>
      <td>Next step is IESG review</td>
      <td>Check in with Liam</td>
      <td>Liam Quin, <a href="mailto:jim.melton@oracle.com">Jim Melton</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xqueryx/">XML Syntax for XQuery
        (XQueryX 1.0)</a></td>
      <td><a href="http://www.w3.org/TR/2007/REC-xqueryx-20070123/">REC</a></td>
      <td><a href="http://www.w3.org/TR/xqueryx/#xqueryx-id-mime-type">Appendix
        C, full template</a></td>
      <td>(application/xquery+xml)</td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">-</a></td>
      <td>Next step is IESG review</td>
      <td>Check in with Liam</td>
      <td>Liam Quin, <a href="mailto:jim.melton@oracle.com">Jim Melton</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/xslt20/" name="xslt" id="xslt">XSL
        Transformations (XSLT 2.0)</a></td>
      <td><a href="http://www.w3.org/TR/2007/REC-xslt20-20070123/">REC</a></td>
      <td><a href="http://www.w3.org/TR/xslt20/#xslt-mime-definition">App. B,
        full template</a></td>
      <td><code>application/xslt+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Liam Quin, <a href="mailto:Norman.Walsh@Sun.COM">Norman Walsh</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/rdf-syntax-grammar/">RDF/XML</a></td>
      <td><a
        href="http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/#section-MIME-Type">Section
        4: no template</a></td>
      <td><code>application/rdf+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td><a href="http://www.ietf.org/rfc/rfc3870.txt">RFC 3870</a></td>
      <td>-</td>
      <td><a href="mailto:connolly@w3.org">Dan Connolly</a></td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL Query
        Language for RDF</a></td>
      <td><a href="/TR/2008/REC-rdf-sparql-query-20080115/">REC</a></td>
      <td><a href="http://www.w3.org/TR/rdf-sparql-query/#mediaType">Appendix E
        - full template</a></td>
      <td><code>application/sparql-query</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Eric Prud'hommeaux &lt;<a
        href="mailto:public-rdf-dawg-comments@w3.org"
        class="reify-linkifier">public-rdf-dawg-comments@w3.org</a>&gt;</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/rdf-sparql-XMLres/">SPARQL Query
        Results XML Format</a></td>
      <td><a
        href="http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/">REC</a></td>
      <td><a href="http://www.w3.org/TR/rdf-sparql-XMLres/#mime">Section 5:
        full template</a></td>
      <td><code>application/sparql-results+xml</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/application/">registered</a>
      </td>
      <td>-</td>
      <td>-</td>
      <td>Eric Prud'hommeaux &lt;<a
        href="mailto:public-rdf-dawg-comments@w3.org"
        class="reify-linkifier">public-rdf-dawg-comments@w3.org</a>&gt;</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/rdf-sparql-json-res/">Serializing
        SPARQL Query Results in JSON</a></td>
      <td><a
        href="http://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/">Note</a></td>
      <td><a
        href="http://www.w3.org/TR/rdf-sparql-json-res/#mediaType">Internet
        Media Type, File Extension and Macintosh File Type</a></td>
      <td>(application/sparql-results+json)</td>
      <td>wait for RDF Core to work out their RDF JSON serialization, then
        align with them</td>
      <td>-</td>
      <td>-</td>
      <td>Kendall Clark, Elias Torres, Lee Feigenbaum &lt;<a
        href="mailto:public-rdf-dawg-comments@w3.org"
        class="reify-linkifier">public-rdf-dawg-comments@w3.org</a>&gt;</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TeamSubmission/turtle/">Turtle - Terse RDF
        Triple Language</a></td>
      <td><a href="/TeamSubmission/2011/SUBM-turtle-20110328/">Note</a></td>
      <td><a
        href="http://www.w3.org/TeamSubmission/turtle/#sec-mediaReg">Internet
        Media Type, File Extension and Macintosh File Type</a></td>
      <td><code>text/turtle</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/turtle">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Eric Prud'hommeaux</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TeamSubmission/n3/">Turtle - Terse RDF
        Triple Language</a></td>
      <td><a href="/TeamSubmission/2011/SUBM-n3-20110328/">Note</a></td>
      <td><a href="/TeamSubmission/n3/#sec-mediaReg">Internet Media Type, File
        Extension and Macintosh File Type</a></td>
      <td><code>text/n3</code></td>
      <td><a
        href="http://www.iana.org/assignments/media-types/text/n3">registered</a></td>
      <td>-</td>
      <td>-</td>
      <td>Eric Prud'hommeaux</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/rif-core/">RIF Core Dialect</a></td>
      <td><a href="/TR/2010/REC-rif-core-20100622/">REC</a></td>
      <td><a
        href="/TR/rif-core/#Appendix:_RIF_Media_Type_Registration">Appendix:
        RIF Media Type Registration</a></td>
      <td>(application/rif+xml)</td>
      <td><p><a
        href="http://www.imc.org/ietf-xml-mime/mail-archive/msg01112.html">under
        review</a></p>
      </td>
      <td></td>
      <td>Check in with Sandro?</td>
      <td>Sandro Hawke</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/owl2-syntax/">OWL 2 Web Ontology
        Language: Structural Specification and Functional-Style Syntax</a></td>
      <td><a href="/TR/2008/WD-owl2-syntax-20081008/">LC</a></td>
      <td><a
        href="http://www.w3.org/TR/owl2-syntax/#Appendix:_Internet_Media_Type.2C_File_Extension.2C_and_Macintosh_File_Type">Appendix:
        Internet Media Type, File Extension, and Macintosh File Type </a></td>
      <td>(text/owl-functional)</td>
      <td><a
        href="http://www.imc.org/ietf-xml-mime/mail-archive/msg01113.html">under
        review</a></td>
      <td>Address comments from ietf-types?</td>
      <td>Request IESG review. Check in Sandro first.</td>
      <td>Sandro Hawke</td>
    </tr>
    <tr>
      <td><a href="/TR/owl2-manchester-syntax/">OWL 2 Web Ontology Language:
        Manchester Syntax</a></td>
      <td><a href="/TR/2009/NOTE-owl2-manchester-syntax-20091027/">Note</a></td>
      <td><a
        href="http://www.w3.org/TR/owl2-manchester-syntax/#Appendix:_Internet_Media_Type.2C_File_Extension_and_Macintosh_File_Type">Appendix:
        Internet Media Type, File Extension and Macintosh File Type </a></td>
      <td>(text/owl-manchester)</td>
      <td>-</td>
      <td>Needs ietf-types review.</td>
      <td>-</td>
      <td>Sandro Hawke</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/owl2-xml-serialization/">OWL 2 Web
        Ontology Language: XML Serialization</a></td>
      <td><a href="/TR/2009/REC-owl2-xml-serialization-20091027/">REC</a></td>
      <td><a
        href="http://www.w3.org/TR/owl2-xml-serialization/#Appendix:_Internet_Media_Type.2C_File_Extension.2C_and_Macintosh_File_Type">Appendix:
        Internet Media Type, File Extension, and Macintosh File Type</a></td>
      <td>(application/owl+xml)</td>
      <td><a
        href="http://www.imc.org/ietf-xml-mime/mail-archive/msg01113.html">under
        review</a></td>
      <td>Address comments from ietf-types?</td>
      <td>Request IESG review. Check in Sandro first.</td>
      <td>Sandro Hawke</td>
    </tr>
    <tr>
      <td><a href="http://www.w3.org/TR/WOFF/">WOFF File Format 1.0</a></td>
      <td><a href="/TR/2010/WD-WOFF-20101116/">LC</a></td>
      <td><a href="/TR/2010/WD-WOFF-20101116/#appendix-b">Appendix B: Media
        Type registration</a></td>
      <td>(application/font-woff)</td>
      <td>-</td>
      <td>-</td>
      <td>Under <a
        href="http://www.ietf.org/mail-archive/web/ietf-types/current/msg01115.html">ietf-types</a>
        review</td>
      <td>Chris Lilley</td>
    </tr>
  </tbody>
</table>

<h2><a name="History" id="History">4. History</a></h2>
<ul>
  <li>created 28 June 2002 by <a href="http://www.w3.org/People/Reagle/">Joseph
    Reagle</a></li>
  <li>Status table and new process added, mostly during 2004, by <a
    href="http://www.w3.org/People/D%C3%BCrst/">Martin Dürst</a></li>
  <li>See <a
    href="http://lists.w3.org/Archives/Public/www-tag/2006Aug/0012.html">TAG
    discussion</a> from August 2006.</li>
</ul>
<hr />

<p><a href="mailto:plh@w3.org">Philippe Le Hégaret</a>, IETF/W3C liaison.</p>
<address>
  last revised $Date: 2011/06/21 13:35:30 $ by $Author: plehegar $ 
</address>
</body>
</html>