[prev in list] [next in list] [prev in thread] [next in thread] 

List:       incubator-cvs
Subject:    svn commit: r954665 - in /incubator/public/trunk: clutch.py
From:       crossley () apache ! org
Date:       2010-06-14 23:00:18
Message-ID: 20100614230018.6749D23889E1 () eris ! apache ! org
[Download RAW message or body]

Author: crossley
Date: Mon Jun 14 23:00:17 2010
New Revision: 954665

URL: http://svn.apache.org/viewvc?rev=954665&view=rev
Log:
For the number columns, css align right.
Finish switching to the new p.a.o/committers-by-project.html
Suggested by: sebb

Modified:
    incubator/public/trunk/clutch.py
    incubator/public/trunk/site-author/clutch.js
    incubator/public/trunk/site-author/clutch.xml
    incubator/public/trunk/site-author/style/style.css
    incubator/public/trunk/site-publish/clutch.html
    incubator/public/trunk/site-publish/clutch.js
    incubator/public/trunk/site-publish/style/style.css

Modified: incubator/public/trunk/clutch.py
URL: http://svn.apache.org/viewvc/incubator/public/trunk/clutch.py?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/clutch.py (original)
+++ incubator/public/trunk/clutch.py Mon Jun 14 23:00:17 2010
@@ -420,7 +420,6 @@ class CommittersParser(HTMLParser.HTMLPa
         if self.rowCount > 1: # The first row is the column headers.
           self.projects[self.projectId].append(name)
 
-#committersUrl = "http://people.apache.org/~jim/projects.html"
 committersUrl = "http://people.apache.org/committers-by-project.html"
 committersInput = urllib2.urlopen(committersUrl)
 committers = CommittersParser()
@@ -1097,23 +1096,23 @@ for k in projectNames:
 
   if projects[k]['numberCommitters'] > 0:
     if projects[k]['numberCommitters'] > 2:
-      fileXml.write('          <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#%(a)s">%(b)s</a></td>\n' % \ +      \
fileXml.write('          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#%(a)s">%(b)s</a></td>\n' % \
                \
           {'a': projects[k]['committersSvn'], 'b': projects[k]['numberCommitters']})
     else:
-      fileXml.write('          <td class="care"><a \
href="http://people.apache.org/~jim/projects.html#%(a)s">%(b)s</a></td>\n' % \ +      \
fileXml.write('          <td class="care number"><a \
href="http://people.apache.org/committers-by-project.html#%(a)s">%(b)s</a></td>\n' % \
                \
           {'a': projects[k]['committersSvn'], 'b': projects[k]['numberCommitters']})
   else:
     fileXml.write('          <td class="care">-</td>\n')
 
   if projects[k]['numberCommittersNew'] > 0:
     if projects[k]['numberCommittersNew'] > 1:
-      fileXml.write('          <td class="cool1">%s</td>\n' % \
+      fileXml.write('          <td class="cool1 number">%s</td>\n' % \
           projects[k]['numberCommittersNew'])
     else:
-      fileXml.write('          <td class="cool2">%s</td>\n' % \
+      fileXml.write('          <td class="cool2 number">%s</td>\n' % \
           projects[k]['numberCommittersNew'])
   else:
-    fileXml.write('          <td class="care">0</td>\n')
+    fileXml.write('          <td class="care number">0</td>\n')
 
   if projects[k]['urlSvn']:
     fileXml.write('          <td class="cool1"><a href="%s">True</a></td>\n' % \
projects[k]['urlSvn']) @@ -1327,7 +1326,7 @@ stepsXml = """    <section id="steps">
         <li id="h-numberCommitters">
           J: numberCommitters - accounts have been established, total number to \
date.  Clutch parses the relevant section of the
-          <a href="http://people.apache.org/~jim/projects.html">ASF Committers by \
Project Modules</a> +          <a \
href="http://people.apache.org/committers-by-project.html">ASF Committers by Project \
Modules</a>  page and counts the total, including mentors.
         </li>
         <li id="h-numberCommittersNew">

Modified: incubator/public/trunk/site-author/clutch.js
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-author/clutch.js?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-author/clutch.js (original)
+++ incubator/public/trunk/site-author/clutch.js Mon Jun 14 23:00:17 2010
@@ -34,6 +34,7 @@ window.onload = function() {
     } else {
       theTable.tBodies[0].rows[x].cells[3].className = "cool4";
     }
+    theTable.tBodies[0].rows[x].cells[3].className += " number";
     // Days since edited Status file
     dateString = theTable.tBodies[0].rows[x].cells[8].firstChild.nodeValue;
     arrayTemp = dateString.split("-");
@@ -62,5 +63,6 @@ window.onload = function() {
     } else {
       theTable.tBodies[0].rows[x].cells[9].className = "cool4";
     }
+    theTable.tBodies[0].rows[x].cells[9].className += " number";
   }
 }

Modified: incubator/public/trunk/site-author/clutch.xml
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-author/clutch.xml?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-author/clutch.xml [utf-8] (original)
+++ incubator/public/trunk/site-author/clutch.xml [utf-8] Mon Jun 14 23:00:17 2010
@@ -126,7 +126,7 @@ Run Clutch instead: http://incubator.apa
 </li>
       </ul>
       <p>
-        Clutch last gathered: Sun Jun 13 05:02:47 2010 UTC.<br />
+        Clutch last gathered: Mon Jun 14 22:53:01 2010 UTC.<br />
         Number of podlings in incubation: 36
       </p>
       <table id="clutch">
@@ -165,8 +165,8 @@ Run Clutch instead: http://incubator.apa
           <td>2010-01-05</td>
           <td></td>
           <td>0,0,1</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#ace">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#ace">12</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/ace/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ACE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-ace-dev/">True</a></td> @@ \
-188,8 +188,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-05-25</td>
           <td></td>
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#amber">10</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#amber">10</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/amber/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/amber">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-amber-dev/">True</a></td> @@ \
-211,8 +211,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-04-29</td>
           <td></td>
           <td>1,1,9</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#aries">38</a></td>
-          <td class="cool1">5</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#aries">38</a></td> +        \
                <td class="cool1 number">5</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/aries">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/aries">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-aries-dev/">True</a></td> @@ \
-234,8 +234,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-05-19</td>
           <td></td>
           <td>1,3,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#bval">12</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#bval">12</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/bval/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/BVAL">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bval-dev/">True</a></td> @@ \
-256,9 +256,9 @@ Run Clutch instead: http://incubator.apa  <td class="cool1"><a \
href="projects/bluesky.html">True</a></td>  <td>2009-09-15</td>
           <td></td>
-          <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#bluesky">4</a></td>
-          <td class="cool1">2</td>
+          <td>0,0,1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#bluesky">4</a></td> +       \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/bluesky/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/BLUESKY">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-dev/">True</a></td> \
                @@ -279,9 +279,9 @@ Run Clutch instead: http://incubator.apa
           <td class="cool1"><a href="projects/chemistry.html">True</a></td>
           <td>2010-06-12</td>
           <td></td>
-          <td>4,5,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#chemistry">22</a></td>
                
-          <td class="cool1">4</td>
+          <td>3,5,5</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#chemistry">22</a></td> +    \
                <td class="cool1 number">4</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/chemistry/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/CMIS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-chemistry-dev/">True</a></td>
 @@ -303,8 +303,8 @@ Run Clutch instead: http://incubator.apa
           <td>2009-12-18</td>
           <td></td>
           <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#clerezza">12</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#clerezza">12</a></td> +     \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/clerezza">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/CLEREZZA">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-clerezza-dev/">True</a></td> \
@@ -326,8 +326,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-05-26</td>
           <td></td>
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#deltacloud">13</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#deltacloud">13</a></td> +   \
                <td class="care number">0</td>
           <td class="cool1"><a \
href="https://svn.apache.org/repos/asf/incubator/deltacloud/">True</a></td>  <td \
                class="care">False</td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-deltacloud-dev/">True</a></td>
 @@ -349,8 +349,8 @@ Run Clutch instead: http://incubator.apa
           <td>2008-10-23</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#droids">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#droids">6</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/droids/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/DROIDS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-droids-dev/">True</a></td> \
                @@ -371,9 +371,9 @@ Run Clutch instead: http://incubator.apa
           <td class="cool1"><a href="projects/empire-db.html">True</a></td>
           <td>2010-04-14</td>
           <td></td>
-          <td>2,2,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#empire-db">9</a></td>
                
-          <td class="cool1">2</td>
+          <td>0,2,2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#empire-db">9</a></td> +     \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/empire-db">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/EMPIREDB">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-empire-db-dev/">True</a></td>
 @@ -395,8 +395,8 @@ Run Clutch instead: http://incubator.apa
           <td>2009-08-26</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#esme">11</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#esme">11</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/esme/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ESME">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-esme-dev/">True</a></td> @@ \
-418,8 +418,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-06-02</td>
           <td></td>
           <td>2,2,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#etch">10</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#etch">10</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/etch/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ETCH">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-etch-dev/">True</a></td> @@ \
-441,8 +441,8 @@ Run Clutch instead: http://incubator.apa  <td>2008-11-18</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#hama">7</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#hama">7</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/hama">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/HAMA">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-hama-dev/">True</a></td> @@ \
-464,8 +464,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-12-17</td>
           <td></td>
           <td>0,0,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#hise">10</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#hise">10</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/hise/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/HISE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-hise-dev/">True</a></td> @@ \
-487,8 +487,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-02-05</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#imperius">11</a></td>
                
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#imperius">11</a></td> +     \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/imperius">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/imperius">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-imperius-dev/">True</a></td> \
@@ -510,8 +510,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-01-19</td>
           <td></td>
           <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#jspwiki">12</a></td>
                
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#jspwiki">12</a></td> +      \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/jspwiki/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/JSPWIKI">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-dev/">True</a></td> \
@@ -533,8 +533,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-07-08</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#kato">9</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#kato">9</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/kato/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/KATO/">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-kato-dev/">True</a></td> @@ \
                -578,9 +578,9 @@ Run Clutch instead: http://incubator.apa
           <td class="cool1"><a href="projects/libcloud.html">True</a></td>
           <td>2010-02-12</td>
           <td></td>
-          <td>0,1,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#libcloud">12</a></td>
                
-          <td class="care">0</td>
+          <td>0,0,6</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#libcloud">12</a></td> +     \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/libcloud/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/LIBCLOUD">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-libcloud/">True</a></td> @@ \
-602,8 +602,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-01-31</td>
           <td></td>
           <td>0,0,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#lucene-connectors">15</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#lucene-connectors">15</a></td>
 +          <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/lcf/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/CONNECTORS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-connectors-dev/">True</a></td>
 @@ -625,8 +625,8 @@ Run Clutch instead: http://incubator.apa
           <td>2009-02-05</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#olio">13</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#olio">13</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/olio">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/OLIO">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-olio-dev/">True</a></td> @@ \
-647,9 +647,9 @@ Run Clutch instead: http://incubator.apa  <td class="cool1"><a \
href="projects/oodt.html">True</a></td>  <td>2010-02-12</td>
           <td></td>
-          <td>0,1,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#oodt">14</a></td>
-          <td class="cool2">1</td>
+          <td>0,0,6</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#oodt">14</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/oodt/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/OODT">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-oodt-dev/">True</a></td> @@ \
-671,8 +671,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-05-30</td>
           <td></td>
           <td>4,4,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#photark">8</a></td>
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#photark">8</a></td> +       \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/photark/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/PHOTARK">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-photark-dev/">True</a></td> \
@@ -694,8 +694,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-02-22</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#rat">13</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#rat">13</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/rat">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/RAT">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-rat-dev/">True</a></td> @@ \
-717,8 +717,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-02-17</td>
           <td></td>
           <td>0,3,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#river">22</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#river">22</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/river/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/RIVER">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-river-dev/">True</a></td> @@ \
-740,8 +740,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-05-21</td>
           <td></td>
           <td>1,1,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#shiro">11</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#shiro">11</a></td> +        \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/shiro/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SHIRO">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-shiro-dev/">True</a></td> @@ \
-763,8 +763,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-02-22</td>
           <td></td>
           <td>0,1,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#sis">8</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#sis">8</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/sis/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SIS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sis-dev/">True</a></td> @@ \
-786,8 +786,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-07-06</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="care"><a \
                href="http://people.apache.org/~jim/projects.html#socialsite">2</a></td>
                
-          <td class="care">0</td>
+          <td class="care number"><a \
href="http://people.apache.org/committers-by-project.html#socialsite">2</a></td> +    \
                <td class="care number">0</td>
           <td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/socialsite/">True</a></td>  <td \
                class="care">False</td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-socialsite-dev/">True</a></td>
 @@ -809,8 +809,8 @@ Run Clutch instead: http://incubator.apa
           <td>2010-02-09</td>
           <td></td>
           <td>0,0,4</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#stonehenge">21</a></td>
                
-          <td class="cool1">3</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#stonehenge">21</a></td> +   \
                <td class="cool1 number">3</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/stonehenge">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/STONEHENGE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-stonehenge-dev/">True</a></td>
 @@ -832,8 +832,8 @@ Run Clutch instead: http://incubator.apa
           <td>2008-11-12</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#tashi">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#tashi">6</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/tashi">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/tashi">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-tashi-dev/">True</a></td> @@ \
-855,8 +855,8 @@ Run Clutch instead: http://incubator.apa  <td>2008-09-02</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#thrift">14</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#thrift">14</a></td> +       \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/thrift/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/thrift">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-dev/">True</a></td> \
@@ -878,8 +878,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-09-16</td>
           <td></td>
           <td>0,0,1</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#vcl">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#vcl">12</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/vcl">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/VCL">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vcl-dev/">True</a></td> @@ \
-901,8 +901,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-06-04</td>
           <td></td>
           <td>2,2,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#vxquery">8</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#vxquery">8</a></td> +       \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/vxquery">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/VXQUERY">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vxquery-dev/">True</a></td> \
@@ -924,8 +924,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-06-08</td>
           <td></td>
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#whirr">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#whirr">6</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/whirr/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/WHIRR">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-whirr-dev/">True</a></td> @@ \
-947,8 +947,8 @@ Run Clutch instead: http://incubator.apa  <td>2009-07-06</td>
           <td></td>
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#wink">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#wink">12</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/wink">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/wink">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-wink-dev/">True</a></td> @@ \
-970,8 +970,8 @@ Run Clutch instead: http://incubator.apa  <td>2010-04-30</td>
           <td></td>
           <td>1,1,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#wookie">8</a></td>
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#wookie">8</a></td> +        \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/wookie">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/WOOKIE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-wookie-dev/">True</a></td> \
@@ -994,7 +994,7 @@ Run Clutch instead: http://incubator.apa  <td></td>
           <td>4,4,4</td>
           <td class="care">-</td>
-          <td class="care">0</td>
+          <td class="care number">0</td>
           <td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/zetacomponents/">True</a></td>  <td \
class="care">False</td>  <td class="care">False</td>
@@ -1160,7 +1160,7 @@ Run Clutch instead: http://incubator.apa
         <li id="h-numberCommitters">
           J: numberCommitters - accounts have been established, total number to \
date.  Clutch parses the relevant section of the
-          <a href="http://people.apache.org/~jim/projects.html">ASF Committers by \
Project Modules</a> +          <a \
href="http://people.apache.org/committers-by-project.html">ASF Committers by Project \
Modules</a>  page and counts the total, including mentors.
         </li>
         <li id="h-numberCommittersNew">

Modified: incubator/public/trunk/site-author/style/style.css
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-author/style/style.css?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-author/style/style.css (original)
+++ incubator/public/trunk/site-author/style/style.css Mon Jun 14 23:00:17 2010
@@ -76,6 +76,9 @@ h4 {
 #clutch td {
   padding: 0.2em;
 }
+#clutch td.number {
+  text-align: right; 
+}
 #clutch td.issue {
   background-color: #d55e00;
 }

Modified: incubator/public/trunk/site-publish/clutch.html
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-publish/clutch.html?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-publish/clutch.html [utf-8] (original)
+++ incubator/public/trunk/site-publish/clutch.html [utf-8] Mon Jun 14 23:00:17 2010
@@ -211,7 +211,7 @@ href="http://wiki.apache.org/incubator">
 </li>
       </ul>
 <p>
-        Clutch last gathered: Sun Jun 13 05:02:47 2010 UTC.<br />
+        Clutch last gathered: Mon Jun 14 22:53:01 2010 UTC.<br />
         Number of podlings in incubation: 36
       </p>
 <table id="clutch" class="colortable" width="100%">
@@ -250,8 +250,8 @@ href="http://wiki.apache.org/incubator">
           <td>2010-01-05</td>
           <td />
           <td>0,0,1</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#ace">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#ace">12</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/ace/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ACE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-ace-dev/">True</a></td> @@ \
-273,8 +273,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-05-25</td>
           <td />
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#amber">10</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#amber">10</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/amber/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/amber">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-amber-dev/">True</a></td> @@ \
-296,8 +296,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-04-29</td>
           <td />
           <td>1,1,9</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#aries">38</a></td>
-          <td class="cool1">5</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#aries">38</a></td> +        \
                <td class="cool1 number">5</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/aries">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/aries">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-aries-dev/">True</a></td> @@ \
-319,8 +319,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-05-19</td>
           <td />
           <td>1,3,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#bval">12</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#bval">12</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/bval/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/BVAL">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bval-dev/">True</a></td> @@ \
-341,9 +341,9 @@ href="http://wiki.apache.org/incubator">  <td class="cool1"><a \
href="projects/bluesky.html">True</a></td>  <td>2009-09-15</td>
           <td />
-          <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#bluesky">4</a></td>
-          <td class="cool1">2</td>
+          <td>0,0,1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#bluesky">4</a></td> +       \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/bluesky/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/BLUESKY">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-dev/">True</a></td> \
                @@ -364,9 +364,9 @@ href="http://wiki.apache.org/incubator">
           <td class="cool1"><a href="projects/chemistry.html">True</a></td>
           <td>2010-06-12</td>
           <td />
-          <td>4,5,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#chemistry">22</a></td>
                
-          <td class="cool1">4</td>
+          <td>3,5,5</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#chemistry">22</a></td> +    \
                <td class="cool1 number">4</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/chemistry/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/CMIS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-chemistry-dev/">True</a></td>
 @@ -388,8 +388,8 @@ href="http://wiki.apache.org/incubator">
           <td>2009-12-18</td>
           <td />
           <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#clerezza">12</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#clerezza">12</a></td> +     \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/clerezza">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/CLEREZZA">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-clerezza-dev/">True</a></td> \
@@ -411,8 +411,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-05-26</td>
           <td />
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#deltacloud">13</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#deltacloud">13</a></td> +   \
                <td class="care number">0</td>
           <td class="cool1"><a \
href="https://svn.apache.org/repos/asf/incubator/deltacloud/">True</a></td>  <td \
                class="care">False</td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-deltacloud-dev/">True</a></td>
 @@ -434,8 +434,8 @@ href="http://wiki.apache.org/incubator">
           <td>2008-10-23</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#droids">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#droids">6</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/droids/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/DROIDS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-droids-dev/">True</a></td> \
                @@ -456,9 +456,9 @@ href="http://wiki.apache.org/incubator">
           <td class="cool1"><a href="projects/empire-db.html">True</a></td>
           <td>2010-04-14</td>
           <td />
-          <td>2,2,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#empire-db">9</a></td>
                
-          <td class="cool1">2</td>
+          <td>0,2,2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#empire-db">9</a></td> +     \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/empire-db">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/EMPIREDB">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-empire-db-dev/">True</a></td>
 @@ -480,8 +480,8 @@ href="http://wiki.apache.org/incubator">
           <td>2009-08-26</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#esme">11</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#esme">11</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/esme/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ESME">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-esme-dev/">True</a></td> @@ \
-503,8 +503,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-06-02</td>
           <td />
           <td>2,2,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#etch">10</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#etch">10</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/etch/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ETCH">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-etch-dev/">True</a></td> @@ \
-526,8 +526,8 @@ href="http://wiki.apache.org/incubator">  <td>2008-11-18</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#hama">7</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#hama">7</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/hama">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/HAMA">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-hama-dev/">True</a></td> @@ \
-549,8 +549,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-12-17</td>
           <td />
           <td>0,0,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#hise">10</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#hise">10</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/hise/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/HISE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-hise-dev/">True</a></td> @@ \
-572,8 +572,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-02-05</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#imperius">11</a></td>
                
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#imperius">11</a></td> +     \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/imperius">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/imperius">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-imperius-dev/">True</a></td> \
@@ -595,8 +595,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-01-19</td>
           <td />
           <td>0,0,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#jspwiki">12</a></td>
                
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#jspwiki">12</a></td> +      \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/jspwiki/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/JSPWIKI">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-dev/">True</a></td> \
@@ -618,8 +618,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-07-08</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#kato">9</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#kato">9</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/kato/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/KATO/">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-kato-dev/">True</a></td> @@ \
                -663,9 +663,9 @@ href="http://wiki.apache.org/incubator">
           <td class="cool1"><a href="projects/libcloud.html">True</a></td>
           <td>2010-02-12</td>
           <td />
-          <td>0,1,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#libcloud">12</a></td>
                
-          <td class="care">0</td>
+          <td>0,0,6</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#libcloud">12</a></td> +     \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/libcloud/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/LIBCLOUD">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-libcloud/">True</a></td> @@ \
-687,8 +687,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-01-31</td>
           <td />
           <td>0,0,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#lucene-connectors">15</a></td>
                
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#lucene-connectors">15</a></td>
 +          <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/lcf/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/CONNECTORS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-connectors-dev/">True</a></td>
 @@ -710,8 +710,8 @@ href="http://wiki.apache.org/incubator">
           <td>2009-02-05</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#olio">13</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#olio">13</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/olio">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/OLIO">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-olio-dev/">True</a></td> @@ \
-732,9 +732,9 @@ href="http://wiki.apache.org/incubator">  <td class="cool1"><a \
href="projects/oodt.html">True</a></td>  <td>2010-02-12</td>
           <td />
-          <td>0,1,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#oodt">14</a></td>
-          <td class="cool2">1</td>
+          <td>0,0,6</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#oodt">14</a></td> +         \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/oodt/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/OODT">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-oodt-dev/">True</a></td> @@ \
-756,8 +756,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-05-30</td>
           <td />
           <td>4,4,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#photark">8</a></td>
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#photark">8</a></td> +       \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/photark/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/PHOTARK">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-photark-dev/">True</a></td> \
@@ -779,8 +779,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-02-22</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#rat">13</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#rat">13</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/rat">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/RAT">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-rat-dev/">True</a></td> @@ \
-802,8 +802,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-02-17</td>
           <td />
           <td>0,3,3</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#river">22</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#river">22</a></td> +        \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/river/">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/RIVER">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-river-dev/">True</a></td> @@ \
-825,8 +825,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-05-21</td>
           <td />
           <td>1,1,5</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#shiro">11</a></td>
-          <td class="cool2">1</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#shiro">11</a></td> +        \
                <td class="cool2 number">1</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/shiro/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SHIRO">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-shiro-dev/">True</a></td> @@ \
-848,8 +848,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-02-22</td>
           <td />
           <td>0,1,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#sis">8</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#sis">8</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/sis/">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SIS">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sis-dev/">True</a></td> @@ \
-871,8 +871,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-07-06</td>
           <td />
           <td>0,0,0</td>
-          <td class="care"><a \
                href="http://people.apache.org/~jim/projects.html#socialsite">2</a></td>
                
-          <td class="care">0</td>
+          <td class="care number"><a \
href="http://people.apache.org/committers-by-project.html#socialsite">2</a></td> +    \
                <td class="care number">0</td>
           <td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/socialsite/">True</a></td>  <td \
                class="care">False</td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-socialsite-dev/">True</a></td>
 @@ -894,8 +894,8 @@ href="http://wiki.apache.org/incubator">
           <td>2010-02-09</td>
           <td />
           <td>0,0,4</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#stonehenge">21</a></td>
                
-          <td class="cool1">3</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#stonehenge">21</a></td> +   \
                <td class="cool1 number">3</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/stonehenge">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/STONEHENGE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-stonehenge-dev/">True</a></td>
 @@ -917,8 +917,8 @@ href="http://wiki.apache.org/incubator">
           <td>2008-11-12</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#tashi">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#tashi">6</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/tashi">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/tashi">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-tashi-dev/">True</a></td> @@ \
-940,8 +940,8 @@ href="http://wiki.apache.org/incubator">  <td>2008-09-02</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#thrift">14</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#thrift">14</a></td> +       \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/thrift/">True</a></td>
                
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/thrift">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-dev/">True</a></td> \
@@ -963,8 +963,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-09-16</td>
           <td />
           <td>0,0,1</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#vcl">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#vcl">12</a></td> +          \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/vcl">True</a></td>
           <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/VCL">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vcl-dev/">True</a></td> @@ \
-986,8 +986,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-06-04</td>
           <td />
           <td>2,2,6</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#vxquery">8</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#vxquery">8</a></td> +       \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/vxquery">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/VXQUERY">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vxquery-dev/">True</a></td> \
@@ -1009,8 +1009,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-06-08</td>
           <td />
           <td>4,-,-</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#whirr">6</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#whirr">6</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/whirr/">True</a></td>
                
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/WHIRR">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-whirr-dev/">True</a></td> @@ \
-1032,8 +1032,8 @@ href="http://wiki.apache.org/incubator">  <td>2009-07-06</td>
           <td />
           <td>0,0,0</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#wink">12</a></td>
-          <td class="care">0</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#wink">12</a></td> +         \
                <td class="care number">0</td>
           <td class="cool1"><a \
                href="https://svn.apache.org/repos/asf/incubator/wink">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/wink">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-wink-dev/">True</a></td> @@ \
-1055,8 +1055,8 @@ href="http://wiki.apache.org/incubator">  <td>2010-04-30</td>
           <td />
           <td>1,1,2</td>
-          <td class="cool1"><a \
                href="http://people.apache.org/~jim/projects.html#wookie">8</a></td>
-          <td class="cool1">2</td>
+          <td class="cool1 number"><a \
href="http://people.apache.org/committers-by-project.html#wookie">8</a></td> +        \
                <td class="cool1 number">2</td>
           <td class="cool1"><a \
                href="http://svn.apache.org/repos/asf/incubator/wookie">True</a></td>
           <td class="cool1"><a \
                href="https://issues.apache.org/jira/browse/WOOKIE">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-wookie-dev/">True</a></td> \
@@ -1079,7 +1079,7 @@ href="http://wiki.apache.org/incubator">  <td />
           <td>4,4,4</td>
           <td class="care">-</td>
-          <td class="care">0</td>
+          <td class="care number">0</td>
           <td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/zetacomponents/">True</a></td>  <td \
class="care">False</td>  <td class="care">False</td>
@@ -1251,7 +1251,7 @@ href="http://wiki.apache.org/incubator">
         <li id="h-numberCommitters">
           J: numberCommitters - accounts have been established, total number to \
date.  Clutch parses the relevant section of the
-          <a href="http://people.apache.org/~jim/projects.html">ASF Committers by \
Project Modules</a> +          <a \
href="http://people.apache.org/committers-by-project.html">ASF Committers by Project \
Modules</a>  page and counts the total, including mentors.
         </li>
         <li id="h-numberCommittersNew">

Modified: incubator/public/trunk/site-publish/clutch.js
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-publish/clutch.js?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-publish/clutch.js (original)
+++ incubator/public/trunk/site-publish/clutch.js Mon Jun 14 23:00:17 2010
@@ -34,6 +34,7 @@ window.onload = function() {
     } else {
       theTable.tBodies[0].rows[x].cells[3].className = "cool4";
     }
+    theTable.tBodies[0].rows[x].cells[3].className += " number";
     // Days since edited Status file
     dateString = theTable.tBodies[0].rows[x].cells[8].firstChild.nodeValue;
     arrayTemp = dateString.split("-");
@@ -62,5 +63,6 @@ window.onload = function() {
     } else {
       theTable.tBodies[0].rows[x].cells[9].className = "cool4";
     }
+    theTable.tBodies[0].rows[x].cells[9].className += " number";
   }
 }

Modified: incubator/public/trunk/site-publish/style/style.css
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-publish/style/style.css?rev=954665&r1=954664&r2=954665&view=diff
 ==============================================================================
--- incubator/public/trunk/site-publish/style/style.css (original)
+++ incubator/public/trunk/site-publish/style/style.css Mon Jun 14 23:00:17 2010
@@ -76,6 +76,9 @@ h4 {
 #clutch td {
   padding: 0.2em;
 }
+#clutch td.number {
+  text-align: right; 
+}
 #clutch td.issue {
   background-color: #d55e00;
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@incubator.apache.org
For additional commands, e-mail: cvs-help@incubator.apache.org


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic