Remove references to transaction groups per Alex & Olli's comments.
authorRyosuke Niwa <rniwa@webkit.org>
Tue, 29 May 2012 22:22:05 -0700
changeset 2 2b10939e6831
parent 1 56ac42b37fdf
child 3 7b82412b9af9
Remove references to transaction groups per Alex & Olli's comments.
Also add them to the list of acknowledgements.
source.html
undomanager.html
--- a/source.html	Tue Mar 27 21:51:29 2012 -0700
+++ b/source.html	Tue May 29 22:22:05 2012 -0700
@@ -10,7 +10,7 @@
 <div class="head">
 <h1>UndoManager and DOM Transaction</h1>
 
-<h2 class="no-num no-toc">Editor's draft — 27 March 2012</h2>
+<h2 class="no-num no-toc">Editor's draft — 29 May 2012</h2>
 
 <dl>
 <dt>Editor:</dt>
@@ -18,14 +18,16 @@
 </dd>
 
 <dt>Acknowledgements</dt>
-<dd>Anne van Kesteren, Annie Sullivan, Alex Russell, Aryeh Gregor, Ehsan Akhgari, Eric Uhrhane,
-Frederico Caldeira Knabben, Ian Hickson, Johan "Spocke" Sörlin, Jonas Sicking, Ojan Vafai</dd>
+<dd>Anne van Kesteren, Annie Sullivan, Alex Russell, Alex Vincent, Aryeh Gregor, Ehsan Akhgari, Eric Uhrhane,
+Frederico Caldeira Knabben, Ian Hickson, Johan "Spocke" Sörlin, Jonas Sicking, Ojan Vafai, Olli Pettay</dd>
 
 <dt>Latest version:</dt>
 <dd><a href="http://rniwa.com/editing/undomanager.html">
 http://rniwa.com/editing/undomanager.html</a></dd>
 
 <dt>Previous versions:</dt>
+<dd><a href="http://rniwa.com/editing/undomanager-2011-03-27.html">
+http://rniwa.com/editing/undomanager-2011-03-27.html</a></dd>
 <dd><a href="http://rniwa.com/editing/undomanager-2011-12-01.html">
 http://rniwa.com/editing/undomanager-2011-12-01.html</a></dd>
 <dd><a href="http://rniwa.com/editing/undomanager-2011-11-29.html">
@@ -183,9 +185,9 @@
 
         <dt><var title="">undoManager</var> . <code title="dom-UndoManager-transact"><a href="#dom-undomanager-transact">transact</a>(<var title="">transaction</var>,
             <var title="">merge</var>)</code></dt>
-        <dd><p>Clears entries above the current undo position, and <a href="#dom-transaction-apply">applies</a> <var title="">transaction</var>,
-            and pushes it to the <a href="#undo-transaction-history">undo transaction history<a>.
-            It also forms a <a href="#dom-transaction-group">DOM transaction group</a> if <var title="">merge</var> is set to true.</p></dd>
+        <dd><p>Clears entries above the current undo position, <a href="#dom-transaction-apply">applies</a> <var title="">transaction</var>,
+            and adds it to the beginning of the first entry in <a href="#undo-transaction-history">undo transaction history<a>,
+            or of a new <a href="#undo-transaction-history">undo transaction history<a> if <var title="">merge</var> is set to true.</p></dd>
 
         <dt><var title="">undoManager</var> . <code title="dom-UndoManager-undo"><a href="#dom-undomanager-undo">undo</a>()</code></dt>
         <dd><p>Unapplies all <a href="#dom-transaction">DOM transactions</a> in the entry immediately after
@@ -276,7 +278,7 @@
         0 &#8804; <var>n</var> &#8804; <code title="dom-UndoManager-length"><a href="#dom-undomanager-length">length</a></code>, or null otherwise.</p>
 
         <p class="note">Being able to access an arbitrary element in the <a href="#undo-transaction-history">undo transaction history</a> is needed to allow scripts to determine
-        whether new DOM transaction and the last DOM transaction should form a <a href="#dom-transaction-group">DOM transaction group</a>.</p>
+        whether new DOM transaction and the last DOM transaction should being to the same entry or not.</p>
 
         <p>The <dfn id="dom-undomanager-position" title="dom-UndoManager-position"><code>position</code></dfn>
         attribute must return the index of the <a href="#undo-position">undo position</a> in the <a href="#undo-transaction-history">undo transaction history</a>.
