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

List:       incubator-cvs
Subject:    svn commit: r708090 - in /incubator/public/trunk: clutch.py
From:       crossley () apache ! org
Date:       2008-10-27 5:37:35
Message-ID: 20081027053735.4B0C323888EB () eris ! apache ! org
[Download RAW message or body]

Author: crossley
Date: Sun Oct 26 22:37:34 2008
New Revision: 708090

URL: http://svn.apache.org/viewvc?rev=708090&view=rev
Log:
Detect whether their Issue Tracker and Subversion are set up.

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

Modified: incubator/public/trunk/clutch.py
URL: http://svn.apache.org/viewvc/incubator/public/trunk/clutch.py?rev=708090&r1=708089&r2=708090&view=diff
 ==============================================================================
--- incubator/public/trunk/clutch.py (original)
+++ incubator/public/trunk/clutch.py Sun Oct 26 22:37:34 2008
@@ -395,6 +395,44 @@
   if projects[k]['committersSvn'] == None:
     print "INFO: %s: Does not yet have committers accounts" % k
 
+  # Detect if they have SVN yet.
+  # First, try the url from their status page
+  # then, try a standard url.
+  urlSvnDefault = "http://svn.apache.org/repos/asf/incubator/%s/" % \
projects[k]['statusFileName'] +  if urlSvnDefault == projects[k]['urlSvn']:
+    urlSvnDefault = ""
+  for url in [projects[k]['urlSvn'], urlSvnDefault]:
+    if url == "":
+      continue
+    try:
+      urllib2.urlopen(url)
+    except IOError:
+      projects[k]['urlSvn'] = ""
+    else:
+      projects[k]['urlSvn'] = url
+      break
+  if not projects[k]['urlSvn']:
+    print 'INFO: %s: Does not yet have SVN' % k
+
+  # Detect if they have Tracker yet.
+  # First, try the url from their status page
+  # then, try a standard url.
+  urlTrackerDefault = "http://issues.apache.org/jira/browse/%s/" % \
projects[k]['statusFileName'].upper() +  if urlTrackerDefault == \
projects[k]['urlTracker']: +    urlTrackerDefault = ""
+  for url in [projects[k]['urlTracker'], urlTrackerDefault]:
+    if url == "":
+      continue
+    try:
+      urllib2.urlopen(url)
+    except IOError:
+      projects[k]['urlTracker'] = ""
+    else:
+      projects[k]['urlTracker'] = url
+      break
+  if not projects[k]['urlTracker']:
+    print 'INFO: %s: Does not yet have an Issue Tracker' % k
+
   # Detect mail lists established
   try:
     projectMailLists[k]
@@ -458,6 +496,8 @@
     # Skip counting various commits which were to standardise the status files.
     if row.getAttribute('revision') == "707389":
       continue
+    if row.getAttribute('revision') == "708087":
+      continue
     rowCounter += 1
     date = getText(row.getElementsByTagName("date")[0].childNodes)
     matchSvn = re.search(statusLogRE, date)
@@ -567,16 +607,22 @@
           J: numberCommitters - accounts have been established, total number
         </li>
         <li>
-          K: hasMailListDev
+          K: hasSvn - Subversion repository is created
+        </li>
+        <li>
+          L: hasTracker - has an Issue Tracker
         </li>
         <li>
-          L: hasMailListCommits
+          M: hasMailListDev
         </li>
         <li>
-          M: hasWebSite
+          N: hasMailListCommits
         </li>
         <li>
-          N: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release) +          O: hasWebSite
+        </li>
+        <li>
+          P: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release)  </li>
         <li>
           <span class="care">extra care</span>
@@ -609,6 +655,8 @@
           <th>L</th>
           <th>M</th>
           <th>N</th>
