angular-cn/aio/content/marketing
Will Mendes 17d5266cdb docs: add ngx-skeleton-loader module into resources page (#39352)
PR Close #39352
2020-11-19 12:27:38 -08:00
..
README.md
about.html
analytics.md docs: remove usage of whitelist in cli analytics docs (#38963) 2020-09-28 16:23:06 -04:00
announcements.json docs: update ng-conf announcement to remove livestream link (#36382) 2020-04-01 13:14:42 -07:00
api.html
contribute.html
contributors.json docs: add carlos caballero to GDE resources (#37976) 2020-10-28 10:52:33 -07:00
docs.md docs: Made a minor change in the documentation (#38917) 2020-10-05 12:43:15 -07:00
events.html feat(docs-infra): created new widget for events page (#36517) 2020-09-16 15:14:18 -07:00
events.json docs(docs-infra): add upcoming conference (#38956) 2020-09-25 14:31:34 -04:00
features.html
index.html docs: improve startup nav, naming, and terminology (#35533) 2020-04-22 17:08:29 -04:00
presskit.html
resources-contributing.md docs: remove https://angular.io from internal links (#37157) 2020-05-19 10:11:41 -07:00
resources.html
resources.json docs: add ngx-skeleton-loader module into resources page (#39352) 2020-11-19 12:27:38 -08:00
test.html fix(docs-infra): always default to no linenums in `<aio-code>` (#31674) 2019-07-24 14:38:54 -07:00

README.md

Contributors page

We have an official accounting of who is on the Angular Team, who are "trusted collaborators" (see https://team.angular.io/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:

Alex Eagle is investigating how to reconcile these two lists.

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.
  • 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/.