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/24 21:25:47 UTC

svn commit: r1681519 - in /comdev/projects.apache.org: scripts/import/parsepmcs.py site/json/foundation/pmcs.json

Author: hboutemy
Date: Sun May 24 19:25:47 2015
New Revision: 1681519

URL: http://svn.apache.org/r1681519
Log:
update pmcs.json generation

Modified:
    comdev/projects.apache.org/scripts/import/parsepmcs.py
    comdev/projects.apache.org/site/json/foundation/pmcs.json

Modified: comdev/projects.apache.org/scripts/import/parsepmcs.py
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/scripts/import/parsepmcs.py?rev=1681519&r1=1681518&r2=1681519&view=diff
==============================================================================
--- comdev/projects.apache.org/scripts/import/parsepmcs.py (original)
+++ comdev/projects.apache.org/scripts/import/parsepmcs.py Sun May 24 19:25:47 2015
@@ -31,15 +31,17 @@ def handleChild(el):
 
 for s in itemlist :
     url = s.childNodes[0].data
-    if not url.startswith('http'):
-        url = "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/%s" % url
-    print(url)
     try:
-        rdf = urllib.request.urlopen(url).read()
+        if url.startswith('http'):
+            print(url)
+            rdf = urllib.request.urlopen(url).read()
+        else:
+            rdf = open(url, 'r').read()
+            url = "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/%s" % url
         rdfxml = ET.fromstring(rdf)
         project = rdfxml[0]
         pjson = {
-            
+            'rdf': url
         }
         prname = None
         for el in project:
@@ -52,13 +54,13 @@ for s in itemlist :
                         pjson[k][xk] = v[xk]
             else:
                 pjson[k] = v
-        projects[s] = pjson
+        id = project.attrib['{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about']
+        projects[id] = pjson
 
     except Exception as err:
         print(err)
         
 with open ("../../site/json/foundation/pmcs.json", "w") as f:
-    f.write(json.dumps(projects, indent=0))
+    f.write(json.dumps(projects, sort_keys=True, indent=0))
     f.close()
 print("Done!")
-    
\ No newline at end of file

Modified: comdev/projects.apache.org/site/json/foundation/pmcs.json
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/site/json/foundation/pmcs.json?rev=1681519&r1=1681518&r2=1681519&view=diff
==============================================================================
--- comdev/projects.apache.org/site/json/foundation/pmcs.json (original)
+++ comdev/projects.apache.org/site/json/foundation/pmcs.json Sun May 24 19:25:47 2015
@@ -6,7 +6,8 @@
 }
 },
 "homepage": "http://abdera.apache.org/",
-"name": "Apache Abdera"
+"name": "Apache Abdera",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/abdera.rdf"
 },
 "accumulo": {
 "chair": {
@@ -15,11 +16,13 @@
 }
 },
 "homepage": "http://accumulo.apache.org/",
-"name": "Apache Accumulo"
+"name": "Apache Accumulo",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/accumulo.rdf"
 },
 "ace": {
 "homepage": "http://ace.apache.org/",
-"name": "Apache Ace"
+"name": "Apache Ace",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/ace.rdf"
 },
 "activemq": {
 "chair": {
@@ -28,15 +31,18 @@
 }
 },
 "homepage": "http://activemq.apache.org/",
-"name": "Apache ActiveMQ"
+"name": "Apache ActiveMQ",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/activemq.rdf"
 },
 "airavata": {
 "homepage": "http://airavata.apache.org/",
-"name": "Apache Airavata"
+"name": "Apache Airavata",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/airavata.rdf"
 },
 "allura": {
 "homepage": "http://allura.apache.org/",
-"name": "Apache Allura"
+"name": "Apache Allura",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/allura.rdf"
 },
 "ambari": {
 "chair": {
@@ -45,7 +51,8 @@
 }
 },
 "homepage": "http://ambari.apache.org/",
-"name": "Apache Ambari"
+"name": "Apache Ambari",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/ambari.rdf"
 },
 "ant": {
 "chair": {
@@ -54,11 +61,13 @@
 }
 },
 "homepage": "http://ant.apache.org/",
-"name": "Apache Ant"
+"name": "Apache Ant",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/ant.rdf"
 },
 "any23": {
 "homepage": "http://any23.apache.org/",
-"name": "Apache Any23"
+"name": "Apache Any23",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/any23.rdf"
 },
 "apr": {
 "chair": {
@@ -73,24 +82,34 @@
 "name": "Cliff Woolley"
 }
 },
