angular/aio/content/marketing
Matthieu Riegler 8a30faf08c docs: Adding myself to the collaborators (#50494)
Let's continue building Angular ! =)

PR Close #50494
2023-05-30 13:05:55 -07: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
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 docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
contributors.json docs: Adding myself to the collaborators (#50494) 2023-05-30 13:05:55 -07:00
docs.md docs: update the intro page (#49980) 2023-05-01 10:02:20 -07:00
events-contributing.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08: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 (#50309) 2023-05-15 10:44:07 -07:00
everyone.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
features.html docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
index.html docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
presskit.html docs: replaced the html tags with the updated ones (#50403) 2023-05-22 17:36:33 +00:00
quick-start.md docs: typos and wording (#48597) 2023-04-18 16:58:31 +00:00
README.md docs: replace absolute links to aio with relative links. (#50213) 2023-05-10 14:29:50 -07:00
resources-contributing.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08: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: change link for Angular Projects book (#49198) 2023-02-27 08:05:20 -08:00
scaling.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08: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 [this link](/about?group=Angular), who are "trusted collaborators" see [this link](/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/.