You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2017/06/27 09:26:03 UTC

svn commit: r1800040 - in /comdev/projects.apache.org/site: index.html js/projects.js

Author: humbedooh
Date: Tue Jun 27 09:26:03 2017
New Revision: 1800040

URL: http://svn.apache.org/viewvc?rev=1800040&view=rev
Log:
round to nearest 50, fix typo

Modified:
    comdev/projects.apache.org/site/index.html
    comdev/projects.apache.org/site/js/projects.js

Modified: comdev/projects.apache.org/site/index.html
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/index.html?rev=1800040&r1=1800039&r2=1800040&view=diff
==============================================================================
--- comdev/projects.apache.org/site/index.html (original)
+++ comdev/projects.apache.org/site/index.html Tue Jun 27 09:26:03 2017
@@ -35,7 +35,7 @@
       It is designed to help you find specific projects that meet your interests and to gain a broader understanding of
       the wide variety of work currently underway in the Apache community.</p>
    <div id="details">
-      <h3 style='text-align: center;'>There are currently <span style='color: #269;'>300+</span> open source initatives at the ASF:</h3>
+      <h3 style='text-align: center;'>There are currently <span style='color: #269;'>350+</span> open source initiatives at the ASF:</h3>
       <ul style='width: 400px; margin: 0 auto; font-size: 18px; color: #269; font-weight: bold;'>
       <li>~170 committees managing ~280 projects</li>
       <li>5 special committees*</li>

Modified: comdev/projects.apache.org/site/js/projects.js
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/js/projects.js?rev=1800040&r1=1800039&r2=1800040&view=diff
==============================================================================
--- comdev/projects.apache.org/site/js/projects.js (original)
+++ comdev/projects.apache.org/site/js/projects.js Tue Jun 27 09:26:03 2017
@@ -1101,7 +1101,7 @@ function renderFrontPage() {
         }
     }
     var initiatives = curPodlings + numcommittees + nsubs; // podlings + committees + sub-projects
-    initiatives -= initiatives % 100; // round down
+    initiatives -= initiatives % 50; // round down to nearest 50
     var obj = document.getElementById('details');
     obj.innerHTML = ""
     if (urlErrors.length > 0) {