Title: [95579] trunk/Websites/webkit.org
Revision
95579
Author
rn...@webkit.org
Date
2011-09-20 16:17:10 -0700 (Tue, 20 Sep 2011)

Log Message

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:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (95578 => 95579)


--- trunk/Websites/webkit.org/ChangeLog	2011-09-20 22:57:34 UTC (rev 95578)
+++ trunk/Websites/webkit.org/ChangeLog	2011-09-20 23:17:10 UTC (rev 95579)
@@ -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  <rn...@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

Modified: trunk/Websites/webkit.org/team.html (95578 => 95579)


--- trunk/Websites/webkit.org/team.html	2011-09-20 22:57:34 UTC (rev 95578)
+++ trunk/Websites/webkit.org/team.html	2011-09-20 23:17:10 UTC (rev 95579)
@@ -80,7 +80,7 @@
                 affiliations.push(domainAffiliations[domain]);
         }
     }
-    return affiliations ? affiliations.join(' / ') : null;
+    return affiliations.join(' / ');
 }
 
 function addText(container, text) { container.appendChild(document.createTextNode(text)); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to