2009/dap/camera Overview.html,1.100,1.101

Update of /sources/public/2009/dap/camera
In directory hutz:/tmp/cvs-serv26536

Modified Files:
	Overview.html 
Log Message:
Jonas's feedback (partial): http://www.w3.org/mid/AANLkTin73vbb5jWTJSMhcVdpy44Y0gnmvs3fUI3JtNCU@mail.gmail.com
* remove MediaList in favor of requiring relevant file objects to implement the MediaFile interface
* don't restrict the MediaFile interface to captured media (but applicable to any media file)


Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/camera/Overview.html,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -d -r1.100 -r1.101
--- Overview.html	19 Jul 2010 09:17:27 -0000	1.100
+++ Overview.html	22 Jul 2010 07:54:18 -0000	1.101
@@ -98,11 +98,8 @@
     content, the user agent creates media files on the fly <a href="http://dev.w3.org/html5/spec/number-state.html#file-upload-state">as
     specified</a> in [[HTML5]].</p>
 
-    <p>If the user captures media files successfully, the
-    <code>files</code> attribute [[HTML5]] MUST return a <a
-    href="#medialist">MediaList</a> object that represents the
-    current captured content instead of <code>FileList</code>
-    [[!FILE-API]] object as specified in [[!HTML5]].
+    <p>If the user selects files of whose MIME types match <code>image/*</code>,
+    <code>sound/*</code>, or <code>video/*</code> (on the filesystem or via a successful media capture), the relevant files in the <code>files</code> attribute [[HTML5]] MUST implement the <code>MediaFile</code> interface.</p>
 
     <pre class="example sh_javascript_dom">&lt;input type="file" accept="image/*"&gt; </pre>
 </section>
@@ -188,14 +185,6 @@
     </section>
   </section>
 
-  <section id="medialist"><h3><a>MediaList</a> typedef</h3>
-    <p>The <a>MediaList</a> typedef represents a <code>sequence</code> of
-    <a href="#mediafile"> <code>MediaFile</code></a>
-    objects. </p>
-
-    <dl title="typedef sequence&lt;MediaFile&gt; MediaList" class="idl"></dl>
-  </section>
-
 
 <section class='appendix' id="uiexamples">
 <h2>User Interface Examples</h2>

Received on Thursday, 22 July 2010 07:54:21 UTC