- From: Eric Uhrhane via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 17 Apr 2012 00:03:13 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/file-system In directory hutz:/tmp/cvs-serv28174 Modified Files: file-dir-sys.html file-writer.html Log Message: Update references to the latest editors' drafts for various refs. Index: file-dir-sys.html =================================================================== RCS file: /sources/public/2009/dap/file-system/file-dir-sys.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- file-dir-sys.html 16 Apr 2012 19:30:33 -0000 1.44 +++ file-dir-sys.html 17 Apr 2012 00:03:10 -0000 1.45 @@ -35,7 +35,7 @@ Interface'>API</acronym> to navigate file system hierarchies, and defines a means by which a <a>user agent</a> may expose sandboxed sections of a user's local filesystem to web applications. It builds on - [[!FILE-WRITER]], which in turn built on [[!FILE-API]], each adding a + [[!FILE-WRITER-ED]], which in turn built on [[!FILE-API-ED]], each adding a different kind of functionality. </section> @@ -135,12 +135,12 @@ // In the DOM or worker context: function useAsyncFS(fs) { - // see getAsText example in [[!FILE-API]]. + // see getAsText example in [[!FILE-API-ED]]. fs.root.getFile("already_there.txt", null, function (f) { getAsText(f.file()); }); - // But now we can also write to the file; see [[!FILE-WRITER]]. + // But now we can also write to the file; see [[!FILE-WRITER-ED]]. fs.root.getFile("logFile", {create: true}, function (f) { f.createWriter(writeDataToLogFile); }); @@ -170,11 +170,11 @@ <dfn>DOMError</dfn> is defined in the DOM4 specification [[!DOM4]]. <p> </p> - <dfn>File</dfn> is defined in the File API specification [[!FILE-API]]. + <dfn>File</dfn> is defined in the File API specification [[!FILE-API-ED]]. <p> </p> <dfn>FileWriter</dfn> and <dfn>FileWriterSync</dfn> are defined in the - FileWriter specification [[!FILE-WRITER]]. + FileWriter specification [[!FILE-WRITER-ED]]. <p> </section> <section> @@ -291,7 +291,7 @@ them. However, in order to avoid blocking UI actions while waiting on filesystem IO, we define only an asynchronous interface for Window, and restrict the synchronous API to the Worker context defined in - [[!WEBWORKERS]]. + [[!WEBWORKERS-ED]]. </p> <section> <h2>Using <code>LocalFileSystem</code></h2> @@ -633,7 +633,7 @@ <dd> <p> Returns a URL that can be used to identify this entry. - Unlike the URN defined in [[!FILE-API]], it has no specific + Unlike the URN defined in [[!FILE-API-ED]], it has no specific expiration; as it describes a location on disk, it should be valid at least as long as that location exists. </p> @@ -1177,7 +1177,7 @@ <dd> <p> Returns a URL that can be used to identify this entry. - Unlike the URN defined in [[!FILE-API]], it has no specific + Unlike the URN defined in [[!FILE-API-ED]], it has no specific expiration; as it describes a location on disk, it should be valid at least as long as that location exists. </p> Index: file-writer.html =================================================================== RCS file: /sources/public/2009/dap/file-system/file-writer.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- file-writer.html 16 Apr 2012 20:56:59 -0000 1.44 +++ file-writer.html 17 Apr 2012 00:03:11 -0000 1.45 @@ -36,7 +36,7 @@ Interface'>API</acronym> for writing to files from web applications. This API is designed to be used in conjunction with, and depends on definitions in, other APIs and elements on the web platform. Most - relevant among these are [[!FILE-API]] and [[!WEBWORKERS]]. + relevant among these are [[!FILE-API-ED]] and [[!WEBWORKERS-ED]]. </p> <p> This API includes: @@ -147,7 +147,7 @@ <code>e.cancelable</code> MUST be false [[!DOM4]].</li> <li>The term "fire an event" is defined in DOM4 [[!DOM4]]. Progress events are defined in Progress Events - [[!PROGRESS-EVENTS]].</li> + [[!PROGRESS-EVENTS-ED]].</li> </ul> </p> The term <dfn>throw</dfn> in this specification, as it pertains to @@ -156,7 +156,7 @@ </p> <p> The term <dfn>Blob</dfn> is defined by the File API specification - [[!FILE-API]]. + [[!FILE-API-ED]]. </p> <p> The term <dfn>ArrayBuffer</dfn> is defined by the Typed Arrays @@ -181,8 +181,8 @@ generated or downloaded files. </p> <p> - The [[!FILE-API]] defined interfaces for reading files, manipulation of - <a>Blobs</a> of data, and errors raised by file accesses. This + The [[!FILE-API-ED]] defined interfaces for reading files, manipulation + of <a>Blobs</a> of data, and errors raised by file accesses. This specification extends that work with a way to construct <a>Blobs</a> and with synchronous and asynchronous file-writing interfaces. As with reading, writing files on the main thread should happen asynchronously @@ -343,13 +343,13 @@ <h2>The <a>FileSaver</a> interface</h2> <p> This interface provides methods to monitor the asynchronous writing of - blobs to disk using progress events [[!PROGRESS-EVENTS]] and <a>event + blobs to disk using progress events [[!PROGRESS-EVENTS-ED]] and <a>event handler attributes</a>. </p> <p> This interface is specified to be used within the context of the global object (Window [[!HTML5]]) and within Web Workers (WorkerUtils - [[!WEBWORKERS]]). + [[!WEBWORKERS-ED]]). </p> <dl title='[Constructor(Blob data)] interface FileSaver : EventTarget' class='idl'> <dt>void abort ()</dt> @@ -801,7 +801,7 @@ </p> <p> This interface is specified to be used only within Web Workers - (WorkerUtils [[!WEBWORKERS]]). + (WorkerUtils [[!WEBWORKERS-ED]]). </p> <div class=issue> Since this is intended to be used only with the sandboxed filesystem, @@ -938,8 +938,8 @@ See <a>SyntaxError</a>. </p> <p> - As documented in [[!FILE-API]], various errors may occur during reading - from the Blob that is the source of the data to be written. + As documented in [[!FILE-API-ED]], various errors may occur during + reading from the Blob that is the source of the data to be written. These include <a>NotFoundError</a>, <a>SecurityError</a>, and <a>NotReadableError</a>. </section>
Received on Tuesday, 17 April 2012 00:03:16 UTC