- From: Eric Uhrhane via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 16 Sep 2010 22:57:41 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/file-system In directory hutz:/tmp/cvs-serv31350 Modified Files: file-writer.html Log Message: Added BlobBuilder.append(ArrayBuffer), did some cleanup. Index: file-writer.html =================================================================== RCS file: /sources/public/2009/dap/file-system/file-writer.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- file-writer.html 16 Sep 2010 22:05:32 -0000 1.17 +++ file-writer.html 16 Sep 2010 22:57:39 -0000 1.18 @@ -105,7 +105,14 @@ <dfn>task source</dfn>, and <dfn>queue a task</dfn> are defined by the HTML 5 specification [[!HTML5]]. </p> - + <p> + The term <dfn>Blob</dfn> is defined by the File API specification + [[!FILE-API]]. + </p> + <p> + The term <dfn>ArrayBuffer</dfn> is defined by the Typed Arrays + specification [[!TYPED-ARRAYS]]. + </p> <p> This specification includes algorithms (steps) as part of the definition of methods. Conforming implementations (referred to as <dfn>user @@ -185,11 +192,6 @@ Sets the content type of the blob produced. </dd> </dl> - <div class=issue> - The content type of the blob is a proposed property relevant only - if [[!FILE-API]] adopts it. See <a - href="http://lists.w3.org/Archives/Public/public-webapps/2010JanMar/0910.html">discussion</a>. - </div> </dd> <dt>void append ()</dt> <dd> @@ -257,7 +259,20 @@ <dl class='parameters'> <dt>in Blob data</dt> <dd> - The Blob to append. + The data to append. + </dd> + </dl> + </dd> + <dt>void append ()</dt> + <dd> + <p> + Appends the supplied <a>ArrayBuffer</a> to the current contents of the + <code>BlobBuilder</code>. + </p> + <dl class='parameters'> + <dt>in ArrayBuffer data</dt> + <dd> + The data to append. </dd> </dl> </dd> @@ -523,7 +538,7 @@ </p> <div class=issue> Since this is intended to be used only with the sandboxed filesystem, - it should probably move to the <a + it could potentially move to the <a href="http://dev.w3.org/2009/dap/file-system/file-dir-sys.html">filesystem spec</a>. </div> @@ -718,7 +733,7 @@ </p> <div class=issue> Since this is intended to be used only with the sandboxed filesystem, - it should probably move to the <a + it could potentially move to the <a href="http://dev.w3.org/2009/dap/file-system/file-dir-sys.html">filesystem spec</a>. </div>
Received on Thursday, 16 September 2010 22:57:42 UTC