-"name": "Apache Portable Runtime"
+"name": "Apache Portable Runtime",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/apr.rdf"
 },
 "archiva": {
 "homepage": "http://archiva.apache.org/",
-"name": "Apache Archiva"
+"name": "Apache Archiva",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/archiva.rdf"
 },
 "aries": {
 "charter": "Apache Aries software is\n       a set of pluggable Java components enabling an enterprise \n       OSGi application programming model.\n    ",
 "homepage": "http://aries.apache.org/",
-"name": "Apache Aries"
+"name": "Apache Aries",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/aries.rdf"
 },
 "attic": {
 "homepage": "http://attic.apache.org/",
-"name": "Apache Attic"
+"name": "Apache Attic",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/attic.rdf"
+},
+"aurora": {
+"homepage": "http://aurora.apache.org/",
+"name": "Apache Aurora",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/aurora.rdf"
 },
 "avro": {
 "homepage": "http://avro.apache.org/",
-"name": "Apache Avro"
+"name": "Apache Avro",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/avro.rdf"
 },
 "axis": {
 "chair": {
@@ -105,7 +124,8 @@
 "name": "Sanjiva Weerawarana"
 }
 },
-"name": "Apache Axis"
+"name": "Apache Axis",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/axis.rdf"
 },
 "bigtop": {
 "chair": {
@@ -115,24 +135,29 @@
 },
 "charter": "\n      Bigtop is a project for the development of packaging and tests of the Apache Hadoop ecosystem. \n      The primary goal of Bigtop is to build a community around the packaging and interoperability \n      testing of Hadoop-related projects. This includes testing at various levels (packaging, platform, \n      runtime, upgrade, etc...) developed by a community with a focus on the system as a whole, rather \n      than individual projects. In short we strive to be for Hadoop what Debian is to Linux.\n    ",
 "homepage": "http://bigtop.apache.org/",
-"name": "Apache Bigtop"
+"name": "Apache Bigtop",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/bigtop.rdf"
 },
 "bloodhound": {
 "homepage": "http://bloodhound.apache.org/",
-"name": "Apache Bloodhound"
+"name": "Apache Bloodhound",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/bloodhound.rdf"
 },
 "bookkeeper": {
 "homepage": "http://bookkeeper.apache.org/",
-"name": "Apache BookKeeper"
+"name": "Apache BookKeeper",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/bookkeeper.rdf"
 },
 "buildr": {
 "charter": "\n        Apache Buildr software is\n        a build system for Java-based applications, \n        including support for Scala, Groovy and \n        a growing number of JVM languages and tools.\n    ",
 "homepage": "http://buildr.apache.org/",
-"name": "Apache Buildr"
+"name": "Apache Buildr",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/buildr.rdf"
 },
 "bval": {
 "homepage": "http://bval.apache.org/",
-"name": "Apache BVal"
+"name": "Apache BVal",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/bval.rdf"
 },
 "camel": {
 "chair": {
@@ -147,20 +172,24 @@
 "name": "Hadrian Zbarcea"
 }
 },
-"name": "Apache Camel"
+"name": "Apache Camel",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/camel.rdf"
 },
 "cassandra": {
 "charter": "\n        Apache Cassandra software is\n        a highly scalable second-generation distributed database.\n    ",
 "homepage": "http://cassandra.apache.org/",
-"name": "Apache Cassandra"
+"name": "Apache Cassandra",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/cassandra.rdf"
 },
 "cayenne": {
 "homepage": "http://cayenne.apache.org/",
-"name": "Apache Cayenne"
+"name": "Apache Cayenne",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/cayenne.rdf"
 },
 "celix": {
 "homepage": "http://celix.apache.org/",
-"name": "Apache Celix"
+"name": "Apache Celix",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/celix.rdf"
 },
 "chemistry": {
 "chair": {
@@ -169,64 +198,90 @@
 }
 },
 "homepage": "http://chemistry.apache.org/",
