Generate WebKit team's page out of committers.py
authorrniwa@webkit.org <rniwa@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 20 Sep 2011 23:17:10 +0000 (23:17 +0000)
committerrniwa@webkit.org <rniwa@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 20 Sep 2011 23:17:10 +0000 (23:17 +0000)
https://bugs.webkit.org/show_bug.cgi?id=68045

Fix per Daniel's review comment since I had misunderstood the code.

* team.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95579 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Websites/webkit.org/ChangeLog
Websites/webkit.org/team.html

index 0453b59..4b70d6d 100644 (file)
@@ -3,6 +3,15 @@
         Generate WebKit team's page out of committers.py
         https://bugs.webkit.org/show_bug.cgi?id=68045
 
+        Fix per Daniel's review comment since I had misunderstood the code.
+
+        * team.html:
+
+2011-09-20  Ryosuke Niwa  <rniwa@webkit.org>
+
+        Generate WebKit team's page out of committers.py
+        https://bugs.webkit.org/show_bug.cgi?id=68045
+
         Reviewed by Daniel Bates.
 
         Add the initial implementation of team.html. This page automatically pulls data from committers.py
index 9642c24..3172c65 100644 (file)
@@ -80,7 +80,7 @@ function formatAffiliation(contributor) {
                 affiliations.push(domainAffiliations[domain]);
         }
     }
-    return affiliations ? affiliations.join(' / ') : null;
+    return affiliations.join(' / ');
 }
 
 function addText(container, text) { container.appendChild(document.createTextNode(text)); }