--- a/undomanager.html	Tue Mar 27 21:51:29 2012 -0700
+++ b/undomanager.html	Tue May 29 22:22:05 2012 -0700
@@ -8,7 +8,7 @@
 <div class=head>
 <h1>UndoManager and DOM Transaction</h1>
 
-<h2 class="no-num no-toc" id="editor's-draft-&mdash;-27-march-2012">Editor's draft &mdash; 27 March 2012</h2>
+<h2 class="no-num no-toc" id="editor's-draft-&mdash;-29-may-2012">Editor's draft &mdash; 29 May 2012</h2>
 
 <dl>
 <dt>Editor:</dt>
@@ -16,7 +16,7 @@
 </dd>
 
 <dt>Acknowledgements</dt>
-<dd>Anne van Kesteren, Annie Sullivan, Alex Russell, Aryeh Gregor, Ehsan Akhgari, Eric Uhrhane,
+<dd>Anne van Kesteren, Annie Sullivan, Alex Russell, Alex Vincent, Aryeh Gregor, Ehsan Akhgari, Eric Uhrhane,
 Frederico Caldeira Knabben, Ian Hickson, Johan "Spocke" S&ouml;rlin, Jonas Sicking, Ojan Vafai</dd>
 
 <dt>Latest version:</dt>
@@ -24,6 +24,8 @@
 http://rniwa.com/editing/undomanager.html</a></dd>
 
 <dt>Previous versions:</dt>
+<dd><a href=http://rniwa.com/editing/undomanager-2011-03-27.html>
+http://rniwa.com/editing/undomanager-2011-03-27.html</a></dd>
 <dd><a href=http://rniwa.com/editing/undomanager-2011-12-01.html>
 http://rniwa.com/editing/undomanager-2011-12-01.html</a></dd>
 <dd><a href=http://rniwa.com/editing/undomanager-2011-11-29.html>
@@ -211,11 +213,11 @@
 
         <dt><var title="">undoManager</var> . <code title=dom-UndoManager-transact><a href=#dom-undomanager-transact>transact</a>(<var title="">transaction</var>,
             <var title="">merge</var>)</code></dt>
-        <dd><p>Clears entries above the current undo position, and <a href=#dom-transaction-apply>applies</a> <var title="">transaction</var>,
-            and pushes it to the <a href=#undo-transaction-history>undo transaction history</a><a>.
-            It also forms a </a><a href=#dom-transaction-group>DOM transaction group</a> if <var title="">merge</var> is set to true.</dd>
+        <dd><p>Clears entries above the current undo position, <a href=#dom-transaction-apply>applies</a> <var title="">transaction</var>,
+            and adds it to the beginning of the first entry in <a href=#undo-transaction-history>undo transaction history</a><a>,
+            or of a new </a><a href=#undo-transaction-history>undo transaction history</a><a> if <var title="">merge</var> is set to true.</a></dd><a>
 
-        <dt><var title="">undoManager</var> . <code title=dom-UndoManager-undo><a href=#dom-undomanager-undo>undo</a>()</code></dt>
+        </a><dt><a><var title="">undoManager</var> . <code title=dom-UndoManager-undo></code></a><code title=dom-UndoManager-undo><a href=#dom-undomanager-undo>undo</a>()</code></dt>
         <dd><p>Unapplies all <a href=#dom-transaction>DOM transactions</a> in the entry immediately after
             the current position in the reverse order and increments
             <code title=dom-UndoManager-position><a href=#dom-undomanager-position>position</a></code> by 1
@@ -304,7 +306,7 @@
         0 &le; <var>n</var> &le; <code title=dom-UndoManager-length><a href=#dom-undomanager-length>length</a></code>, or null otherwise.</p>
 
         <p class=note>Being able to access an arbitrary element in the <a href=#undo-transaction-history>undo transaction history</a> is needed to allow scripts to determine
-        whether new DOM transaction and the last DOM transaction should form a <a href=#dom-transaction-group>DOM transaction group</a>.</p>
+        whether new DOM transaction and the last DOM transaction should being to the same entry or not.</p>
 
         <p>The <dfn id=dom-undomanager-position title=dom-UndoManager-position><code>position</code></dfn>
         attribute must return the index of the <a href=#undo-position>undo position</a> in the <a href=#undo-transaction-history>undo transaction history</a>.