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

svn commit: r1665621 - /ctakes/site/trunk/content/people.mdtext

Author: seanfinan
Date: Tue Mar 10 17:16:30 2015
New Revision: 1665621

URL: http://svn.apache.org/r1665621
Log:
Attempting auto-population of list using https://projects-new.apache.org/json/foundation/committers.json

Modified:
    ctakes/site/trunk/content/people.mdtext

Modified: ctakes/site/trunk/content/people.mdtext
URL: http://svn.apache.org/viewvc/ctakes/site/trunk/content/people.mdtext?rev=1665621&r1=1665620&r2=1665621&view=diff
==============================================================================
--- ctakes/site/trunk/content/people.mdtext (original)
+++ ctakes/site/trunk/content/people.mdtext Tue Mar 10 17:16:30 2015
@@ -6,7 +6,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>-->
@@ -39,7 +40,7 @@
       <!--<li> Troy Bleeker (bleeker at apache.org)</li>-->
       <!--<li> Vinod Kaggal (vkaggal at apache.org)</li>-->
 
-   </ul>
+   <!--</ul>-->
 </div>
 
 <!-- show enlarged image -->
@@ -48,9 +49,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( "" ) );
       });