-"name": "Apache Chemistry"
+"name": "Apache Chemistry",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/chemistry.rdf"
 },
 "chukwa": {
 "homepage": "http://chukwa.apache.org/",
-"name": "Apache Chukwa"
+"name": "Apache Chukwa",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/chukwa.rdf"
 },
 "clerezza": {
 "homepage": "http://clerezza.apache.org/",
-"name": "Apache Clerezza"
+"name": "Apache Clerezza",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/clerezza.rdf"
 },
 "climate": {
 "homepage": "http://climate.apache.org/",
-"name": "Apache Open Climate Workbench"
+"name": "Apache Open Climate Workbench",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/climate.rdf"
 },
 "cloudstack": {
 "homepage": "http://cloudstack.apache.org/",
-"name": "Apache Cloudstack"
+"name": "Apache Cloudstack",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/cloudstack.rdf"
 },
 "cocoon": {
 "homepage": "http://cocoon.apache.org/",
-"name": "Apache Cocoon"
+"name": "Apache Cocoon",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/cocoon.rdf"
 },
 "comdev": {
-"homepage": "http://comdev.apache.org/",
-"name": "Apache Community Development"
+"homepage": "http://community.apache.org/",
+"name": "Apache Community Development",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/comdev.rdf"
 },
 "commons": {
 "homepage": "http://commons.apache.org/",
-"name": "Apache Commons"
+"name": "Apache Commons",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/commons.rdf"
 },
 "continuum": {
 "homepage": "http://continuum.apache.org/",
-"name": "Apache Continuum"
+"name": "Apache Continuum",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/continuum.rdf"
+},
+"cordova": {
+"chair": {
+"Person": {
+"name": "Shazron Abdullah"
+}
+},
+"charter": "\nApache Cordova is a set of device APIs that allow a mobile app developer to access native device function such as the camera or accelerometer from JavaScript. Combined with a UI framework such as jQuery Mobile or Dojo Mobile or Sencha Touch, this allows a smartphone app to be developed with just HTML, CSS, and JavaScript.\n    ",
+"homepage": "http://cordova.apache.org/",
+"name": "Apache Cordova",
+"rdf": "http://svn.apache.org/repos/asf/cordova/site/infra/doap_Cordova_PMC.rdf"
 },
 "couchdb": {
 "charter": "\n        Apache CouchDB software is\n        a document-oriented database that can be queried and indexed in a MapReduce fashion using JavaScript. \n        CouchDB also offers incremental replication with bi-directional conflict detection and resolution.\n    ",
 "homepage": "http://couchdb.apache.org/",
-"name": "Apache CouchDB"
+"name": "Apache CouchDB",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/couchdb.rdf"
 },
 "creadur": {
 "homepage": "http://creadur.apache.org/",
-"name": "Apache Creadur"
+"name": "Apache Creadur",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/creadur.rdf"
 },
 "crunch": {
 "homepage": "http://crunch.apache.org/",
-"name": "Apache Crunch"
+"name": "Apache Crunch",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/crunch.rdf"
 },
 "ctakes": {
 "homepage": "http://ctakes.apache.org/",
-"name": "Apache cTAKES"
+"name": "Apache cTAKES",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/ctakes.rdf"
 },
 "curator": {
 "homepage": "http://curator.apache.org/",
-"name": "Apache Curator"
+"name": "Apache Curator",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/curator.rdf"
 },
 "cxf": {
 "homepage": "http://cxf.apache.org/",
-"name": "Apache CXF"
+"name": "Apache CXF",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/cxf.rdf"
 },
 "db": {
 "chair": {
@@ -241,31 +296,53 @@
 "name": "Rodney Waldhoff"
 }
 },
-"name": "Apache DB"
+"name": "Apache DB",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/db.rdf"
 },
 "deltacloud": {
 "homepage": "http://deltacloud.apache.org/",
-"name": "Apache Deltacloud"
+"name": "Apache Deltacloud",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/deltacloud.rdf"
 },
 "deltaspike": {
 "homepage": "http://deltaspike.apache.org/",
-"name": "Apache Deltaspike"
+"name": "Apache Deltaspike",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/deltaspike.rdf"
 },
 "devicemap": {
 "homepage": "http://devicemap.apache.org/",
-"name": "Apache DeviceMap"
+"name": "Apache DeviceMap",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/devicemap.rdf"
 },
 "directmemory": {
 "homepage": "http://directmemory.apache.org/",
-"name": "Apache Directmemory"
+"name": "Apache Directmemory",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/directmemory.rdf"
 },
 "directory": {
 "homepage": "http://directory.apache.org/",
-"name": "Apache Directory"
+"name": "Apache Directory",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/directory.rdf"
 },
 "drill": {
 "homepage": "http://drill.apache.org/",
-"name": "Apache Drill"
+"name": "Apache Drill",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/drill.rdf"
+},
+"empire-db": {
+"homepage": "http://empire-db.apache.org/",
+"name": "Apache Empire-db",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/empire-db.rdf"
+},
+"etch": {
+"chair": {
+"Person": {
+"name": "Martin Veith"
+}
+},
+"charter": "Etch is a cross-platform, language- and \n        transport-independent framework for building and consuming network \n        services. The Etch toolset includes a network service description \n        language, a compiler, and binding libraries for a variety of programming \n        languages. Etch is also transport-independent, allowing for a variety of \n        different transports to be used based on need and circumstance. The goal \n        of Etch is to make it simple to define small, focused services that can \n        be easily accessed, combined, and deployed in a similar manner. With \n        Etch, service development and consumption becomes no more difficult than \n        library development and consumption. \n    ",
+"name": "Apache Etch",
+"rdf": "http://svn.apache.org/repos/asf/etch/site/trunk/infra/doap_Etch_PMC.rdf"
 },
 "falcon": {
 "chair": {
@@ -274,23 +351,33 @@
 }
 },
 "charter": "\n        Apache Falcon is a data processing and management solution for Hadoop \n        designed for data motion, coordination of data pipelines, lifecycle \n        management, and data discovery. Falcon enables end consumers to quickly \n        onboard their data and its associated processing and management tasks \n        on Hadoop clusters.\n    ",