+          <th>O</th>
+          <th>P</th>
         </tr>
 """ % {'gatherDate': gatherDateString,
        'numProjects': len(projects)
@@ -688,6 +736,16 @@
   else:
     fileXml.write('          <td>-</td>\n')
 
+  if projects[k]['urlSvn']:
+    fileXml.write('          <td class="cool1"><a href="%s">True</a></td>\n' % \
projects[k]['urlSvn']) +  else:
+    fileXml.write('          <td>False</td>\n')
+
+  if projects[k]['urlTracker']:
+    fileXml.write('          <td class="cool1"><a href="%s">True</a></td>\n' % \
projects[k]['urlTracker']) +  else:
+    fileXml.write('          <td>False</td>\n')
+
   if projects[k]['hasMailListDev']:
     fileXml.write('          <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-%s-dev/">True</a></td>\n' % \
k)  else:

Modified: incubator/public/trunk/site-author/clutch.xml
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-author/clutch.xml?rev=708090&r1=708089&r2=708090&view=diff
 ==============================================================================
--- incubator/public/trunk/site-author/clutch.xml (original)
+++ incubator/public/trunk/site-author/clutch.xml Sun Oct 26 22:37:34 2008
@@ -70,16 +70,22 @@
           J: numberCommitters - accounts have been established, total number
         </li>
         <li>
-          K: hasMailListDev
+          K: hasSvn - Subversion repository is created
         </li>
         <li>
-          L: hasMailListCommits
+          L: hasTracker - has an Issue Tracker
         </li>
         <li>
-          M: hasWebSite
+          M: hasMailListDev
         </li>
         <li>
-          N: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release) +          N: hasMailListCommits
+        </li>
+        <li>
+          O: hasWebSite
+        </li>
+        <li>
+          P: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release)  </li>
         <li>
           <span class="care">extra care</span>
@@ -91,7 +97,7 @@
         </li>
       </ul>
       <p>
-        Clutch last gathered: Mon Oct 27 02:54:19 2008 UTC.<br />
+        Clutch last gathered: Mon Oct 27 05:28:18 2008 UTC.<br />
         Number of podlings in incubation: 35
       </p>
       <table id="clutch">
@@ -112,6 +118,8 @@
           <th>L</th>
           <th>M</th>
           <th>N</th>
+          <th>O</th>
+          <th>P</th>
         </tr>
         <tr>
           <td>Abdera</td>
@@ -126,6 +134,8 @@
           <td class="cool3">196</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#abdera">13</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/abdera/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ABDERA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-abdera-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-abdera-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/abdera/">True</a></td> @@ -144,6 +154,8 @@
           <td class="cool2">97</td>
           <td>0,5,9</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#bluesky">8</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/bluesky/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/bluesky/">True</a></td> @@ -162,6 +174,8 @@
           <td class="cool1">9</td>
           <td>2,2,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#buildr">8</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/buildr/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/BUILDR">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-buildr-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-buildr-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/buildr/">True</a></td> @@ -180,6 +194,8 @@
           <td class="cool2">72</td>
           <td>0,1,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#click">8</a></td> +          \
<td>False</td> +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/CLICK/">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-click-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-click-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/click/">True</a></td> @@ -198,6 +214,8 @@
           <td class="cool1">18</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#composer">5</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/composer/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-composer-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-composer-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/composer/">True</a></td> @@ -216,6 +234,8 @@
           <td class="cool3">209</td>
           <td>0,0,4</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#couchdb">10</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/couchdb/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/COUCHDB">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-couchdb-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-couchdb-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/couchdb/">True</a></td> @@ -234,6 +254,8 @@
           <td class="cool1">4</td>
           <td>3,-,-</td>
           <td>-</td>
+          <td>False</td>
+          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-droids-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-droids-commits/">True</a></td>
  <td>False</td>
@@ -252,6 +274,8 @@
           <td class="cool2">82</td>
           <td>0,3,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#empire-db">8</a></td> +          \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/empire-db">True</a></td> +          \
<td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-empire-db-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/empire-db/">True</a></td> @@ -270,6 +294,8 @@
           <td class="cool1">33</td>
           <td>1,-,-</td>
           <td>-</td>
+          <td>False</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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-etch-commits/">True</a></td> \
<td>False</td> @@ -288,6 +314,8 @@
           <td class="cool1">33</td>
           <td>1,1,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#hama">10</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-hama-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/hama/">True</a></td> @@ -306,6 +334,8 @@
           <td class="cool1">29</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#imperius">10</a></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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-imperius-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/imperius/">True</a></td> @@ -324,6 +354,8 @@
           <td class="cool1">29</td>
           <td>1,2,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#jsecurity">11</a></td> +          \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/jsecurity">True</a></td> +          \
                <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/JSEC">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jsecurity-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jsecurity-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/jsecurity/">True</a></td> @@ -342,6 +374,8 @@
           <td class="cool1">29</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#jspwiki">12</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/jspwiki/">True</a></td> @@ -360,6 +394,8 @@
           <td class="cool4">467</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#logging-log4php">7</a></td> +       \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/log4php/trunk">True</a></td> +        \
<td class="cool1"><a \
href="http://issues.apache.org/jira/browse/LOG4PHP/">True</a></td>  <td>False</td>
           <td>False</td>
           <td class="cool1"><a \
href="http://incubator.apache.org/log4php/">True</a></td> @@ -378,6 +414,8 @@
           <td class="cool4">699</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#lokahi">6</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/lokahi/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/lokahi">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-lokahi-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-lokahi-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/lokahi/">True</a></td> @@ -396,6 +434,8 @@
           <td class="cool4">716</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#lucene-dot-net">3</a></td> +        \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/lucene.net/">True</a></td> +          \
<td class="cool1"><a \
href="http://issues.apache.org/jira/browse/LUCENENET">True</a></td>  <td>False</td>
           <td>False</td>
           <td class="cool1"><a \
href="http://incubator.apache.org/lucene.net/">True</a></td> @@ -414,6 +454,8 @@
           <td class="cool3">151</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#nmaven">9</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/nmaven/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-nmaven-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-nmaven-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/nmaven/">True</a></td> @@ -432,6 +474,8 @@
           <td class="cool1">28</td>
           <td>2,-,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#olio">12</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/olio">True</a></td> \
+          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-olio-commits/">True</a></td> \
<td>False</td> @@ -450,6 +494,8 @@
           <td class="cool3">196</td>
           <td>0,0,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#pdfbox">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/pdfbox/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/PDFBOX">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-pdfbox-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-pdfbox-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/pdfbox/">True</a></td> @@ -468,6 +514,8 @@
           <td class="cool1">1</td>
           <td>4,4,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#photark">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/photark/">True</a></td>
 +          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-photark-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/photark/">True</a></td> @@ -486,6 +534,8 @@
           <td class="cool1">29</td>
           <td>3,3,6</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#qpid">39</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/qpid/trunk/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/QPID">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-qpid-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-qpid-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/qpid/">True</a></td> @@ -504,6 +554,8 @@
           <td class="cool3">267</td>
           <td>0,0,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#rat">9</a></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>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-rat-commits/">True</a></td>
                
           <td class="cool1"><a href="http://incubator.apache.org/rat/">True</a></td>
@@ -522,6 +574,8 @@
           <td class="cool3">194</td>
           <td>0,0,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#rcf">18</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/viewvc/incubator/rcf/">True</a></td> +   \
                <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/RCF">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-rcf-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-rcf-commits/">True</a></td>  \
<td>False</td> @@ -540,6 +594,8 @@
           <td class="cool4">531</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#river">20</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/river/">True</a></td>
 +          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-river-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/river/">True</a></td> @@ -558,6 +614,8 @@
           <td class="cool1">29</td>
           <td>1,4,4</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#sanselan">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/sanselan">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SANSELAN">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-sanselan-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sanselan-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/sanselan/">True</a></td> @@ -576,6 +634,8 @@
           <td class="cool3">139</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#shindig">26</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/shindig">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SHINDIG">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-shindig-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-shindig-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/shindig/">True</a></td> @@ -594,6 +654,8 @@
           <td class="cool3">122</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#sling">12</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/sling/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SLING">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-sling-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sling-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/sling/">True</a></td> @@ -616,6 +678,8 @@
           <td>False</td>
           <td>False</td>
           <td>False</td>
+          <td>False</td>
+          <td>False</td>
         </tr>
         <tr>
           <td>Thrift</td>
@@ -630,6 +694,8 @@
           <td class="cool1">55</td>
           <td>1,3,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#thrift">9</a></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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/thrift/">True</a></td> @@ -648,6 +714,8 @@
           <td class="cool1">11</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#tika">11</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/tika/">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/TIKA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-tika-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-tika-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/tika/">True</a></td> @@ -670,6 +738,8 @@
           <td>False</td>
           <td>False</td>
           <td>False</td>
+          <td>False</td>
+          <td>False</td>
         </tr>
         <tr>
           <td>UIMA</td>
@@ -684,6 +754,8 @@
           <td class="cool4">612</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#uima">10</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/uima">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/UIMA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-uima-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-uima-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/uima/">True</a></td> @@ -702,6 +774,8 @@
           <td class="cool1">26</td>
           <td>1,-,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#vcl">4</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vcl-commits/">True</a></td>  \
<td>False</td> @@ -720,6 +794,8 @@
           <td class="cool4">1000</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#portals-wsrp4j">15</a></td> +       \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/portals/wsrp4j/">True</a></td> +          <td \
class="cool1"><a href="http://issues.apache.org/jira/browse/WSRP4J">True</a></td>  \
<td>False</td>  <td>False</td>
           <td class="cool1"><a \
href="http://portals.apache.org/wsrp4j/">True</a></td> @@ -738,6 +814,8 @@
           <td class="cool4">860</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#xap">13</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/xap/">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/XAP">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-xap-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-xap-commits/">True</a></td>
                
           <td class="cool1"><a href="http://incubator.apache.org/xap/">True</a></td>

Modified: incubator/public/trunk/site-publish/clutch.html
URL: http://svn.apache.org/viewvc/incubator/public/trunk/site-publish/clutch.html?rev=708090&r1=708089&r2=708090&view=diff
 ==============================================================================
--- incubator/public/trunk/site-publish/clutch.html (original)
+++ incubator/public/trunk/site-publish/clutch.html Sun Oct 26 22:37:34 2008
@@ -159,16 +159,22 @@
           J: numberCommitters - accounts have been established, total number
         </li>
         <li>
-          K: hasMailListDev
+          K: hasSvn - Subversion repository is created
         </li>
         <li>
-          L: hasMailListCommits
+          L: hasTracker - has an Issue Tracker
         </li>
         <li>
-          M: hasWebSite
+          M: hasMailListDev
         </li>
         <li>
-          N: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release) +          N: hasMailListCommits
+        </li>
+        <li>
+          O: hasWebSite
+        </li>
+        <li>
+          P: hasDistribution - has w.a.o/dist/incubator/... area (not necessarily \
yet a release)  </li>
         <li>
           <span class="care">extra care</span>
@@ -180,7 +186,7 @@
         </li>
       </ul>
 <p>
-        Clutch last gathered: Mon Oct 27 02:54:19 2008 UTC.<br />
+        Clutch last gathered: Mon Oct 27 05:28:18 2008 UTC.<br />
         Number of podlings in incubation: 35
       </p>
 <table id="clutch" class="colortable" width="100%">
@@ -201,6 +207,8 @@
           <th>L</th>
           <th>M</th>
           <th>N</th>
+          <th>O</th>
+          <th>P</th>
         </tr>
         <tr>
           <td>Abdera</td>
@@ -215,6 +223,8 @@
           <td class="cool3">196</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#abdera">13</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/abdera/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/ABDERA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-abdera-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-abdera-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/abdera/">True</a></td> @@ -233,6 +243,8 @@
           <td class="cool2">97</td>
           <td>0,5,9</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#bluesky">8</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/bluesky/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-bluesky-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/bluesky/">True</a></td> @@ -251,6 +263,8 @@
           <td class="cool1">9</td>
           <td>2,2,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#buildr">8</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/buildr/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/BUILDR">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-buildr-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-buildr-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/buildr/">True</a></td> @@ -269,6 +283,8 @@
           <td class="cool2">72</td>
           <td>0,1,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#click">8</a></td> +          \
<td>False</td> +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/CLICK/">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-click-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-click-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/click/">True</a></td> @@ -287,6 +303,8 @@
           <td class="cool1">18</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#composer">5</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/composer/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-composer-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-composer-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/composer/">True</a></td> @@ -305,6 +323,8 @@
           <td class="cool3">209</td>
           <td>0,0,4</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#couchdb">10</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/couchdb/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/COUCHDB">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-couchdb-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-couchdb-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/couchdb/">True</a></td> @@ -323,6 +343,8 @@
           <td class="cool1">4</td>
           <td>3,-,-</td>
           <td>-</td>
+          <td>False</td>
+          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-droids-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-droids-commits/">True</a></td>
  <td>False</td>
@@ -341,6 +363,8 @@
           <td class="cool2">82</td>
           <td>0,3,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#empire-db">8</a></td> +          \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/empire-db">True</a></td> +          \
<td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-empire-db-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/empire-db/">True</a></td> @@ -359,6 +383,8 @@
           <td class="cool1">33</td>
           <td>1,-,-</td>
           <td>-</td>
+          <td>False</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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-etch-commits/">True</a></td> \
<td>False</td> @@ -377,6 +403,8 @@
           <td class="cool1">33</td>
           <td>1,1,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#hama">10</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-hama-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/hama/">True</a></td> @@ -395,6 +423,8 @@
           <td class="cool1">29</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#imperius">10</a></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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-imperius-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/imperius/">True</a></td> @@ -413,6 +443,8 @@
           <td class="cool1">29</td>
           <td>1,2,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#jsecurity">11</a></td> +          \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/jsecurity">True</a></td> +          \
                <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/JSEC">True</a></td>
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jsecurity-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jsecurity-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/jsecurity/">True</a></td> @@ -431,6 +463,8 @@
           <td class="cool1">29</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#jspwiki">12</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/jspwiki/">True</a></td> @@ -449,6 +483,8 @@
           <td class="cool4">467</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#logging-log4php">7</a></td> +       \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/log4php/trunk">True</a></td> +        \
<td class="cool1"><a \
href="http://issues.apache.org/jira/browse/LOG4PHP/">True</a></td>  <td>False</td>
           <td>False</td>
           <td class="cool1"><a \
href="http://incubator.apache.org/log4php/">True</a></td> @@ -467,6 +503,8 @@
           <td class="cool4">699</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#lokahi">6</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/lokahi/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/lokahi">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-lokahi-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-lokahi-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/lokahi/">True</a></td> @@ -485,6 +523,8 @@
           <td class="cool4">716</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#lucene-dot-net">3</a></td> +        \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/incubator/lucene.net/">True</a></td> +          \
<td class="cool1"><a \
href="http://issues.apache.org/jira/browse/LUCENENET">True</a></td>  <td>False</td>
           <td>False</td>
           <td class="cool1"><a \
href="http://incubator.apache.org/lucene.net/">True</a></td> @@ -503,6 +543,8 @@
           <td class="cool3">151</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#nmaven">9</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/nmaven/">True</a></td>
 +          <td>False</td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-nmaven-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-nmaven-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/nmaven/">True</a></td> @@ -521,6 +563,8 @@
           <td class="cool1">28</td>
           <td>2,-,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#olio">12</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/olio">True</a></td> \
+          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-olio-commits/">True</a></td> \
<td>False</td> @@ -539,6 +583,8 @@
           <td class="cool3">196</td>
           <td>0,0,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#pdfbox">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/pdfbox/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/PDFBOX">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-pdfbox-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-pdfbox-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/pdfbox/">True</a></td> @@ -557,6 +603,8 @@
           <td class="cool1">1</td>
           <td>4,4,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#photark">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/photark/">True</a></td>
 +          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-photark-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/photark/">True</a></td> @@ -575,6 +623,8 @@
           <td class="cool1">29</td>
           <td>3,3,6</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#qpid">39</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/qpid/trunk/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/QPID">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-qpid-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-qpid-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/qpid/">True</a></td> @@ -593,6 +643,8 @@
           <td class="cool3">267</td>
           <td>0,0,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#rat">9</a></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>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-rat-commits/">True</a></td>
                
           <td class="cool1"><a href="http://incubator.apache.org/rat/">True</a></td>
@@ -611,6 +663,8 @@
           <td class="cool3">194</td>
           <td>0,0,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#rcf">18</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/viewvc/incubator/rcf/">True</a></td> +   \
                <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/RCF">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-rcf-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-rcf-commits/">True</a></td>  \
<td>False</td> @@ -629,6 +683,8 @@
           <td class="cool4">531</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#river">20</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/river/">True</a></td>
 +          <td class="cool1"><a \
                href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-river-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/river/">True</a></td> @@ -647,6 +703,8 @@
           <td class="cool1">29</td>
           <td>1,4,4</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#sanselan">7</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/sanselan">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SANSELAN">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-sanselan-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sanselan-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/sanselan/">True</a></td> @@ -665,6 +723,8 @@
           <td class="cool3">139</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#shindig">26</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/shindig">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SHINDIG">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-shindig-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-shindig-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/shindig/">True</a></td> @@ -683,6 +743,8 @@
           <td class="cool3">122</td>
           <td>0,0,2</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#sling">12</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/sling/">True</a></td>
 +          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/SLING">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-sling-dev/">True</a></td>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-sling-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/sling/">True</a></td> @@ -705,6 +767,8 @@
           <td>False</td>
           <td>False</td>
           <td>False</td>
+          <td>False</td>
+          <td>False</td>
         </tr>
         <tr>
           <td>Thrift</td>
@@ -719,6 +783,8 @@
           <td class="cool1">55</td>
           <td>1,3,3</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#thrift">9</a></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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/thrift/">True</a></td> @@ -737,6 +803,8 @@
           <td class="cool1">11</td>
           <td>1,1,1</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#tika">11</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/tika/">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/TIKA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-tika-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-tika-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/tika/">True</a></td> @@ -759,6 +827,8 @@
           <td>False</td>
           <td>False</td>
           <td>False</td>
+          <td>False</td>
+          <td>False</td>
         </tr>
         <tr>
           <td>UIMA</td>
@@ -773,6 +843,8 @@
           <td class="cool4">612</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#uima">10</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/uima">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/UIMA">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-uima-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-uima-commits/">True</a></td>
                
           <td class="cool1"><a \
href="http://incubator.apache.org/uima/">True</a></td> @@ -791,6 +863,8 @@
           <td class="cool1">26</td>
           <td>1,-,-</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#vcl">4</a></td> +          <td \
class="cool1"><a href="http://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>
                
           <td class="cool1"><a \
href="http://mail-archives.apache.org/mod_mbox/incubator-vcl-commits/">True</a></td>  \
<td>False</td> @@ -809,6 +883,8 @@
           <td class="cool4">1000</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#portals-wsrp4j">15</a></td> +       \
<td class="cool1"><a \
href="http://svn.apache.org/repos/asf/portals/wsrp4j/">True</a></td> +          <td \
class="cool1"><a href="http://issues.apache.org/jira/browse/WSRP4J">True</a></td>  \
<td>False</td>  <td>False</td>
           <td class="cool1"><a \
href="http://portals.apache.org/wsrp4j/">True</a></td> @@ -827,6 +903,8 @@
           <td class="cool4">860</td>
           <td>0,0,0</td>
           <td class="cool1"><a \
href="http://people.apache.org/~jim/projects.html#xap">13</a></td> +          <td \
class="cool1"><a href="http://svn.apache.org/repos/asf/incubator/xap/">True</a></td> \
+          <td class="cool1"><a \
                href="http://issues.apache.org/jira/browse/XAP">True</a></td>
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-xap-dev/">True</a></td>
                
           <td class="cool1"><a \
                href="http://mail-archives.apache.org/mod_mbox/incubator-xap-commits/">True</a></td>
                
           <td class="cool1"><a href="http://incubator.apache.org/xap/">True</a></td>



---------------------------------------------------------------------
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