You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hb...@apache.org on 2015/05/08 21:53:31 UTC

svn commit: r1678447 - /comdev/projects.apache.org/site/js/projects.js

Author: hboutemy
Date: Fri May  8 19:53:30 2015
New Revision: 1678447

URL: http://svn.apache.org/r1678447
Log:
use TLP term instead of more vague 'project'

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

Modified: comdev/projects.apache.org/site/js/projects.js
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/js/projects.js?rev=1678447&r1=1678446&r2=1678447&view=diff
==============================================================================
--- comdev/projects.apache.org/site/js/projects.js (original)
+++ comdev/projects.apache.org/site/js/projects.js Fri May  8 19:53:30 2015
@@ -901,19 +901,20 @@ function renderFrontPage() {
     for (j in karr) {
 	var i = karr[j]
 	cur += committees_raw[i].length;
-	parr.push([i, committees_raw[i].length, cur, (committees_raw[i].length == 0) ? i + " (" + cur + "): No new projects" : i + " (" + cur + "): " + committees_raw[i].join(", ")]);
+	parr.push([i, committees_raw[i].length, cur, (committees_raw[i].length == 0) ? i + " (" + cur + "): No new Top Level Project" : i + " (" + cur + "): " + committees_raw[i].join(", ")]);
     }
     //narr.sort(function(a,b) { return (b[1] - a[1]) });
     var data1 = new google.visualization.DataTable();
     data1.addColumn('string', 'Month');
-    data1.addColumn('number', "New projects");
-    data1.addColumn('number', 'Current projects');
+    data1.addColumn('number', "New TLPs");
+    data1.addColumn('number', 'Current TLPs');
+    // TODO: missing retired TLPs (moved to the Attic)
     data1.addColumn({type: 'string', role: 'tooltip'});
     
     data1.addRows(parr);
     
     coptions = {
-	title: "TLP evolution",
+	title: "Top Level Project evolution",
 	isStacked: true,
 	height: 320,
 	width: 1160,
@@ -922,7 +923,7 @@ function renderFrontPage() {
 	series: {1: {type: "line", targetAxisIndex: 1}},
 	vAxes:[
               {title: 'Change in states'},
-              {title: 'Current number of projects'},
+              {title: 'Current number of TLPs'},
               ]
     };
     var div = document.createElement('div');