-"name": "Apache Falcon"
+"name": "Apache Falcon",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/falcon.rdf"
 },
 "felix": {
 "homepage": "http://felix.apache.org/",
-"name": "Apache Felix"
+"name": "Apache Felix",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/felix.rdf"
 },
 "flex": {
-"homepage": "http://flex.apache.org",
-"name": "Apache Flex"
+"chair": {
+"Person": {
+"name": "Alex Harui"
+}
+},
+"charter": "The mission of the Apache Flex project is \n    to create and maintain software related to the development of \n    expressive web applications that deploy to all major browsers, \n    desktops and devices (including smartphones, tablets and tv)\n    ",
+"name": "Apache Flex",
+"rdf": "http://flex.apache.org/pmc_Flex.rdf"
 },
 "flink": {
 "homepage": "http://flink.apache.org/",
-"name": "Apache Flink"
+"name": "Apache Flink",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/flink.rdf"
 },
 "flume": {
 "homepage": "http://flume.apache.org/",
-"name": "Apache Flume"
+"name": "Apache Flume",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/flume.rdf"
 },
 "forrest": {
 "chair": {
@@ -305,7 +392,8 @@
 "name": "Tim Williams"
 }
 },
-"name": "Apache Forrest"
+"name": "Apache Forrest",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/forrest.rdf"
 },
 "geronimo": {
 "homepage": "http://geronimo.apache.org/",
@@ -315,43 +403,53 @@
 "name": "Alan D. Cabrera"
 }
 },
-"name": "Apache Geronimo"
+"name": "Apache Geronimo",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/geronimo.rdf"
 },
 "giraph": {
 "homepage": "http://giraph.apache.org/",
-"name": "Apache Giraph"
+"name": "Apache Giraph",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/giraph.rdf"
 },
 "gora": {
 "homepage": "http://gora.apache.org/",
-"name": "Apache Gora"
+"name": "Apache Gora",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/gora.rdf"
 },
 "gump": {
 "homepage": "http://gump.apache.org/",
-"name": "Apache Gump"
+"name": "Apache Gump",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/gump.rdf"
 },
 "hadoop": {
 "homepage": "http://hadoop.apache.org/",
-"name": "Apache Hadoop"
+"name": "Apache Hadoop",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/hadoop.rdf"
 },
 "hama": {
 "homepage": "http://hama.apache.org/",
-"name": "Apache Hama"
+"name": "Apache Hama",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/hama.rdf"
 },
 "hbase": {
 "homepage": "http://hbase.apache.org/",
-"name": "Apache HBase"
+"name": "Apache HBase",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/hbase.rdf"
 },
 "helix": {
 "homepage": "http://helix.apache.org/",
-"name": "Apache Helix"
+"name": "Apache Helix",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/helix.rdf"
 },
 "hive": {
 "homepage": "http://hive.apache.org/",
-"name": "Apache Hive"
+"name": "Apache Hive",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/hive.rdf"
 },
 "httpcomponents": {
 "homepage": "http://hc.apache.org/",
-"name": "Apache HttpComponents"
+"name": "Apache HttpComponents",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/httpcomponents.rdf"
 },
 "httpd": {
 "chair": {
@@ -360,7 +458,8 @@
 }
 },
 "homepage": "http://httpd.apache.org/",
-"name": "Apache HTTP Server"
+"name": "Apache HTTP Server",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/httpd.rdf"
 },
 "incubator": {
 "chair": {
@@ -369,43 +468,53 @@
 }
 },
 "homepage": "http://incubator.apache.org/",
-"name": "Apache Incubator"
+"name": "Apache Incubator",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/incubator.rdf"
 },
 "isis": {
 "homepage": "http://isis.apache.org/",
-"name": "Apache Isis"
+"name": "Apache Isis",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/isis.rdf"
 },
 "jackrabbit": {
 "homepage": "http://jackrabbit.apache.org/",
-"name": "Apache Jackrabbit"
+"name": "Apache Jackrabbit",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/jackrabbit.rdf"
 },
 "james": {
 "homepage": "http://james.apache.org/",
-"name": "Apache James"
+"name": "Apache James",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/james.rdf"
 },
 "jclouds": {
 "homepage": "http://jclouds.apache.org/",
-"name": "Apache Jclouds"
+"name": "Apache Jclouds",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/jclouds.rdf"
 },
 "jena": {
 "homepage": "http://jena.apache.org/",
-"name": "Apache Jena"
+"name": "Apache Jena",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/jena.rdf"
 },
 "jmeter": {
 "homepage": "http://jmeter.apache.org/",
-"name": "Apache JMeter"
+"name": "Apache JMeter",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/jmeter.rdf"
 },
 "jspwiki": {
 "homepage": "http://jspwiki.apache.org/",
-"name": "Apache JSPWiki"
+"name": "Apache JSPWiki",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/jspwiki.rdf"
 },
 "juddi": {
 "homepage": "http://juddi.apache.org/",
-"name": "Apache jUDDI"
+"name": "Apache jUDDI",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/juddi.rdf"
 },
 "kafka": {
 "homepage": "http://kafka.apache.org/",
-"name": "Apache Kafka"
+"name": "Apache Kafka",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/kafka.rdf"
 },
 "karaf": {
 "chair": {
@@ -415,19 +524,23 @@
 },
 "charter": "\n\t   The mission of the Apache Karaf project is\n\t   the creation and maintenance of\n       open-source software related to a generic platform providing\n       higher level features and services specifically designed for\n       creating OSGi-based servers for distribution at no charge to\n       the public.\n    ",
 "homepage": "http://karaf.apache.org/",
-"name": "Apache Karaf"
+"name": "Apache Karaf",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/karaf.rdf"
 },
 "knox": {
 "homepage": "http://knox.apache.org/",
-"name": "Apache Knox"
+"name": "Apache Knox",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/knox.rdf"
 },
 "labs": {
 "homepage": "http://labs.apache.org/",
-"name": "Apache Labs"
+"name": "Apache Labs",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/labs.rdf"
 },
 "lenya": {
 "homepage": "http://lenya.apache.org/",
-"name": "Apache Lenya"
+"name": "Apache Lenya",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/lenya.rdf"
 },
 "libcloud": {
 "chair": {
@@ -436,7 +549,8 @@
 }
 },
 "homepage": "http://libcloud.apache.org/",
