- From: poot <cvsmail@w3.org>
- Date: Fri, 18 Jul 2008 19:11:13 +0900 (JST)
- To: public-html-diffs@w3.org
s/attach/connect/ (credit: pt) (whatwg r27) (changed by: Ian Hickson)
Diffs for this change per section:
success steps
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#success
onconnect
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#onconnect
create a worker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#create
worker creation failed
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#worker
connect to a worker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#connect
createNamedWorker(name, scriptURL)
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#createnamedworker
WindowWorker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#windowworker
Acknowledgements
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#acknowledgements
closing
http://people.w3.org/mike/diffs/html5/workers/Overview.1.20.html#closing
Current content per affected section:
http://dev.w3.org/html5/workers/Overview.html#success
http://dev.w3.org/html5/workers/Overview.html#onconnect
http://dev.w3.org/html5/workers/Overview.html#create
http://dev.w3.org/html5/workers/Overview.html#worker
http://dev.w3.org/html5/workers/Overview.html#onattach
http://dev.w3.org/html5/workers/Overview.html#attach
http://dev.w3.org/html5/workers/Overview.html#connect
http://dev.w3.org/html5/workers/Overview.html#createnamedworker
http://dev.w3.org/html5/workers/Overview.html#windowworker
http://dev.w3.org/html5/workers/Overview.html#acknowledgements
http://dev.w3.org/html5/workers/Overview.html#closing
Previously published WD content per affected section:
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#success
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onconnect
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#create
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#worker
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onattach
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#attach
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#connect
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#createnamedworker
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#windowworker
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#acknowledgements
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#closing
Cumulative diff: http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html
http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.19&r2=1.20&f=h
http://html5.org/tools/web-apps-tracker?from=26&to=27
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Overview.html 18 Jul 2008 10:07:42 -0000 1.19
+++ Overview.html 18 Jul 2008 10:10:24 -0000 1.20
@@ -390,7 +390,7 @@
void <a href="#close" title=dom-WindowWorker-close>close</a>();
// event handler attributes
- attribute <span>EventListener</span> <a href="#onattach" title=handler-WindowWorker-onattach>onattach</a>;
+ attribute <span>EventListener</span> <a href="#onconnect" title=handler-WindowWorker-onconnect>onconnect</a>;
attribute <span>EventListener</span> <a href="#onunload" title=handler-WindowWorker-onunload>onunload</a>;
};</pre>
@@ -419,12 +419,12 @@
href="#windowworker">WindowWorker</a></code> interface:
<dl>
- <dt><dfn id=onattach
- title=handler-WindowWorker-onattach><code>onattach</code></dfn>
+ <dt><dfn id=onconnect
+ title=handler-WindowWorker-onconnect><code>onconnect</code></dfn>
<dd>
<p>Must be invoked whenever a <code
- title=event-WindowWorker-attach>attach</code> event is targeted at or
+ title=event-WindowWorker-connect>connect</code> event is targeted at or
bubbles through the <code><a
href="#windowworker">WindowWorker</a></code> object.
@@ -906,8 +906,8 @@
<p>Return that port.
<li>
- <p>Asynchronously, <a href="#attach" title="attach to a
- worker">attach</a> to this preexisting worker, with the newly created
+ <p>Asynchronously, <a href="#connect" title="connect to a
+ worker">connect</a> to this preexisting worker, with the newly created
port.
</ol>
@@ -944,9 +944,9 @@
document</var>.</p>
<p>If that algorithm invokes the steps for <dfn id=success title="worker
- creation succeeded">success steps</dfn>, then <a href="#attach"
- title="attach to a worker">attach</a> to this new worker, with the newly
- created port.</p>
+ creation succeeded">success steps</dfn>, then <a href="#connect"
+ title="connect to a worker">connect</a> to this new worker, with the
+ newly created port.</p>
<p>Otherwise, if the <dfn id=worker>worker creation failed</dfn>, then at
the next available opportunity, after any scripts have finished
@@ -956,7 +956,7 @@
<hr>
- <p>The steps to <dfn id=attach>attach to a worker</dfn> given a
+ <p>The steps to <dfn id=connect>connect to a worker</dfn> given a
<code>MessagePort</code> object <var title="">port</var> are as follows:
<ol>
@@ -988,7 +988,7 @@
<li>
<p>Create an event that uses the <code>MessageEvent</code> interface,
- with the name <code title=event-attach>attach</code>, which does not
+ with the name <code title=event-connect>connect</code>, which does not
bubble, is cancelable, has no default action, has a <code
title=dom-MessageEvent-data>data</code> attribute whose value is the
empty string and has a <code
@@ -1076,8 +1076,8 @@
<h2 class=no-num id=acknowledgements>Acknowledgements</h2>
<!-- ACKS -->
- <p>Thanks to Maciej Stachowiak and Mike Smith for their useful and
- substantial comments.
+ <p>Thanks to Maciej Stachowiak, Philip Taylor, and Mike Smith for their
+ useful and substantial comments.
<p>Huge thanks to the whole Gears team, who pioneered this technology and
whose experience has been a huge influence on this specification.
Received on Friday, 18 July 2008 10:11:54 UTC