[html5] r1864 - [e] (0) Fix spelling of tokenisation to be american. Sigh. (Re: 8.2.1: tokenisat [...]

whatwg at whatwg.org whatwg at whatwg.org
Fri Jul 11 12:32:20 PDT 2008


Author: ianh
Date: 2008-07-11 12:32:19 -0700 (Fri, 11 Jul 2008)
New Revision: 1864

Modified:
   index
   source
Log:
[e] (0) Fix spelling of tokenisation to be american. Sigh. (Re: 8.2.1: tokenisation) (credit: db)

Modified: index
===================================================================
--- index	2008-07-11 09:40:38 UTC (rev 1863)
+++ index	2008-07-11 19:32:19 UTC (rev 1864)
@@ -1703,11 +1703,11 @@
           scripting state</a>
         </ul>
 
-       <li><a href="#tokenisation"><span class=secno>8.2.4
-        </span>Tokenisation</a>
+       <li><a href="#tokenization"><span class=secno>8.2.4
+        </span>Tokenization</a>
         <ul class=toc>
-         <li><a href="#tokenising"><span class=secno>8.2.4.1.
-          </span>Tokenising character references</a>
+         <li><a href="#tokenizing"><span class=secno>8.2.4.1.
+          </span>Tokenizing character references</a>
         </ul>
 
        <li><a href="#tree-construction"><span class=secno>8.2.5 </span>Tree
@@ -8283,7 +8283,7 @@
    -->, then act as if the
      tokeniser had emitted a start tag token with the tag name "pre", then
      set the <a href="#html-0">HTML parser</a>'s <a
-     href="#tokenisation0">tokenisation</a> stage's <a
+     href="#tokenization0">tokenization</a> stage's <a
      href="#content3">content model flag</a> to <em>PLAINTEXT</em>.
 
    <li>
@@ -15114,7 +15114,7 @@
       with text in the <code title=attr-img-alt><a href="#alt">alt</a></code>
       attribute rephrasing the flowchart in prose form:</p>
 
-     <pre><p>In the common case, the data handled by the tokenisation stage
+     <pre><p>In the common case, the data handled by the tokenization stage
 comes from the network, but it can also come from script.</p>
 <p><strong><img src="images/parsing-model-overview.png" alt="The network
 passes data to the Tokeniser stage, which passes data to the Tree
@@ -34809,7 +34809,7 @@
    title="HTML documents">HTML document</a>, create an <a href="#html-0">HTML
    parser</a>, associate it with the document, act as if the tokeniser had
    emitted a start tag token with the tag name "pre", set the <a
-   href="#tokenisation0">tokenisation</a> stage's <a href="#content3">content
+   href="#tokenization0">tokenization</a> stage's <a href="#content3">content
    model flag</a> to <i>PLAINTEXT</i>, and begin to pass the stream of
    characters in the plain text document to that tokeniser.
 
@@ -43148,7 +43148,7 @@
 
   <p>The input to the HTML parsing process consists of a stream of Unicode
    characters, which is passed through a <a
-   href="#tokenisation0">tokenisation</a> stage (lexical analysis) followed
+   href="#tokenization0">tokenization</a> stage (lexical analysis) followed
    by a <a href="#tree-construction0">tree construction</a> stage (semantic
    analysis). The output is a <code>Document</code> object.
 
@@ -43157,7 +43157,7 @@
    object, but the DOM tree in such cases is still used as the model for the
    rest of the specification.
 
-  <p>In the common case, the data handled by the tokenisation stage comes
+  <p>In the common case, the data handled by the tokenization stage comes
    from the network, but <a href="#dynamic3" title="dynamic markup
    insertion">it can also come from script</a>, e.g. using the <code
    title=dom-document-write-HTML><a
@@ -43187,7 +43187,7 @@
    stream</dfn></h4>
 
   <p>The stream of Unicode characters that consists the input to the
-   tokenisation stage will be initially seen by the user agent as a stream of
+   tokenization stage will be initially seen by the user agent as a stream of
    bytes (typically coming over the network or from the local file system).
    The bytes encode the actual characters according to a particular
    <em>character encoding</em>, which the user agent must use to decode the
@@ -43821,7 +43821,7 @@
    LF characters must be removed, and any CR characters not followed by LF
    characters must be converted to LF characters. Thus, newlines in HTML DOMs
    are represented by LF characters, and there are never any CR characters in
-   the input to the <a href="#tokenisation0">tokenisation</a> stage.
+   the input to the <a href="#tokenization0">tokenization</a> stage.
 
   <p>The <dfn id=next-input>next input character</dfn> is the first character
    in the input stream that has not yet been <dfn id=consumed>consumed</dfn>.
@@ -44386,8 +44386,8 @@
    href="#with-script">with script</a> when the parser was created, and
    "disabled" otherwise.
 
-  <h4 id=tokenisation><span class=secno>8.2.4 </span><dfn
-   id=tokenisation0>Tokenisation</dfn></h4>
+  <h4 id=tokenization><span class=secno>8.2.4 </span><dfn
+   id=tokenization0>Tokenization</dfn></h4>
 
   <p>Implementations must act as if they used the following state machine to
    tokenise HTML. The state machine must start in the <a
@@ -44407,9 +44407,9 @@
    used to control the behavior of the tokeniser. It is either true or false,
    and initially must be set to the false state. The <span>insertion
    mode</span> and the <a href="#stack">stack of open elements</a> also
-   affects tokenisation.
+   affects tokenization.
 
-  <p>The output of the tokenisation step is a series of zero or more of the
+  <p>The output of the tokenization step is a series of zero or more of the
    following tokens: DOCTYPE, start tag, end tag, comment, character,
    end-of-file. DOCTYPE tokens have a name, a public identifier, a system
    identifier, and a <i>force-quirks flag</i>. When a DOCTYPE token is
@@ -45816,7 +45816,7 @@
     <p>If the end of the file was reached, reconsume the EOF character.</p>
   </dl>
 
-  <h5 id=tokenising><span class=secno>8.2.4.1. </span>Tokenising character
+  <h5 id=tokenizing><span class=secno>8.2.4.1. </span>Tokenizing character
    references</h5>
 
   <p>This section defines how to <dfn id=consume>consume a character
@@ -46205,7 +46205,7 @@
    id=tree-construction0>Tree construction</dfn></h4>
 
   <p>The input to the tree construction stage is a sequence of tokens from
-   the <a href="#tokenisation0">tokenisation</a> stage. The tree construction
+   the <a href="#tokenization0">tokenization</a> stage. The tree construction
    stage is associated with a DOM <code>Document</code> object when a parser
    is created. The "output" of this stage consists of dynamically modifying
    or extending that document's DOM tree.
@@ -46526,7 +46526,7 @@
    <li>
     <p>Then, collect all the character tokens that the tokeniser returns
      until it returns a token that is not a character token, or until it
-     stops tokenising.
+     stops tokenizing.
 
    <li>
     <p>If this process resulted in a collection of character tokens, append a
@@ -47169,7 +47169,7 @@
 
     <p>Then, collect all the character tokens that the tokeniser returns
      until it returns a token that is not a character token, or until it
-     stops tokenising.</p>
+     stops tokenizing.</p>
 
     <p>If this process resulted in a collection of character tokens, append a
      single <code>Text</code> node to the <code><a
@@ -47228,7 +47228,7 @@
 
      <dd>
       <p>Abort the processing of any nested invocations of the tokeniser,
-       yielding control back to the caller. (Tokenisation will resume when
+       yielding control back to the caller. (Tokenization will resume when
        the caller returns to the "outer" tree construction stage.)
 
      <dt>Otherwise:
@@ -48386,7 +48386,7 @@
 
     <p>Then, collect all the character tokens that the tokeniser returns
      until it returns a token that is not a character token, or until it
-     stops tokenising.</p>
+     stops tokenizing.</p>
 
     <p>If this process resulted in a collection of character tokens, append a
      single <code>Text</code> node, whose contents is the concatenation of
@@ -50213,7 +50213,7 @@
 
    <li>
     <p>Set the <a href="#html-0">HTML parser</a>'s <a
-     href="#tokenisation0">tokenisation</a> stage's <a
+     href="#tokenization0">tokenization</a> stage's <a
      href="#content3">content model flag</a> according to the <var
      title="">context</var> element, as follows:</p>
 
@@ -52853,38 +52853,37 @@
    Carlos Perelló Marín, Chao Cai, &#xc724;&#xc11d;&#xcc2c;
    (Channy Yun), Charl van Niekerk, Charles Iliya Krempeaux, Charles
    McCathieNevile, Christian Biesinger, Christian Johansen, Chriswa, Cole
-   Robison, Collin Jackson, Daniel Brumbaugh Keeney, Daniel Glazman, Daniel
-   Peng, Daniel Spång, Daniel Steinberg, Danny Sullivan, Darin Adler,
-   Darin Fisher, Dave Camp, Dave Singer, Dave Townsend<!--
-  Mossop on moz irc -->,
-   David Baron, David Bloom, David Carlisle, David Flanagan, David
-   Håsäther, David Hyatt, Dean Edridge, Debi Orton, Derek
-   Featherstone, DeWitt Clinton, Dimitri Glazkov, dolphinling, Doron
-   Rosenberg, Doug Kramer, Eira Monstad, Elliotte Harold, Eric Law, Erik
-   Arvidsson, Evan Martin, Evan Prodromou, fantasai, Felix Sasaki, Franck
-   'Shift' Quélain, Garrett Smith, Geoffrey Garen, Geoffrey Sneddon,
-   Håkon Wium Lie, Henri Sivonen, Henrik Lied, Henry Mason, Hugh
-   Winkler, Ignacio Javier, Ivo Emanuel Gonçalves, J. King, Jacques
-   Distler, James Graham, James Justin Harrell, James M Snell, James Perrett,
-   Jan-Klaas Kollhof, Jason White, Jasper Bryant-Greene, Jeff Cutsinger, Jeff
-   Walden, Jens Bannmann, Jens Fendler, Jeroen van der Meer, Jim Jewett, Jim
-   Meehan, Joe Clark, Jjgod Jiang, Joel Spolsky, Johan Herland, John Boyer,
-   John Bussjaeger, John Harding, Johnny Stenback, Jon Perlow, Jonathan
-   Worent, Jorgen Horstink, Josh Levenberg, Joshua Randall, Jukka K. Korpela,
-   Julian Reschke, Kai Hendry, <!-- Keryx Web, = Lars Gunther --> Kornel
-   Lesinski, &#x9ed2;&#x6fa4;&#x525b;&#x5fd7; (KUROSAWA Takeshi), Kristof
-   Zelechovski, Lachlan Hunt, Larry Page, Lars Gunther, Laura L. Carlson,
-   Laura Wisewell, Laurens Holst, Lee Kowalkowski, Leif Halvard Silli, Lenny
-   Domnitser, Léonard Bouchet, Leons Petrazickis,
-   Logan<!-- on moz irc -->, Loune, Maciej Stachowiak, Magnus
-   Kristiansen<!-- Dashiva -->, Malcolm Rowe, Mark Nottingham, Mark
-   Rowe<!--bdash-->, Mark Schenk, Martijn Wargers, Martin Atkins, Martin
-   Dürst, Martin Honnen, Masataka Yakura, Mathieu Henri, Matthew
-   Mastracci, Matthew Raymond, Matthew Thomas, Mattias Waldau, Max
-   Romantschuk, Michael 'Ratt' Iannarelli, Michael A. Nachbaur, Michael A.
-   Puls II<!--Shadow2531-->, Michael Carter, Michael Gratton, Michael Powers,
-   Michael(tm) Smith, Michel Fortin, Michiel van der Blonk, Mihai
-   &#x015E;ucan<!-- from ROBO Design -->, Mike Brown, Mike
+   Robison, Collin Jackson, Daniel Barclay, Daniel Brumbaugh Keeney, Daniel
+   Glazman, Daniel Peng, Daniel Spång, Daniel Steinberg, Danny
+   Sullivan, Darin Adler, Darin Fisher, Dave Camp, Dave Singer, Dave
+   Townsend<!-- Mossop on moz irc -->, David Baron, David Bloom, David
+   Carlisle, David Flanagan, David Håsäther, David Hyatt, Dean
+   Edridge, Debi Orton, Derek Featherstone, DeWitt Clinton, Dimitri Glazkov,
+   dolphinling, Doron Rosenberg, Doug Kramer, Eira Monstad, Elliotte Harold,
+   Eric Law, Erik Arvidsson, Evan Martin, Evan Prodromou, fantasai, Felix
+   Sasaki, Franck 'Shift' Quélain, Garrett Smith, Geoffrey Garen,
+   Geoffrey Sneddon, Håkon Wium Lie, Henri Sivonen, Henrik Lied, Henry
+   Mason, Hugh Winkler, Ignacio Javier, Ivo Emanuel Gonçalves, J.
+   King, Jacques Distler, James Graham, James Justin Harrell, James M Snell,
+   James Perrett, Jan-Klaas Kollhof, Jason White, Jasper Bryant-Greene, Jeff
+   Cutsinger, Jeff Walden, Jens Bannmann, Jens Fendler, Jeroen van der Meer,
+   Jim Jewett, Jim Meehan, Joe Clark, Jjgod Jiang, Joel Spolsky, Johan
+   Herland, John Boyer, John Bussjaeger, John Harding, Johnny Stenback, Jon
+   Perlow, Jonathan Worent, Jorgen Horstink, Josh Levenberg, Joshua Randall,
+   Jukka K. Korpela, Julian Reschke, Kai Hendry,
+   <!-- Keryx Web, = Lars Gunther --> Kornel Lesinski,
+   &#x9ed2;&#x6fa4;&#x525b;&#x5fd7; (KUROSAWA Takeshi), Kristof Zelechovski,
+   Lachlan Hunt, Larry Page, Lars Gunther, Laura L. Carlson, Laura Wisewell,
+   Laurens Holst, Lee Kowalkowski, Leif Halvard Silli, Lenny Domnitser,
+   Léonard Bouchet, Leons Petrazickis, Logan<!-- on moz irc -->,
+   Loune, Maciej Stachowiak, Magnus Kristiansen<!-- Dashiva -->, Malcolm
+   Rowe, Mark Nottingham, Mark Rowe<!--bdash-->, Mark Schenk, Martijn
+   Wargers, Martin Atkins, Martin Dürst, Martin Honnen, Masataka Yakura,
+   Mathieu Henri, Matthew Mastracci, Matthew Raymond, Matthew Thomas, Mattias
+   Waldau, Max Romantschuk, Michael 'Ratt' Iannarelli, Michael A. Nachbaur,
+   Michael A. Puls II<!--Shadow2531-->, Michael Carter, Michael Gratton,
+   Michael Powers, Michael(tm) Smith, Michel Fortin, Michiel van der Blonk,
+   Mihai &#x015E;ucan<!-- from ROBO Design -->, Mike Brown, Mike
    Dierken<!-- S. Mike Dierken -->, Mike Dixon, Mike Schinkel, Mike Shaver,
    Mikko Rantalainen, Neil Deakin, Neil Soiffer, Olaf Hoffmann, Olav Junker
    Kjær, Oliver Hunt, Peter Karlsson, Peter Kasting, Philip

Modified: source
===================================================================
--- source	2008-07-11 09:40:38 UTC (rev 1863)
+++ source	2008-07-11 19:32:19 UTC (rev 1864)
@@ -6520,7 +6520,7 @@
    not have the value "<code>text/html</code>"<!-- XXX matched how?
    -->, then act as if the tokeniser had emitted a start tag token
    with the tag name "pre", then set the <span>HTML parser</span>'s
-   <span>tokenisation</span> stage's <span>content model flag</span>
+   <span>tokenization</span> stage's <span>content model flag</span>
    to <em>PLAINTEXT</em>.</p></li>
 
    <li>
@@ -12877,7 +12877,7 @@
      form, with text in the <code title="attr-img-alt">alt</code>
      attribute rephrasing the flowchart in prose form:</p>
 
-     <pre><p>In the common case, the data handled by the tokenisation stage
+     <pre><p>In the common case, the data handled by the tokenization stage
 comes from the network, but it can also come from script.</p>
 <p><strong><img src="images/parsing-model-overview.png" alt="The network
 passes data to the Tokeniser stage, which passes data to the Tree
@@ -32488,7 +32488,7 @@
   object, mark it as being an <span title="HTML documents">HTML
   document</span>, create an <span>HTML parser</span>, associate it
   with the document, act as if the tokeniser had emitted a start tag
-  token with the tag name "pre", set the <span>tokenisation</span>
+  token with the tag name "pre", set the <span>tokenization</span>
   stage's <span>content model flag</span> to <i>PLAINTEXT</i>, and
   begin to pass the stream of characters in the plain text document to
   that tokeniser.</p>
@@ -40854,7 +40854,7 @@
 
   <p>The input to the HTML parsing process consists of a stream of
   Unicode characters, which is passed through a
-  <span>tokenisation</span> stage (lexical analysis) followed by a
+  <span>tokenization</span> stage (lexical analysis) followed by a
   <span>tree construction</span> stage (semantic analysis). The output
   is a <code>Document</code> object.</p>
 
@@ -40863,7 +40863,7 @@
   <code>Document</code> object, but the DOM tree in such cases is
   still used as the model for the rest of the specification.</p>
 
-  <p>In the common case, the data handled by the tokenisation stage
+  <p>In the common case, the data handled by the tokenization stage
   comes from the network, but <span title="dynamic markup
   insertion">it can also come from script</span>, e.g. using the <code
   title="dom-document-write-HTML">document.write()</code> API.</p>
@@ -40895,7 +40895,7 @@
   <h4>The <dfn>input stream</dfn></h4>
 
   <p>The stream of Unicode characters that consists the input to the
-  tokenisation stage will be initially seen by the user agent as a
+  tokenization stage will be initially seen by the user agent as a
   stream of bytes (typically coming over the network or from the local
   file system). The bytes encode the actual characters according to a
   particular <em>character encoding</em>, which the user agent must
@@ -41489,7 +41489,7 @@
   followed by LF characters must be converted to LF characters. Thus,
   newlines in HTML DOMs are represented by LF characters, and there
   are never any CR characters in the input to the
-  <span>tokenisation</span> stage.</p>
+  <span>tokenization</span> stage.</p>
 
   <p>The <dfn>next input character</dfn> is the first character in the
   input stream that has not yet been <dfn>consumed</dfn>. Initially,
@@ -42025,7 +42025,7 @@
   otherwise.</p>
 
 
-  <h4><dfn>Tokenisation</dfn></h4>
+  <h4><dfn>Tokenization</dfn></h4>
 
   <p>Implementations must act as if they used the following state
   machine to tokenise HTML. The state machine must start in the
@@ -42046,9 +42046,9 @@
   flag</dfn> is used to control the behavior of the tokeniser. It is
   either true or false, and initially must be set to the false
   state. The <span>insertion mode</span> and the <span>stack of open
-  elements</span> also affects tokenisation.</p>
+  elements</span> also affects tokenization.</p>
 
-  <p>The output of the tokenisation step is a series of zero or more
+  <p>The output of the tokenization step is a series of zero or more
   of the following tokens: DOCTYPE, start tag, end tag, comment,
   character, end-of-file. DOCTYPE tokens have a name, a public
   identifier, a system identifier, and a <i>force-quirks
@@ -43423,7 +43423,7 @@
   </dl>
 
 
-  <h5>Tokenising character references</h5>
+  <h5>Tokenizing character references</h5>
 
   <p>This section defines how to <dfn>consume a character
   reference</dfn>. This definition is used when parsing character
@@ -43629,7 +43629,7 @@
   <h4><dfn>Tree construction</dfn></h4>
 
   <p>The input to the tree construction stage is a sequence of tokens
-  from the <span>tokenisation</span> stage. The tree construction
+  from the <span>tokenization</span> stage. The tree construction
   stage is associated with a DOM <code>Document</code> object when a
   parser is created. The "output" of this stage consists of
   dynamically modifying or extending that document's DOM tree.</p>
@@ -43847,7 +43847,7 @@
 
    <li><p>Then, collect all the character tokens that the tokeniser
    returns until it returns a token that is not a character token, or
-   until it stops tokenising.</p></li>
+   until it stops tokenizing.</p></li>
 
    <li><p>If this process resulted in a collection of character
    tokens, append a single <code>Text</code> node, whose contents is
@@ -44365,7 +44365,7 @@
 
     <p>Then, collect all the character tokens that the tokeniser
     returns until it returns a token that is not a character
-    token, or until it stops tokenising.</p>
+    token, or until it stops tokenizing.</p>
 
     <p>If this process resulted in a collection of character
     tokens, append a single <code>Text</code> node to the
@@ -44425,7 +44425,7 @@
      title="dom-document-write-HTML">document.write()</code>:</dt>
 
      <dd><p>Abort the processing of any nested invocations of the
-     tokeniser, yielding control back to the caller. (Tokenisation
+     tokeniser, yielding control back to the caller. (Tokenization
      will resume when the caller returns to the "outer" tree
      construction stage.)</p></dd>
 
@@ -45658,7 +45658,7 @@
 
     <p>Then, collect all the character tokens that the tokeniser
     returns until it returns a token that is not a character
-    token, or until it stops tokenising.</p>
+    token, or until it stops tokenizing.</p>
 
     <p>If this process resulted in a collection of character
     tokens, append a single <code>Text</code> node, whose contents
@@ -47584,7 +47584,7 @@
 
    <li>
 
-    <p>Set the <span>HTML parser</span>'s <span>tokenisation</span>
+    <p>Set the <span>HTML parser</span>'s <span>tokenization</span>
     stage's <span>content model flag</span> according to the <var
     title="">context</var> element, as follows:</p>
 
@@ -48127,24 +48127,24 @@
   Marín, Chao Cai, &#xc724;&#xc11d;&#xcc2c; (Channy Yun), Charl
   van Niekerk, Charles Iliya Krempeaux, Charles McCathieNevile,
   Christian Biesinger, Christian Johansen, Chriswa, Cole Robison,
-  Collin Jackson, Daniel Brumbaugh Keeney, Daniel Glazman, Daniel
-  Peng, Daniel Spång, Daniel Steinberg, Danny Sullivan, Darin
-  Adler, Darin Fisher, Dave Camp, Dave Singer, Dave Townsend<!--
-  Mossop on moz irc -->, David Baron, David Bloom, David Carlisle,
-  David Flanagan, David Håsäther, David Hyatt, Dean
-  Edridge, Debi Orton, Derek Featherstone, DeWitt Clinton, Dimitri
-  Glazkov, dolphinling, Doron Rosenberg, Doug Kramer, Eira Monstad,
-  Elliotte Harold, Eric Law, Erik Arvidsson, Evan Martin, Evan
-  Prodromou, fantasai, Felix Sasaki, Franck 'Shift' Quélain,
-  Garrett Smith, Geoffrey Garen, Geoffrey Sneddon, Håkon Wium
-  Lie, Henri Sivonen, Henrik Lied, Henry Mason, Hugh Winkler, Ignacio
-  Javier, Ivo Emanuel Gonçalves, J. King, Jacques Distler,
-  James Graham, James Justin Harrell, James M Snell, James Perrett,
-  Jan-Klaas Kollhof, Jason White, Jasper Bryant-Greene, Jeff
-  Cutsinger, Jeff Walden, Jens Bannmann, Jens Fendler, Jeroen van der
-  Meer, Jim Jewett, Jim Meehan, Joe Clark, Jjgod Jiang, Joel Spolsky,
-  Johan Herland, John Boyer, John Bussjaeger, John Harding, Johnny
-  Stenback, Jon Perlow, Jonathan Worent, Jorgen Horstink, Josh
+  Collin Jackson, Daniel Barclay, Daniel Brumbaugh Keeney, Daniel
+  Glazman, Daniel Peng, Daniel Spång, Daniel Steinberg, Danny
+  Sullivan, Darin Adler, Darin Fisher, Dave Camp, Dave Singer, Dave
+  Townsend<!-- Mossop on moz irc -->, David Baron, David Bloom, David
+  Carlisle, David Flanagan, David Håsäther, David Hyatt,
+  Dean Edridge, Debi Orton, Derek Featherstone, DeWitt Clinton,
+  Dimitri Glazkov, dolphinling, Doron Rosenberg, Doug Kramer, Eira
+  Monstad, Elliotte Harold, Eric Law, Erik Arvidsson, Evan Martin,
+  Evan Prodromou, fantasai, Felix Sasaki, Franck 'Shift'
+  Quélain, Garrett Smith, Geoffrey Garen, Geoffrey Sneddon,
+  Håkon Wium Lie, Henri Sivonen, Henrik Lied, Henry Mason, Hugh
+  Winkler, Ignacio Javier, Ivo Emanuel Gonçalves, J. King,
+  Jacques Distler, James Graham, James Justin Harrell, James M Snell,
+  James Perrett, Jan-Klaas Kollhof, Jason White, Jasper Bryant-Greene,
+  Jeff Cutsinger, Jeff Walden, Jens Bannmann, Jens Fendler, Jeroen van
+  der Meer, Jim Jewett, Jim Meehan, Joe Clark, Jjgod Jiang, Joel
+  Spolsky, Johan Herland, John Boyer, John Bussjaeger, John Harding,
+  Johnny Stenback, Jon Perlow, Jonathan Worent, Jorgen Horstink, Josh
   Levenberg, Joshua Randall, Jukka K. Korpela, Julian Reschke, Kai
   Hendry, <!-- Keryx Web, = Lars Gunther --> Kornel Lesinski,
   &#x9ed2;&#x6fa4;&#x525b;&#x5fd7; (KUROSAWA Takeshi), Kristof




More information about the Commit-Watchers mailing list