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 23:21:46 UTC

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

Author: seanfinan
Date: Tue Mar 10 22:21:45 2015
New Revision: 1665729

URL: http://svn.apache.org/r1665729
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=1665729&r1=1665728&r2=1665729&view=diff
==============================================================================
--- ctakes/site/trunk/content/people.mdtext (original)
+++ ctakes/site/trunk/content/people.mdtext Tue Mar 10 22:21:45 2015
@@ -54,18 +54,6 @@ $(document).ready( function() {
          });
          persons.append( "</ul>" );
          $( "#people-names" ).append( persons );
-      });
-});
-
-$(document).ready( function() {
-   var exturl = "https://projects-new.apache.org/json/foundation/committers.json";
-   $.getJSON( exturl, function( data ) {
-         var persons = $("<ul>");
-         $.each( data.ctakes, function( index, person ) {
-            persons.append( "<li>" + person + "</li>" );
-         });
-         persons.append( "</ul>" );
-         $( "#people-names" ).append( persons );
          $( "#people-names" ).append( "<p>throwback " + data.ctakes[0] + "</p>" );
       }).error( function() {
          $( "#people-names" ).append( "<p>error getting json</p>" );