Author: hboutemy
Date: Sun Jun 8 04:11:46 2025
New Revision: 1926233
URL: http://svn.apache.org/viewvc?rev=1926233&view=rev
Log:
committee description is not read any more from
https://www.apache.org/#projects-list
Modified:
comdev/projects.apache.org/trunk/scripts/cronjobs/parsecommitteeinfo.py
comdev/projects.apache.org/trunk/site/js/projects.js
Modified:
comdev/projects.apache.org/trunk/scripts/cronjobs/parsecommitteeinfo.py
URL:
http://svn.apache.org/viewvc/comdev/projects.apache.org/trunk/scripts/cronjobs/parsecommitteeinfo.py?rev=1926233&r1=1926232&r2=1926233&view=diff
==============================================================================
--- comdev/projects.apache.org/trunk/scripts/cronjobs/parsecommitteeinfo.py
(original)
+++ comdev/projects.apache.org/trunk/scripts/cronjobs/parsecommitteeinfo.py Sun
Jun 8 04:11:46 2025
@@ -5,7 +5,7 @@ N.B. Must be run from scripts/cronjobs d
Reads:
../../data/committees.xml
-committee-info.txt from Whimsy
+committee-info.json from Whimsy through "import committee_info"
Updates:
../../site/json/foundation/committees.json
Modified: comdev/projects.apache.org/trunk/site/js/projects.js
URL:
http://svn.apache.org/viewvc/comdev/projects.apache.org/trunk/site/js/projects.js?rev=1926233&r1=1926232&r2=1926233&view=diff
==============================================================================
--- comdev/projects.apache.org/trunk/site/js/projects.js (original)
+++ comdev/projects.apache.org/trunk/site/js/projects.js Sun Jun 8 04:11:46
2025
@@ -403,10 +403,10 @@ function renderCommitteePage(committeeId
if (!_.isEmpty(committee.shortdesc)) {
description = committee.shortdesc;
} else {
- description = "Missing from https://www.apache.org/#projects-list";
+ description = "Missing from https://whimsy.apache.org/public/
committee-info.json";
}
- appendElementWithInnerHTML(obj, 'h4', "Description <font size='-2'>(from
<a href='https://www.apache.org/#projects-list'>projects list</a>)</a>:");
+ appendElementWithInnerHTML(obj, 'h4', "Description <font size='-2'>(from
<a href='https://whimsy.apache.org/public/'>committee-info</a>)</a>:");
appendElementWithInnerHTML(obj,'p',description.replace(/([^\r\n]+)\r?\n\r?\n/g,function(a)
{ return "<p>"+a+"</p>"}));