-"name": "Apache Libcloud"
+"name": "Apache Libcloud",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/libcloud.rdf"
 },
 "logging": {
 "chair": {
@@ -446,47 +560,58 @@
 },
 "charter": "The mission of the Apache Logging Services project is\n    to create and maintain of software for\n    managing the logging of application behavior, and for related\n   software components.",
 "homepage": "http://logging.apache.org",
-"name": "Apache Logging Services"
+"name": "Apache Logging Services",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/logging.rdf"
 },
 "lucene": {
 "homepage": "http://lucene.apache.org/",
-"name": "Apache Lucene"
+"name": "Apache Lucene",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/lucene.rdf"
 },
 "lucenenet": {
 "homepage": "http://lucenenet.apache.org/",
-"name": "Apache Lucenenet"
+"name": "Apache Lucenenet",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/lucenenet.rdf"
 },
 "lucy": {
 "homepage": "http://lucy.apache.org/",
-"name": "Apache Lucy"
+"name": "Apache Lucy",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/lucy.rdf"
 },
 "mahout": {
 "homepage": "http://mahout.apache.org/",
-"name": "Apache Mahout"
+"name": "Apache Mahout",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/mahout.rdf"
 },
 "manifoldcf": {
 "homepage": "http://manifoldcf.apache.org",
-"name": "Apache ManifoldCF"
+"name": "Apache ManifoldCF",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/manifoldcf.rdf"
 },
 "marmotta": {
 "homepage": "http://marmotta.apache.org/",
-"name": "Apache Marmotta"
+"name": "Apache Marmotta",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/marmotta.rdf"
 },
 "maven": {
 "homepage": "http://maven.apache.org/",
-"name": "Apache Maven"
+"name": "Apache Maven",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/maven.rdf"
 },
 "mesos": {
 "homepage": "http://mesos.apache.org/",
-"name": "Apache Mesos"
+"name": "Apache Mesos",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/mesos.rdf"
 },
 "metamodel": {
 "homepage": "http://metamodel.apache.org/",
-"name": "Apache MetaModel"
+"name": "Apache MetaModel",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/metamodel.rdf"
 },
 "mina": {
 "homepage": "http://mina.apache.org/",
-"name": "Apache Mina"
+"name": "Apache Mina",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/mina.rdf"
 },
 "mrunit": {
 "chair": {
@@ -495,23 +620,39 @@
 }
 },
 "homepage": "http://mrunit.apache.org/",
