workers/Overview.html 1.64 71 Remove startConversation() for now, as it

Remove startConversation() for now, as it is distracting in the worker
discussions. May return in some form later. (whatwg r71)

postMessage()
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#postmessage
2.1.2 Dedicated workers and the DedicatedWorkerGlobalScope interface
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#dedicated
Worker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#worker1
terminate()
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#terminate0
DedicatedWorkerGlobalScope
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#dedicatedworkerglobalscope
postMessage()
http://people.w3.org/mike/diffs/html5/workers/Overview.1.64.html#postmessage0

http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html
http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.63&r2=1.64&f=h
http://html5.org/tools/web-apps-tracker?from=70&to=71

===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- Overview.html 13 Nov 2008 01:41:28 -0000 1.63
+++ Overview.html 13 Nov 2008 01:45:34 -0000 1.64
@@ -1337,8 +1337,8 @@
   <pre
    class=idl>[NoInterfaceObject] interface <dfn id=dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</dfn> : <a href="#workerglobalscope">WorkerGlobalScope</a> {
   void <a href="#postmessage" title=dom-DedicatedWorkerGlobalScope-postMessage>postMessage</a>(in DOMString message);
-  void <a href="#postmessage" title=dom-DedicatedWorkerGlobalScope-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);
-  <span>MessagePort</span> <a href="#startconversation" title=dom-DedicatedWorkerGlobalScope-startConversation>startConversation</a>(in DOMString message);
+  void <a href="#postmessage" title=dom-DedicatedWorkerGlobalScope-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);<!--
+  <span>MessagePort</span> <span title="dom-DedicatedWorkerGlobalScope-startConversation">startConversation</span>(in DOMString message);-->
            attribute <span>EventListener</span> <a href="#onmessage" title=handler-DedicatedWorkerGlobalScope-onmessage>onmessage</a>;
 };</pre>
 
@@ -1357,14 +1357,14 @@
    object.
 
   <p>The <dfn id=postmessage
-   title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn>
-   and <dfn id=startconversation
-   title=dom-DedicatedWorkerGlobalScope-startConversation><code>startConversation()</code></dfn>
-   methods on <code><a
+   title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn><!--
+  and <dfn
+  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>-->
+   method<!--s (startConversation)--> on <code><a
    href="#dedicatedworkerglobalscope">DedicatedWorkerGlobalScope</a></code>
-   objects must act as if, when invoked, they immediately invoked the method
-   of the same name on the port, with the same arguments, and returned the
-   same return value.
+   objects must act as if, when invoked, it<!--/they (startConversation)-->
+   immediately invoked the method of the same name on the port, with the same
+   arguments, and returned the same return value.
 
   <p>The following are the <span>event handler DOM attributes</span> that
    must be supported by objects implementing the <code><a
@@ -1807,8 +1807,8 @@
   void <a href="#terminate0" title=dom-Worker-terminate>terminate</a>();
 
   void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message);
-  void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);
-  <span>MessagePort</span> <a href="#startconversation0" title=dom-Worker-startConversation>startConversation</a>(in DOMString message);
+  void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);<!--
+  <span>MessagePort</span> <span title="dom-Worker-startConversation">startConversation</span>(in DOMString message);-->
            attribute <span>EventListener</span> <a href="#onmessage0" title=handler-Worker-onmessage>onmessage</a>;
 };</pre>
 
@@ -1827,12 +1827,14 @@
    the <code><a href="#worker1">Worker</a></code> object.
 
   <p>The <dfn id=postmessage0
-   title=dom-Worker-postMessage><code>postMessage()</code></dfn> and <dfn
-   id=startconversation0
-   title=dom-Worker-startConversation><code>startConversation()</code></dfn>
-   methods on <code><a href="#worker1">Worker</a></code> objects must act as
-   if, when invoked, they immediately invoked the method of the same name on
-   the port, with the same arguments, and returned the same return value.
+   title=dom-Worker-postMessage><code>postMessage()</code></dfn><!--
+  and <dfn
+  title="dom-Worker-startConversation"><code>startConversation()</code></dfn>-->
+   method<!--s (startConversation)--> on <code><a
+   href="#worker1">Worker</a></code> objects must act as if, when invoked,
+   it<!--/they (startConversation)--> immediately invoked the method of the
+   same name on the port, with the same arguments, and returned the same
+   return value.
 
   <p>The following are the <span>event handler DOM attributes</span> that
    must be supported by objects implementing the <code><a

Received on Thursday, 13 November 2008 01:46:59 UTC