html5/websockets Overview.html,1.35,1.36

Update of /sources/public/html5/websockets
In directory hutz:/tmp/cvs-serv21600

Modified Files:
	Overview.html 
Log Message:
Clarify <small> even further, by popular request. Clarify the rules involved in the handshake of the Web Socket protocol. Some editorial tweaks. (whatwg r2827)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/websockets/Overview.html,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- Overview.html	14 Feb 2009 01:26:29 -0000	1.35
+++ Overview.html	17 Feb 2009 03:15:06 -0000	1.36
@@ -6,7 +6,7 @@
   </style><div class=head>
    <p><a href=http://www.w3.org/><img alt=W3C height=48 src=http://www.w3.org/Icons/w3c_home width=72></a></p>
    <h1>The Web Sockets API</h1>
-   <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->14 February 2009</h2>
+   <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->17 February 2009</h2>
    <dl><!-- ZZZ: update the month/day
     <dt>This Version:</dt>
     <dd><a href="http://www.w3.org/TR/2009/WD-websockets-20090101/">http://www.w3.org/TR/2009/WD-websockets-20090101/</a></dd>
@@ -79,7 +79,7 @@
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
   <!--ZZZ:-->
-  This specification is the 14 February 2009 <!--ZZZ "Working Draft"-->Editor's Draft.
+  This specification is the 17 February 2009 <!--ZZZ "Working Draft"-->Editor's Draft.
   <!--:ZZZ-->
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to specify a part of the Web
   platform closely related to HTML5. It is defined in a separate
@@ -193,14 +193,15 @@
 
    <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.</li>
+   <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>
 
    <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>.</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>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 Tuesday, 17 February 2009 03:15:18 UTC