Skip to content

Commit 3edb84e

Browse files
authored
list server and website workgroup emeritus (#435)
motivation: credit workgroup emeritus changes: * refactor website and server workgroup pages to use data files instead of hard coded names * add list of workgroup emeritus to the website and server workgroup pages
1 parent 97a7b74 commit 3edb84e

File tree

8 files changed

+191
-39
lines changed

8 files changed

+191
-39
lines changed

_data/server-workgroup/emeriti.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
- name: Paulo Faria
2+
github: paulofaria
3+
affiliation: Zewo
4+
5+
- name: Steve Algernon
6+
github: salgernon
7+
affiliation: Apple
8+
9+
- name: Ian Partridge
10+
github: ianpartridge
11+
affiliation: IBM
12+
13+
- name: Chris Bailey
14+
github: seabaylea
15+
affiliation: IBM
16+
17+
- name: Logan Wright
18+
github: loganwright
19+
affiliation: Vapor
20+
21+
- name: Tanner Nelson
22+
url: tanner0101
23+
affiliation: Vapor
24+
25+
- name: Johannes Weiss
26+
github: weissi
27+
affiliation: Apple
28+
29+
- name: Fabian Fett
30+
github: fabianfett
31+
affiliation: Apple
32+
33+
- name: Todd Varland
34+
github: toddvarland
35+
affiliation: Amazon
36+
37+
- name: Kaitlin Mahar
38+
github: kmahar
39+
affiliation: MongoDB
40+
41+
- name: Patrick Freed
42+
github: patrickfreed
43+
affiliation: MongoDB
44+
45+
- name: Dave Moser
46+
github: dave-moser
47+
affiliation: Amazon
48+
49+
- name: Jimmy McDermott
50+
github: jdmcd
51+
affiliation: Transeo

_data/server-workgroup/members.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
- name: Adam Fowler
2+
github: adam-fowler
3+
affiliation:
4+
5+
- name: Franz Busch
6+
github: FranzBusch
7+
affiliation: Apple
8+
9+
- name: Gwynne Raskind
10+
github: gwynne
11+
affiliation: Vapor
12+
13+
- name: Joannis Orlandos
14+
github: joannis
15+
affiliation:
16+
17+
- name: Konrad Malawski
18+
github: ktoso
19+
affiliation: Apple
20+
21+
- name: Simon Pilkington
22+
github: tachyonics
23+
affiliation: Amazon
24+
25+
- name: Tim Condon
26+
github: 0xTim
27+
affiliation: Vapor
28+
29+
- name: Sebastien Stormacq
30+
github: sebsto
31+
affiliation: Amazon
32+
33+
- name: Tom Doron
34+
github: tomerd
35+
affiliation: Apple, Core team rep
File renamed without changes.

_data/sswg/group.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

_data/website-workgroup/emeriti.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- name: Kristina Fox
2+
github: krstnfx
3+
affiliation: Apple
4+
5+
- name: Paul Hudson
6+
github: twostraws
7+
affiliation:
8+
9+
- name: Michael Schinis
10+
github: mschinis
11+
affiliation:

_data/website-workgroup/members.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
- name: Alexander Sandberg
2+
github: alexandersandberg
3+
affiliation:
4+
5+
- name: Dave Verwer
6+
github: daveverwer
7+
affiliation: Swift Package Index
8+
9+
- name: James Dempsey
10+
github: dempseyatgithub
11+
affiliation:
12+
13+
- name: Mishal Shah
14+
github: shahmishal
15+
affiliation: Apple
16+
17+
- name: Paris Pittman
18+
github: parispittman
19+
affiliation: Apple
20+
21+
- name: Reda Lemeden
22+
github: kaishin
23+
affiliation:
24+
25+
- name: Tim Condon
26+
github: 0xTim
27+
affiliation: Vapor
28+
29+
- name: Tim Triemstra
30+
github: TimTr
31+
affiliation: Apple
32+
33+
- name: Tom Doron
34+
github: tomerd
35+
affiliation: Apple, Core team rep

sswg/index.md

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,35 @@ Analogous to the [Core Team](/community#core-team) for Swift, the workgroup is r
1313

1414
The current Swift Server workgroup consists of the following people:
1515

16-
* Adam Fowler ([@adam-fowler](https://github.com/adam-fowler))
17-
* Dave Moser ([@dave-moser](https://github.com/dave-moser), Amazon)
18-
* Franz Busch ([@FranzBusch](https://github.com/FranzBusch), Apple)
19-
* Gwynne Raskind ([@gwynne](https://github.com/gwynne), Vapor)
20-
* Jimmy McDermott ([@jdmcd](https://github.com/jdmcd) , Transeo)
21-
* Joannis Orlandos ([@joannis](https://github.com/joannis))
22-
* Konrad Malawski ([@ktoso](https://github.com/ktoso), Apple)
23-
* Patrick Freed ([@patrickfreed](https://github.com/patrickfreed), MongoDB)
24-
* Simon Pilkington ([@tachyonics](https://github.com/tachyonics), Amazon)
25-
* Tim Condon ([@0xTim](https://github.com/0xTim), Vapor)
26-
27-
With Tom Doron ([@tomerd](https://github.com/tomerd), Apple) representing the Swift core team.
16+
{% assign people = site.data.server-workgroup.members | sort: "name" %}
17+
<ul>
18+
{% for person in people %}
19+
<li> {{ person.name }}
20+
{% if person.affiliation %}
21+
, {{ person.affiliation }}
22+
{% endif %}
23+
{% if person.github %}
24+
(<a href="https://github.com/{{person.github}}">@{{person.github}}</a>)
25+
{% endif %}
26+
</li>
27+
{% endfor %}
28+
</ul>
29+
30+
We are grateful for the service of the following emeritus workgroup members:
31+
32+
{% assign people = site.data.server-workgroup.emeriti | sort: "name" %}
33+
<ul>
34+
{% for person in people %}
35+
<li> {{ person.name }}
36+
{% if person.affiliation %}
37+
, {{ person.affiliation }}
38+
{% endif %}
39+
{% if person.github %}
40+
(<a href="https://github.com/{{person.github}}">@{{person.github}}</a>)
41+
{% endif %}
42+
</li>
43+
{% endfor %}
44+
</ul>
2845

2946
## Communication
3047

@@ -67,7 +84,7 @@ The Swift Server Workgroup has a [process](/sswg/incubation-process.html) which
6784
</tr>
6885
</thead>
6986
<tbody>
70-
{% for project in site.data.sswg.projects %}
87+
{% for project in site.data.server-workgroup.projects %}
7188
<tr>
7289
<td><a href="{{ project.url }}">{{ project.name }}</a></td>
7390
<td>{{ project.description }}</td>

website-workgroup/index.md

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,35 @@ Analogous to the [Core Team](/community#core-team) for Swift, the workgroup is r
1616

1717
The current website workgroup consists of the following people:
1818

19-
* Alexander Sandberg ([@alexandersandberg](https://github.com/alexandersandberg))
20-
* Dave Verwer ([@daveverwer](https://github.com/daveverwer))
21-
* James Dempsey ([@dempseyatgithub](https://github.com/dempseyatgithub))
22-
* Mishal Shah ([@shahmishal](https://github.com/shahmishal), Apple)
23-
* Michael Schinis ([@mschinis](https://github.com/mschinis))
24-
* Paris Pittman ([@parispittman](https://github.com/parispittman), Apple)
25-
* Reda Lemeden ([@kaishin](https://github.com/kaishin))
26-
* Tim Condon ([@0xTim](https://github.com/0xTim), Vapor)
27-
* Tim Triemstra ([@TimTr](https://github.com/TimTr), Apple)
28-
29-
With Tom Doron ([@tomerd](https://github.com/tomerd), Apple) representing the Swift core team.
19+
{% assign people = site.data.website-workgroup.members | sort: "name" %}
20+
<ul>
21+
{% for person in people %}
22+
<li> {{ person.name }}
23+
{% if person.affiliation %}
24+
, {{ person.affiliation }}
25+
{% endif %}
26+
{% if person.github %}
27+
(<a href="https://github.com/{{person.github}}">@{{person.github}}</a>)
28+
{% endif %}
29+
</li>
30+
{% endfor %}
31+
</ul>
32+
33+
We are grateful for the service of the following emeritus workgroup members:
34+
35+
{% assign people = site.data.website-workgroup.emeriti | sort: "name" %}
36+
<ul>
37+
{% for person in people %}
38+
<li> {{ person.name }}
39+
{% if person.affiliation %}
40+
, {{ person.affiliation }}
41+
{% endif %}
42+
{% if person.github %}
43+
(<a href="https://github.com/{{person.github}}">@{{person.github}}</a>)
44+
{% endif %}
45+
</li>
46+
{% endfor %}
47+
</ul>
3048

3149
## Charter
3250

0 commit comments

Comments
 (0)