-"name": "Apache MRUnit"
+"name": "Apache MRUnit",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/mrunit.rdf"
 },
 "myfaces": {
 "homepage": "http://myfaces.apache.org/",
-"name": "Apache MyFaces"
+"name": "Apache MyFaces",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/myfaces.rdf"
 },
 "nutch": {
 "homepage": "http://nutch.apache.org/",
-"name": "Apache Nutch"
+"name": "Apache Nutch",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/nutch.rdf"
 },
 "ode": {
 "homepage": "http://ode.apache.org/",
-"name": "Apache Ode"
+"name": "Apache Ode",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/ode.rdf"
 },
 "ofbiz": {
-"homepage": "http://ofbiz.apache.org/",
-"name": "Apache OFBiz"
+"chair": {
+"Person": {
+"name": "Jacopo Cappellato"
+}
+},
+"charter": "\nApache OFBiz is an open source product for the automation of enterprise processes that includes framework components and business applications for ERP (Enterprise Resource Planning), CRM (Customer Relationship Management), E-Business / E-Commerce, SCM (Supply Chain Management), MRP (Manufacturing Resource Planning), MMS/EAM (Maintenance Management System/Enterprise Asset Management), POS (Point Of Sale).\nApache OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions.\n    ",
+"homepage": "https://cwiki.apache.org/confluence/display/OFBADMIN/Apache+OFBiz+PMC+Members+and+Committers",
+"member": {
+"Person": {
+"name": "Nicolas Malin"
+}
+},
+"name": "Apache OFBiz",
+"rdf": "http://ofbiz.apache.org/pmc/ofbiz.rdf"
 },
 "olingo": {
 "chair": {
@@ -522,39 +663,47 @@
 "charter": "The Apache Olingo Project be and hereby is\n         responsible for the creation and maintenance of software\n         related to providing an implemention of the OASIS OData \n         (Open Data Protocol) specifications, in server and client \n         form; \n      ",
 "homepage": "http://olingo.apache.org/",
 "member": {
-"person": {
+"Person": {
 "name": "Florian Mueller"
 }
 },
-"name": "Apache Olingo"
+"name": "Apache Olingo",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/olingo.rdf"
 },
 "oltu": {
 "homepage": "http://oltu.apache.org/",
-"name": "Apache Oltu"
+"name": "Apache Oltu",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/oltu.rdf"
 },
 "onami": {
 "homepage": "http://onami.apache.org/",
-"name": "Apache Onami"
+"name": "Apache Onami",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/onami.rdf"
 },
 "oodt": {
 "homepage": "http://oodt.apache.org/",
-"name": "Apache OODT: Object Oriented Data Technology"
+"name": "Apache OODT: Object Oriented Data Technology",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/oodt.rdf"
 },
 "oozie": {
 "homepage": "http://oozie.apache.org/",
-"name": "Apache Oozie"
+"name": "Apache Oozie",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/oozie.rdf"
 },
 "openjpa": {
 "homepage": "http://openjpa.apache.org/",
-"name": "Apache OpenJPA"
+"name": "Apache OpenJPA",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/openjpa.rdf"
 },
 "openmeetings": {
 "homepage": "http://openmeetings.apache.org/",
-"name": "Apache Openmeetings"
+"name": "Apache Openmeetings",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/openmeetings.rdf"
 },
 "opennlp": {
 "homepage": "http://opennlp.apache.org/",
-"name": "Apache OpenNLP"
+"name": "Apache OpenNLP",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/opennlp.rdf"
 },
 "openoffice": {
 "chair": {
@@ -563,77 +712,111 @@
 }
 },
 "homepage": "http://openoffice.apache.org/",
-"name": "Apache OpenOffice"
+"name": "Apache OpenOffice",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/openoffice.rdf"
 },
 "openwebbeans": {
 "charter": "\n        Apache OpenWebBeans software is\n        an ASL-licensed implementation of the JSR-299 \n        \"Contexts and Dependency Injection for the Java (TM) EE platform\" specification.\n    ",
 "homepage": "http://openwebbeans.apache.org/",
-"name": "Apache OpenWebBeans"
+"name": "Apache OpenWebBeans",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/openwebbeans.rdf"
+},
+"orc": {
+"homepage": "http://orc.apache.org/",
+"name": "Apache Orc",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/orc.rdf"
+},
+"parquet": {
+"homepage": "http://parquet.apache.org/",
+"name": "Apache Parquet",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/parquet.rdf"
 },
 "pdfbox": {
 "homepage": "http://pdfbox.apache.org/",
-"name": "Apache PDFBox"
+"name": "Apache PDFBox",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/pdfbox.rdf"
 },
 "perl": {
 "homepage": "http://perl.apache.org/",
-"name": "Apache mod_perl"
+"name": "Apache mod_perl",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/perl.rdf"
 },
 "phoenix": {
 "homepage": "http://phoenix.apache.org/",
-"name": "Apache Phoenix"
+"name": "Apache Phoenix",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/phoenix.rdf"
 },
 "pig": {
 "homepage": "http://pig.apache.org/",
-"name": "Apache Pig"
+"name": "Apache Pig",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/pig.rdf"
 },
 "pivot": {
 "homepage": "http://pivot.apache.org/",
-"name": "Apache Pivot"
+"name": "Apache Pivot",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/pivot.rdf"
 },
 "poi": {
 "homepage": "http://poi.apache.org/",
-"name": "Apache POI"
+"name": "Apache POI",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/poi.rdf"
 },
 "portals": {
 "homepage": "http://portals.apache.org/",
-"name": "Apache Portals"
+"name": "Apache Portals",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/portals.rdf"
 },
 "qpid": {
 "homepage": "http://qpid.apache.org/",
-"name": "Apache Qpid"
+"name": "Apache Qpid",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/qpid.rdf"
 },
 "rave": {
 "homepage": "http://rave.apache.org/",
-"name": "Apache Rave"
+"name": "Apache Rave",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/rave.rdf"
 },
 "river": {
 "homepage": "http://river.apache.org/",
-"name": "Apache River"
+"name": "Apache River",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/river.rdf"
 },
 "roller": {
 "homepage": "http://roller.apache.org/",
-"name": "Apache Roller"
+"name": "Apache Roller",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/roller.rdf"
 },
 "samza": {
 "homepage": "http://samza.apache.org/",
-"name": "Apache Samza"
+"name": "Apache Samza",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/samza.rdf"
 },
 "santuario": {
 "homepage": "http://santuario.apache.org/",
-"name": "Apache Santuario (XML Security)"
+"name": "Apache Santuario (XML Security)",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/santuario.rdf"
 },
 "servicemix": {
+"chair": {
+"Person": {
+"name": "Krzysztof Sobkowiak"
+}
+},
+"charter": "The mission of Apache ServiceMix project is to create \nand maintain a flexible, open-source integration container, powered by OSGi,  \nthat unifies the features and functionality of Apache ActiveMQ, Camel, CXF, and Karaf \ninto a powerful runtime platform you can use to build your own integrations solutions.",
 "homepage": "http://servicemix.apache.org/",
-"name": "Apache ServiceMix"
+"name": "Apache ServiceMix",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/servicemix.rdf"
 },
 "shindig": {
 "charter": "\n        Apache Shindig software is\n        an OpenSocial container and helps you to start hosting OpenSocial apps quickly\n        by providing the code to render gadgets, proxy requests, and handle REST and RPC requests.\n    ",
 "homepage": "http://shindig.apache.org/",
-"name": "Apache Shindig"
+"name": "Apache Shindig",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/shindig.rdf"
 },
 "shiro": {
 "homepage": "http://shiro.apache.org/",
-"name": "Apache Shiro"
+"name": "Apache Shiro",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/shiro.rdf"
 },
 "sis": {
 "chair": {
@@ -642,109 +825,146 @@
 }
 },
 "homepage": "http://sis.apache.org/team-list.html",
-"name": "Apache SIS"
+"name": "Apache SIS",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/sis.rdf"
 },
 "sling": {
 "homepage": "http://sling.apache.org/",
-"name": "Apache Sling"
+"name": "Apache Sling",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/sling.rdf"
 },
 "spamassassin": {
 "homepage": "http://spamassassin.apache.org/",
-"name": "Apache SpamAssassin"
+"name": "Apache SpamAssassin",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/spamassassin.rdf"
 },
 "spark": {
 "homepage": "http://spark.apache.org/",
-"name": "Apache Spark"
+"name": "Apache Spark",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/spark.rdf"
 },
 "sqoop": {
 "homepage": "http://sqoop.apache.org/",
-"name": "Apache Sqoop"
+"name": "Apache Sqoop",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/sqoop.rdf"
 },
 "stanbol": {
 "homepage": "http://stanbol.apache.org/",
-"name": "Apache Stanbol"
+"name": "Apache Stanbol",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/stanbol.rdf"
 },
 "steve": {
 "homepage": "http://steve.apache.org/",
-"name": "Apache Steve"
+"name": "Apache Steve",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/steve.rdf"
 },
 "storm": {
 "homepage": "http://storm.apache.org/",
-"name": "Apache Storm"
+"name": "Apache Storm",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/storm.rdf"
 },
 "stratos": {
 "homepage": "http://stratos.apache.org/",
-"name": "Apache Stratos"
+"name": "Apache Stratos",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/stratos.rdf"
 },
 "struts": {
 "homepage": "http://struts.apache.org/",
-"name": "Apache Struts"
+"name": "Apache Struts",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/struts.rdf"
 },
 "subversion": {
 "homepage": "http://subversion.apache.org/",
-"name": "Apache Subversion"
+"name": "Apache Subversion",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/subversion.rdf"
 },
 "synapse": {
 "homepage": "http://synapse.apache.org/",
-"name": "Apache Synapse"
+"name": "Apache Synapse",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/synapse.rdf"
 },
 "syncope": {
 "homepage": "http://syncope.apache.org/",
-"name": "Apache Syncope"
+"name": "Apache Syncope",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/syncope.rdf"
 },
 "tajo": {
 "homepage": "http://tajo.apache.org/",
-"name": "Apache Tajo"
+"name": "Apache Tajo",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tajo.rdf"
 },
 "tapestry": {
 "homepage": "http://tapestry.apache.org/",
-"name": "Apache Tapestry"
+"name": "Apache Tapestry",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tapestry.rdf"
 },
 "tcl": {
 "homepage": "http://tcl.apache.org/",
-"name": "Apache Tcl"
+"name": "Apache Tcl",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tcl.rdf"
 },
 "tez": {
+"chair": {
+"Person": {
+"name": "Hitesh Shah"
+}
+},
+"charter": "Apache Tez is an effort to develop a generic application framework which can be used to process arbitrarily complex DAGs of data-processing tasks and also a re-usable set of data-processing primitives which can be used by other projects.",
 "homepage": "http://tez.apache.org/",
-"name": "Apache Tez"
+"member": {
+"Person": {
+"name": "Vinod Kumar Vavilapalli"
+}
+},
+"name": "Apache Tez",
+"rdf": "http://tez.apache.org/pmc/tez.rdf"
 },
 "thrift": {
 "homepage": "http://thrift.apache.org/",
-"name": "Apache Thrift"
+"name": "Apache Thrift",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/thrift.rdf"
 },
 "tika": {
 "homepage": "http://tika.apache.org/",
-"name": "Apache Tika"
+"name": "Apache Tika",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tika.rdf"
 },
 "tiles": {
 "homepage": "http://tiles.apache.org/",
-"name": "Apache Tiles"
+"name": "Apache Tiles",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tiles.rdf"
 },
 "tomcat": {
 "homepage": "http://tomcat.apache.org/",
-"name": "Apache Tomcat"
+"name": "Apache Tomcat",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tomcat.rdf"
 },
 "tomee": {
 "homepage": "http://tomee.apache.org/",
-"name": "Apache Tomee"
+"name": "Apache Tomee",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tomee.rdf"
 },
 "trafficserver": {
 "homepage": "http://trafficserver.apache.org/",
-"name": "Apache Traffic Server"
+"name": "Apache TrafficServer",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/trafficserver.rdf"
 },
 "turbine": {
 "homepage": "http://turbine.apache.org/",
-"name": "Apache Turbine"
+"name": "Apache Turbine",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/turbine.rdf"
 },
 "tuscany": {
 "charter": "\n        Apache Tuscany software\n        simplifies the task of developing SOA solutions by providing a comprehensive infrastructure \n        for SOA development and management that is based on Service Component Architecture (SCA) standard. \n    ",
 "homepage": "http://tuscany.apache.org/",
-"name": "Apache Tuscany"
+"name": "Apache Tuscany",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/tuscany.rdf"
 },
 "uima": {
 "charter": "\n        Apache UIMA (*) software provides frameworks, tools\n        and annotators, facilitating the analysis of unstructured content such as text, audio and video. \n        (*) Unstructured Information Management Architecture.\n    ",
 "homepage": "http://uima.apache.org/",
-"name": "Apache UIMA"
+"name": "Apache UIMA",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/uima.rdf"
 },
 "vcl": {
 "chair": {
@@ -759,46 +979,54 @@
 "name": "Josh Thompson"
 }
 },
