- From: Eric Uhrhane via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 16 Apr 2012 20:57:02 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/file-system/pub/FileWriter
In directory hutz:/tmp/cvs-serv25286/pub/FileWriter
Modified Files:
Overview.html
Log Message:
Fix a close tag.
Fix the order of css includes in Overview.html.
Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/file-system/pub/FileWriter/Overview.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Overview.html 16 Apr 2012 20:30:24 -0000 1.13
+++ Overview.html 16 Apr 2012 20:56:59 -0000 1.14
@@ -5,8 +5,8 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
- <link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css" charset="utf-8">
- <link href="Overview_files/respec.css" rel="stylesheet" type="text/css" charset="utf-8"></head>
+ <link href="Overview_files/respec.css" rel="stylesheet" type="text/css" charset="utf-8">
+ <link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css" charset="utf-8"></head>
<body style="display: inherit; "><div class="head"><p><a href="http://www.w3.org/"><img width="72" height="48" src="http://www.w3.org/Icons/w3c_home" alt="W3C"></a></p><h1 class="title" id="title">File <acronym title="Application Programming
Interface">API</acronym>: Writer</h1><h2 id="w3c-working-draft-17-april-2012"><acronym title="World Wide Web Consortium">W3C</acronym> Working Draft 17 April 2012</h2><dl><dt>This version:</dt><dd><a href="http://www.w3.org/TR/2012/WD-file-writer-api-20120417/">http://www.w3.org/TR/2012/WD-file-writer-api-20120417/</a></dd><dt>Latest published version:</dt><dd><a href="http://www.w3.org/TR/file-writer-api/">http://www.w3.org/TR/file-writer-api/</a></dd><dt>Latest editor's draft:</dt><dd><a href="http://dev.w3.org/2009/dap/file-system/file-writer.html">http://dev.w3.org/2009/dap/file-system/file-writer.html</a></dd><dt>Previous version:</dt><dd><a href="http://www.w3.org/TR/2011/WD-file-writer-api-20110419/">http://www.w3.org/TR/2011/WD-file-writer-api-20110419/</a></dd><dt>Editor:</dt><dd><a href="http://www.ofb.net/~uranium/">Eric Uhrhane</a>, <a href="http://www.google.com/">Google</a></dd>
</dl><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2012 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. <acronym title="World Wide Web Consortium">W3C</acronym> <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p><hr></div>
@@ -707,24 +707,24 @@
<code>writestart</code>.</li>
<li>Return from the write method, but continue processing
the other steps in this algorithm.</li>
- <li><a href="#dfn-make-progress-notifications" class="internalDFN">Make progress notifications</a><a>. On getting, while
+ <li><a href="#dfn-make-progress-notifications" class="internalDFN">Make progress notifications</a>. On getting, while
processing the <code>write</code> method, the
<code>length</code> and <code>position</code> attributes <em class="rfc2119" title="must">must</em>
indicate the progress made in writing the file as of the last
progress notification.
- </a></li><a>
- </a><li><a>
+ </li>
+ <li>
Upon successful completion of a write:
- </a><ul><a>
+ <ul>
<li><code>position</code> <em class="rfc2119" title="must">must</em> indicate an increase of
<code>data.size</code> over its pre-write state.</li>
<li><code>length</code> <em class="rfc2119" title="must">must</em> be the greater of (the pre-write
<code>length</code>) and (the pre-write <code>position</code>
plus <code>data.size</code>).</li>
- </a><li><a>Queue a task to:
- </a><ol><a>
+ <li>Queue a task to:
+ <ol>
<li>Set readyState to <code>DONE</code>.</li>
- </a><li><a></a><a href="#dfn-fire-a-progress-event" class="internalDFN">Fire a progress event</a> called
+ <li><a href="#dfn-fire-a-progress-event" class="internalDFN">Fire a progress event</a> called
<code>write</code>.</li>
<li><a href="#dfn-fire-a-progress-event" class="internalDFN">Fire a progress event</a> called
<code>writeend</code>.</li>
Received on Monday, 16 April 2012 20:57:05 UTC