I think it would be useful to publish a JSON version of the YAML files.
This would make it easier to get data on all retired (sub)projects.
It's easy to do, because the data is already present in the
site.data['projects'] hash
The data can easily be written out in project-data-plugin.rb.
Maybe the defaults currently applied in the page layout for entries
such as issue_trackers and wiki could be expanded as well - i.e. if
the name is implied, then provide it.
This would make the published JSON data easier to use, and the page
layouts themselves could be simplified.
e.g.. for the ACE project:
issue_trackers:
- type: JIRA
wiki:
type: CWIKI
would become:
issue_trackers:
- type: JIRA
keys:
- ACE
wiki:
type: CWIKI
keys:
- ACE
Sebb