-"name": "Apache VCL"
+"name": "Apache VCL",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/vcl.rdf"
 },
 "velocity": {
 "homepage": "http://velocity.apache.org/",
-"name": "Apache Velocity"
+"name": "Apache Velocity",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/velocity.rdf"
 },
 "vxquery": {
 "chair": {
-"person": {
+"Person": {
 "name": "Till Westmann"
 }
 },
 "charter": "Creation and maintenance of software\n      related to providing an implementation of a parallel XML\n      Query processor.\n    ",
 "homepage": "http://vxquery.apache.org/",
 "member": {
-"person": {
+"Person": {
 "name": "Cezar Andrei"
 }
 },
-"name": "Apache VXQuery"
+"name": "Apache VXQuery",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/vxquery.rdf"
 },
 "webservices": {
 "homepage": "http://ws.apache.org/",
-"name": "Apache Web Services"
+"name": "Apache Web Services",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/webservices.rdf"
 },
 "whirr": {
 "homepage": "http://whirr.apache.org/",
-"name": "Apache Whirr"
+"name": "Apache Whirr",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/whirr.rdf"
 },
 "wicket": {
 "homepage": "http://wicket.apache.org/",
-"name": "Apache Wicket"
+"name": "Apache Wicket",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/wicket.rdf"
 },
 "wink": {
 "homepage": "http://wink.apache.org/",
-"name": "Apache Wink"
+"name": "Apache Wink",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/wink.rdf"
 },
 "wookie": {
 "homepage": "http://wookie.apache.org/",
-"name": "Apache Wookie"
+"name": "Apache Wookie",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/wookie.rdf"
 },
 "xalan": {
 "chair": {
@@ -813,7 +1041,8 @@
 "name": "Tim Williams"
 }
 },
-"name": "Apache Xalan"
+"name": "Apache Xalan",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/xalan.rdf"
 },
 "xerces": {
 "chair": {
@@ -828,11 +1057,13 @@
 "name": "Jason Stewart"
 }
 },
-"name": "Apache Xerces"
+"name": "Apache Xerces",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/xerces.rdf"
 },
 "xmlbeans": {
 "homepage": "http://xmlbeans.apache.org/",
-"name": "Apache XML Beans"
+"name": "Apache XML Beans",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/xmlbeans.rdf"
 },
 "xmlgraphics": {
 "chair": {
@@ -847,14 +1078,17 @@
 "name": "J\u00f6rg Pietschmann"
 }
 },
-"name": "Apache XML Graphics"
+"name": "Apache XML Graphics",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/xmlgraphics.rdf"
 },
 "zest": {
 "homepage": "http://zest.apache.org/",
-"name": "Apache Zest"
+"name": "Apache Zest",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/zest.rdf"
 },
 "zookeeper": {
 "homepage": "http://zookeeper.apache.org/",
-"name": "Apache ZooKeeper"
+"name": "Apache ZooKeeper",
+"rdf": "https://svn.apache.org/repos/asf/infrastructure/site-tools/trunk/projects/data_files/zookeeper.rdf"
 }
 }
\ No newline at end of file