You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by bu...@apache.org on 2015/03/10 18:16:42 UTC

svn commit: r943212 - in /websites/staging/ctakes/trunk: cgi-bin/ content/ content/people.html

Author: buildbot
Date: Tue Mar 10 17:16:42 2015
New Revision: 943212

Log:
Staging update by buildbot for ctakes

Modified:
    websites/staging/ctakes/trunk/cgi-bin/   (props changed)
    websites/staging/ctakes/trunk/content/   (props changed)
    websites/staging/ctakes/trunk/content/people.html

Propchange: websites/staging/ctakes/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Mar 10 17:16:42 2015
@@ -1 +1 @@
-1665608
+1665621

Propchange: websites/staging/ctakes/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Mar 10 17:16:42 2015
@@ -1 +1 @@
-1665608
+1665621

Modified: websites/staging/ctakes/trunk/content/people.html
==============================================================================
--- websites/staging/ctakes/trunk/content/people.html (original)
+++ websites/staging/ctakes/trunk/content/people.html Tue Mar 10 17:16:42 2015
@@ -129,7 +129,8 @@
       control. </p>
 
    <h3> Project Management Committee Members (sorted alphabetically)</h3>
-   <ul id="people-names" >
+   <div id="people-names"></div>
+   <!--<ul id="people-names">-->
 
       <!--<li> Andy McMurry (andymc at apache.org)</li>-->
       <!--<li> Britt Fitch (brittfitch at apache.org)</li>-->
@@ -162,7 +163,7 @@
       <!--<li> Troy Bleeker (bleeker at apache.org)</li>-->
       <!--<li> Vinod Kaggal (vkaggal at apache.org)</li>-->
 
-   </ul>
+   <!--</ul>-->
 </div>
 
 <!-- show enlarged image -->
@@ -172,9 +173,11 @@
    $.getJSON( "https://projects-new.apache.org/json/foundation/committers.json",
       function( data ) {
          var persons = [];
+         persons.push( "<ul>" );
          $.each( data.ctakes, function( index, person ) {
             persons.push( "<li>" + person + "</li>" );
          });
+         persons.push( "</ul>" );
          $( "#people-names" ).append( persons.join( "" ) );
       });