From commits-return-1441-apmail-community-commits-archive=community.apache.org@community.apache.org Sat May 9 17:17:20 2015 Return-Path: X-Original-To: apmail-community-commits-archive@minotaur.apache.org Delivered-To: apmail-community-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EDD1017E7E for ; Sat, 9 May 2015 17:17:20 +0000 (UTC) Received: (qmail 58215 invoked by uid 500); 9 May 2015 17:17:20 -0000 Delivered-To: apmail-community-commits-archive@community.apache.org Received: (qmail 58191 invoked by uid 500); 9 May 2015 17:17:20 -0000 Mailing-List: contact commits-help@community.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@community.apache.org Delivered-To: mailing list commits@community.apache.org Received: (qmail 58181 invoked by uid 99); 9 May 2015 17:17:20 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 May 2015 17:17:20 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id AED83AC00B8 for ; Sat, 9 May 2015 17:17:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1678504 - in /comdev/projects.apache.org: scripts/README.txt scripts/cronjobs/podlings.py site/js/projects.js site/json/foundation/.htaccess site/json/foundation/HEADER.html Date: Sat, 09 May 2015 17:17:20 -0000 To: commits@community.apache.org From: hboutemy@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150509171720.AED83AC00B8@hades.apache.org> Author: hboutemy Date: Sat May 9 17:17:20 2015 New Revision: 1678504 URL: http://svn.apache.org/r1678504 Log: renamed evolution.json to podlings-evolution.json to better match the meaning Modified: comdev/projects.apache.org/scripts/README.txt comdev/projects.apache.org/scripts/cronjobs/podlings.py comdev/projects.apache.org/site/js/projects.js comdev/projects.apache.org/site/json/foundation/.htaccess comdev/projects.apache.org/site/json/foundation/HEADER.html Modified: comdev/projects.apache.org/scripts/README.txt URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/scripts/README.txt?rev=1678504&r1=1678503&r2=1678504&view=diff ============================================================================== --- comdev/projects.apache.org/scripts/README.txt (original) +++ comdev/projects.apache.org/scripts/README.txt Sat May 9 17:17:20 2015 @@ -20,8 +20,8 @@ various sources: - podlings.py: Reads podlings.xml from the incubator site and creates a JSON with timeline data, as well as current podling projects information. in: http://incubator.apache.org/podlings.xml - out: foundation/evolution.json + foundation/podlings.json - Monthly statisctics on podlings (evolution.json) and current list of podlings (podlings.json) + out: foundation/podlings.json + foundation/podlings-evolution.json + Current list of podlings (podlings.json) and monthly statisctics on podlings (podlings-evolution.json) - parsereleases.py in: http://www.apache.org/dist/ Modified: comdev/projects.apache.org/scripts/cronjobs/podlings.py URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/scripts/cronjobs/podlings.py?rev=1678504&r1=1678503&r2=1678504&view=diff ============================================================================== --- comdev/projects.apache.org/scripts/cronjobs/podlings.py (original) +++ comdev/projects.apache.org/scripts/cronjobs/podlings.py Sat May 9 17:17:20 2015 @@ -1,6 +1,5 @@ from xml.dom import minidom import re, urllib.request -import csv import json from datetime import datetime @@ -86,8 +85,8 @@ for i in js: current += i['graduated'] current += i['retired'] -print("Writing evolution.json") -with open('../../site/json/foundation/evolution.json', 'w') as f: +print("Writing podlings-evolution.json") +with open('../../site/json/foundation/podlings-evolution.json', 'w') as f: f.write(json.dumps(js, sort_keys=True, indent=0)) f.close() Modified: comdev/projects.apache.org/site/js/projects.js URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/js/projects.js?rev=1678504&r1=1678503&r2=1678504&view=diff ============================================================================== --- comdev/projects.apache.org/site/js/projects.js (original) +++ comdev/projects.apache.org/site/js/projects.js Sat May 9 17:17:20 2015 @@ -1102,7 +1102,7 @@ function renderLanguageChart() { } function buildFrontPage() { - GetAsyncJSON("/json/foundation/evolution.json?" + Math.random(), null, renderFrontPage) + GetAsyncJSON("/json/foundation/podlings-evolution.json?" + Math.random(), null, renderFrontPage) } @@ -1322,7 +1322,7 @@ function preloadEverything(callback) { ["/json/foundation/people.json", function(json) { people = json; }], ["/json/foundation/cycles.json", function(json) { cycles = json; }], ["/json/foundation/chairs.json", function(json) { chairs = json; }], - ["/json/foundation/evolution.json", function(json) { evolution = json; }], + ["/json/foundation/podlings-evolution.json", function(json) { evolution = json; }], ["/json/foundation/accounts.json", function(json) { accounts = json; }], ["/json/foundation/committees.json", setCommittees], ["/json/foundation/projects.json", weaveInProjects], Modified: comdev/projects.apache.org/site/json/foundation/.htaccess URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/json/foundation/.htaccess?rev=1678504&r1=1678503&r2=1678504&view=diff ============================================================================== --- comdev/projects.apache.org/site/json/foundation/.htaccess (original) +++ comdev/projects.apache.org/site/json/foundation/.htaccess Sat May 9 17:17:20 2015 @@ -3,10 +3,10 @@ AddDescription "generated by cronj AddDescription "generated by cronjobs/parsechairs.py" chairs.json AddDescription "imported with import/parsecommittees.py" committees.json AddDescription "manually maintained" cycles.json -AddDescription "generated by cronjobs/podlings.py" evolution.json AddDescription "generated by cronjobs/parsecommitters.py" groups.json AddDescription "generated by cronjobs/parsecommitters.py" people.json AddDescription "imported with import/parsepmcs.py from PMC DOAP files" pmcs.json AddDescription "generated by cronjobs/podlings.py" podlings.json +AddDescription "generated by cronjobs/podlings.py" podlings-evolution.json AddDescription "imported with import/rdfparse.py from projects' DOAP files" projects.json AddDescription "generated by cronjobs/parsereleases.py" releases.json Modified: comdev/projects.apache.org/site/json/foundation/HEADER.html URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/json/foundation/HEADER.html?rev=1678504&r1=1678503&r2=1678504&view=diff ============================================================================== --- comdev/projects.apache.org/site/json/foundation/HEADER.html (original) +++ comdev/projects.apache.org/site/json/foundation/HEADER.html Sat May 9 17:17:20 2015 @@ -7,9 +7,9 @@ for more information.
  • chairs.json generated by cronjobs/parsechairs.py from http://www.apache.org/foundation/
  • committees.json imported with import/parsecommittees.py from https://svn.apache.org/repos/private/committers/board/committee-info.txt
  • cycles.json manually maintained
  • -
  • evolution.json and podlings.json generated by cronjobs/podlings.py from http://incubator.apache.org/podlings.xml
  • groups.json and people.json generated by cronjobs/parsecommitters.py from http://people.apache.org/committer-index.html
  • pmcs.json imported with import/parsepmcs.py from PMC DOAP files
  • +
  • podlings.json and podlings-evolution.json generated by cronjobs/podlings.py from http://incubator.apache.org/podlings.xml
  • projects.json imported with import/rdfparse.py from projects' DOAP files
  • releases.json generated by cronjobs/parsereleases.py from http://www.apache.org/dist/
  • \ No newline at end of file