- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Aug 2009 02:26:52 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webdatabase
In directory hutz:/tmp/cvs-serv7732
Modified Files:
Overview.html
Log Message:
Rename DOM attributes to IDL attributes. (whatwg r3713)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/webdatabase/Overview.html,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- Overview.html 30 Aug 2009 00:02:09 -0000 1.23
+++ Overview.html 31 Aug 2009 02:26:50 -0000 1.24
@@ -173,7 +173,7 @@
<h1>Web Database</h1>
<!--ZZZ:-->
<!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
- <h2 class="no-num no-toc" id="editor-s-draft-30-august-2009">Editor's Draft 30 August 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-31-august-2009">Editor's Draft 31 August 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out
<dt>This Version:</dt>
@@ -240,7 +240,7 @@
specification's progress along the W3C Recommendation track.
<!--ZZZ:-->
<!--This specification is the 23 April 2009 Working Draft.-->
- This specification is the 30 August 2009 Editor's Draft.
+ This specification is the 31 August 2009 Editor's Draft.
<!--:ZZZ-->
</p><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/42538/status" rel="disclosure">public list of
@@ -1007,10 +1007,10 @@
const unsigned short <a href="#dom-sqlexception-code-timeout" title="dom-SQLException-code-TIMEOUT">TIMEOUT_ERR</a> = 7;
readonly attribute unsigned short <a href="#dom-sqlerror-code" title="dom-SQLError-code">code</a>;
readonly attribute DOMString <a href="#dom-sqlerror-message" title="dom-SQLError-message">message</a>;
-};</pre><p>The <dfn id="dom-sqlerror-code" title="dom-SQLError-code"><code>code</code></dfn> DOM
+};</pre><p>The <dfn id="dom-sqlerror-code" title="dom-SQLError-code"><code>code</code></dfn> IDL
attribute must return the most appropriate code from the table
below.<p>The <dfn id="dom-sqlerror-message" title="dom-SQLError-message"><code>message</code></dfn>
- DOM attribute must return an error message describing the error
+ IDL attribute must return an error message describing the error
encountered. The message should be localized to the user's
language.<hr><p>Errors in the synchronous database API are reported using
<code><a href="#sqlexception">SQLException</a></code> exceptions:<pre class="idl">exception <dfn id="sqlexception">SQLException</dfn> {
@@ -1025,8 +1025,8 @@
unsigned short <a href="#dom-sqlexception-code" title="dom-SQLException-code">code</a>;
DOMString <a href="#dom-sqlexception-message" title="dom-SQLException-message">message</a>;
};</pre><p>The <dfn id="dom-sqlexception-code" title="dom-SQLException-code"><code>code</code></dfn>
- DOM attribute must return the most appropriate code from the table
- below.<p>The <dfn id="dom-sqlexception-message" title="dom-SQLException-message"><code>message</code></dfn> DOM
+ IDL attribute must return the most appropriate code from the table
+ below.<p>The <dfn id="dom-sqlexception-message" title="dom-SQLException-message"><code>message</code></dfn> IDL
attribute must return an error message describing the error
encountered. The message should be localized to the user's
language.<hr><p>The error codes are as follows:<table><thead><tr><th>Constant
Received on Monday, 31 August 2009 02:27:01 UTC