Change the terminology to be clearer that 'lowercase' and 'uppercase' refer to ASCII case only. (bug 6898) (whatwg r3170)

Change the terminology to be clearer that 'lowercase' and 'uppercase'
refer to ASCII case only. (bug 6898) (whatwg r3170)
http://www.w3.org/Bugs/Public/show_bug.cgi?id=6898

Diffs for this change per section: 
http://people.w3.org/mike/diffs/html5/websockets/Overview.1.75.html#editor-s-draft-date-1-january-1970
http://people.w3.org/mike/diffs/html5/websockets/Overview.1.75.html#dom-websocket
http://people.w3.org/mike/diffs/html5/websockets/Overview.1.75.html#status-of-this-document

http://people.w3.org/mike/diffs/html5/websockets/Overview.diff.html
http://dev.w3.org/cvsweb/html5/websockets/Overview.html?r1=1.74&r2=1.75&f=h
http://html5.org/tools/web-apps-tracker?from=3169&to=3170

===================================================================
RCS file: /sources/public/html5/websockets/Overview.html,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- Overview.html 10 May 2009 11:20:21 -0000 1.74
+++ Overview.html 1 Jun 2009 22:15:25 -0000 1.75
@@ -151,7 +151,7 @@
    <h1>The Web Sockets API</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-date-1-january-1970">Editor's Draft 10 May 2009</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 1 June 2009</h2>
    <!--:ZZZ-->
    <dl><!-- ZZZ: update the month/day (twice), (un)comment out
     <dt>This Version:</dt>
@@ -220,7 +220,7 @@
   specification's progress along the W3C Recommendation track.
   <!--ZZZ:-->
   <!--This specification is the 23 April 2009 Working Draft.-->
-  This specification is the 10 May 2009 Editor's Draft.
+  This specification is the 1 June 2009 Editor's Draft.
   <!--:ZZZ-->
   <p>This specification is being developed in conjunction with an
   Internet Draft for a wire protocol, the Web Socket Protocol,
@@ -343,14 +343,14 @@
    <li><p>Let <var title="">origin</var> be the <span title="ASCII
    serialization of an origin">ASCII serialization</span> of the
    <span>origin</span> of the script that invoked the <code title="dom-WebSocket"><a href="#dom-websocket">WebSocket()</a></code> constructor,
-   <span>converted to lowercase</span>.</li>
+   <span>converted to ASCII lowercase</span>.</li>
 
    <li><p>If the <span title="url-scheme">&lt;scheme&gt;</span>
    component of <var title="">url</var> is "<code title="">ws</code>",
    set <var title="">secure</var> to false; otherwise, the <span title="url-scheme">&lt;scheme&gt;</span> component is "<code title="">wss</code>", set <var title="">secure</var> to
    true.</li>
 
-   <li><p>Let <var title="">host</var> be the value of the <span title="url-host">&lt;host&gt;</span> component of <var title="">url</var>, <span>converted to lowercase</span>.</li>
+   <li><p>Let <var title="">host</var> be the value of the <span title="url-host">&lt;host&gt;</span> component of <var title="">url</var>, <span>converted to ASCII lowercase</span>.</li>
 
    <li><p>If <var title="">url</var> has a <span title="url-port">&lt;port&gt;</span> component, then let <var title="">port</var> be that component's value; otherwise, there is
    no explicit <var title="">port</var>.</li>

Received on Monday, 1 June 2009 22:16:21 UTC