angular/aio/content/marketing
2022-10-11 23:42:46 +00:00
..
about.html fix(docs-infra): limit max content width on "Contributors" and "Cheat sheet" pages (#41051) 2021-03-09 08:52:51 -08:00
analytics.md docs: update what what the CLI collects in analytics (#47529) 2022-09-27 10:17:35 -07:00
announcements.json docs: update ng-conf announcement to remove livestream link (#36382) 2020-04-01 13:14:42 -07:00
api.html fix(docs-infra): avoid truncating several API list items (#41051) 2021-03-09 08:52:52 -08:00
contribute.html build: clean up references to old master branch (#45856) 2022-05-04 16:23:33 -07:00
contributors.json docs: add Joshua Morony to GDE resources (#47704) 2022-10-11 23:42:46 +00:00
docs.md docs(docs-infra): fix minor typos in angular.io (#47295) (#47295) 2022-09-07 10:47:21 -07:00
events-contributing.md build(docs-infra): introduce new process for generating data for the events page (#45588) 2022-09-12 12:25:44 -07:00
events.html refactor(docs-infra): use more consistent content width on marketing pages (#41051) 2021-03-09 08:52:51 -08:00
events.json docs: update events (#47462) 2022-09-19 17:08:06 +02:00
features.html docs(docs-infra): fix minor typos in angular.io (#47295) (#47295) 2022-09-07 10:47:21 -07:00
index.html docs: empty alt of aio home decorative images (#45740) 2022-04-27 09:06:12 -07:00
presskit.html docs(docs-infra): fix minor typos in angular.io (#47295) (#47295) 2022-09-07 10:47:21 -07:00
README.md docs(docs-infra): fix minor typos in angular.io (#47295) (#47295) 2022-09-07 10:47:21 -07:00
resources-contributing.md docs: improve markdown (#45325) 2022-04-08 19:36:30 +00:00
resources.html docs(aio): use h1 rather than divs and hide heading anchors 2017-06-07 11:26:27 -07:00
resources.json docs: add Angular & JavaScript Master Podcast to resources list (#47227) 2022-08-23 16:20:43 -07:00
test.html fix(docs-infra): always default to no linenums in <aio-code> (#31674) 2019-07-24 14:38:54 -07:00

Contributors page

We have an official accounting of who is on the Angular Team see https://angular.io/about?group=Angular, who are "trusted collaborators" see https://angular.io/about?group=Collaborators, and so on.

The contributors.json should be maintained to keep our "org chart" in a single consistent place.

GDE listings

There are two pages:

About the data

  • Keys in contributors.json should be GitHub handles. Most currently are, but not all. This will allow us to use GitHub as the default source for things like name, avatar, etc.

  • Keys are sorted in alphabetical order, please keep the sorting order when adding new entries.

  • Pictures are stored in aio/content/images/bios/<picture-filename>.

Processing the data

Install https://stedolan.github.io/jq/ which is amazing.

for handle in $(jq keys[] --raw-output < aio/content/marketing/contributors.json) do echo -e "\n$handle\n---------\n"; curl --silent -H "Authorization: token ${TOKEN}" https://api.github.com/users/$handle
| jq ".message,.name,.company,.blog,.bio" --raw-output done

Relevant scripts are stored in aio/scripts/contributors/.