CVS html5/eventsource

Update of /sources/public/html5/eventsource
In directory roscoe:/tmp/cvs-serv1834

Modified Files:
	Overview.html 
Log Message:
Big editorial cleanup. No normative changes. (whatwg r8634)

--- /sources/public/html5/eventsource/Overview.html	2014/04/23 17:05:24	1.257
+++ /sources/public/html5/eventsource/Overview.html	2014/05/14 23:22:04	1.258
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html lang="en-US-x-Hixie"><title>Server-Sent Events</title><style type="text/css">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html lang="en-GB-x-Hixie"><title>Server-Sent Events</title><style type="text/css">
    pre { margin-left: 2em; white-space: pre-wrap; }
    h2 { margin: 3em 0 1em 0; }
    h3 { margin: 2.5em 0 1em 0; }
@@ -216,7 +216,7 @@
 
    <h1>Server-Sent Events</h1>
    
-   <h2 class="no-num no-toc" id="editor-s-draft-23-april-2014">Editor's Draft 23 April 2014</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-14-may-2014">Editor's Draft 14 May 2014</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/eventsource/">http://www.w3.org/TR/eventsource/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -354,7 +354,7 @@
   </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
-  This specification is the 23 April 2014 Editor's Draft.
+  This specification is the 14 May 2014 Editor's Draft.
   </p>
 
   
@@ -588,7 +588,7 @@
    <li><p>Let <var title="">CORS mode</var> be <span title="attr-crossorigin-anonymous">Anonymous</span>.</li>
 
    <li><p>If the second argument is present, and the <code title="dom-EventSourceInit-withCredentials"><a href="#dom-eventsourceinit-withcredentials">withCredentials</a></code> dictionary member has the
-   value true, then set <var title="">CORS mode</var> to <span title="attr-crossorigin-use-credentials">Use Credentials</span> and initialize the new
+   value true, then set <var title="">CORS mode</var> to <span title="attr-crossorigin-use-credentials">Use Credentials</span> and initialise the new
    <code><a href="#eventsource">EventSource</a></code> object's <code title="dom-EventSource-withCredentials"><a href="#dom-eventsource-withcredentials">withCredentials</a></code> attribute to true.</li>
 
    <li><p>Return the new <code><a href="#eventsource">EventSource</a></code> object, but continue these steps
@@ -616,7 +616,7 @@
 
   <p>The <dfn id="dom-eventsource-withcredentials" title="dom-EventSource-withCredentials"><code>withCredentials</code></dfn> attribute
   must return the value to which it was last initialized. When the object is created, it must be
-  initialized to false.</p>
+  initialised to false.</p>
 
   <p>The <dfn id="dom-eventsource-readystate" title="dom-EventSource-readyState"><code>readyState</code></dfn> attribute represents
   the state of the connection. It can have the following values:</p>
@@ -840,7 +840,7 @@
 
   <p>When a stream is parsed, a <var title="">data</var> buffer, an <var title="">event type</var>
   buffer, and a <var title="">last event ID</var> buffer must be associated with it. They must be
-  initialized to the empty string</p>
+  initialised to the empty string</p>
 
   <p>Lines must be processed, in the order they are received, as follows:</p>
 
@@ -935,8 +935,8 @@
    <li><p>Create an event that uses the <code>MessageEvent</code> interface, with the event type
    <code title="event-message">message</code>, which does not bubble, is not cancelable, and has no
    default action. The <code title="dom-MessageEvent-data">data</code> attribute must be initialized
-   to the value of the <var title="">data</var> buffer, the <code title="dom-MessageEvent-origin">origin</code> attribute must be initialized to the <span title="Unicode serialization of an origin">Unicode serialization</span> of the
-   <span>origin</span> of the event stream's final URL (i.e. the URL after redirects), and the <code title="dom-MessageEvent-lastEventId">lastEventId</code> attribute must be initialized to the
+   to the value of the <var title="">data</var> buffer, the <code title="dom-MessageEvent-origin">origin</code> attribute must be initialised to the <span title="Unicode serialization of an origin">Unicode serialization</span> of the
+   <span>origin</span> of the event stream's final URL (i.e. the URL after redirects), and the <code title="dom-MessageEvent-lastEventId">lastEventId</code> attribute must be initialised to the
    <a href="#concept-event-stream-last-event-id" title="concept-event-stream-last-event-id">last event ID string</a> of the event source.
    This event is not <span title="concept-events-trusted">trusted</span>.</li>
 
@@ -1201,7 +1201,7 @@
 
     <p>An event stream from an origin distinct from the origin of the content consuming the event
     stream can result in information leakage. To avoid this, user agents are required to apply CORS
-    semantics. <a href="#refsCORS">[CORS]</a></p>
+    semantics. <a href="#refsFETCH">[FETCH]</a></p>
 
     <p>Event streams can overwhelm a user agent; a user agent is expected to apply suitable
     restrictions to avoid depleting local resources because of an overabundance of information from
@@ -1278,15 +1278,15 @@
   <dl><dt id="refsABNF">[ABNF]</dt>
    <dd><cite><a href="http://www.ietf.org/rfc/std/std68.txt">Augmented BNF for Syntax Specifications: ABNF</a></cite>, D. Crocker, P. Overell. IETF.</dd>
 
-   <dt id="refsCORS">[CORS]</dt>
-   <dd><cite><a href="http://fetch.spec.whatwg.org/">Cross-Origin Resource Sharing</a></cite>, A. van Kesteren. WHATWG.</dd>
-
    <dt id="refsDOM">[DOM]</dt>
    <dd><cite><a href="http://dom.spec.whatwg.org/">DOM</a></cite>, A. van Kesteren, A. Gregor, Ms2ger. WHATWG.</dd>
 
    <dt id="refsENCODING">[ENCODING]</dt>
    <dd><cite><a href="http://encoding.spec.whatwg.org/">Encoding</a></cite>, A. van Kesteren, J. Bell. WHATWG.</dd>
 
+   <dt id="refsFETCH">[FETCH]</dt>
+   <dd><cite><a href="http://fetch.spec.whatwg.org/">Fetch</a></cite>, A. van Kesteren. WHATWG.</dd>
+
    <dt id="refsHTML">[HTML]</dt>
    <dd><cite><a href="//www.whatwg.org/specs/web-apps/current-work/">HTML</a></cite>, I. Hickson. WHATWG.</dd>
 

Received on Wednesday, 14 May 2014 23:22:05 UTC