-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] add page for working groups (#458)
* start adding working group * render tables * fix filename * rm blog post * update links working groups * fix import * rename
- Loading branch information
Showing
9 changed files
with
141 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- | ||
# template | ||
# - title: | ||
# goal: | ||
# open_letter: | ||
# communication_channel: | ||
# url: | ||
# chairs: | ||
# - name: | ||
# email: | ||
# - name: | ||
# email: | ||
# status: | ||
# outcome: | ||
# - url: | ||
# - url: | ||
# | ||
|
||
# ACTIVE | ||
|
||
# - title: BIDS 2.0 | ||
# goal: Discussions and suggestions of backwards incompatible changes to BIDS | ||
# open_letter: TBD | ||
# communication_channel: TBD | ||
# url: https://github.com/bids-standard/bids-2-devel | ||
# chairs: | ||
# - name: Yaroslav Halchenko | ||
# email: [email protected] | ||
# status: active | ||
|
||
# - title: Governance amendments | ||
# goal: Clarification of the BEP process | ||
# open_letter: TBD | ||
# communication_channel: TBD | ||
# url: | ||
# chairs: | ||
# - name: | ||
# email: | ||
# status: active | ||
|
||
- title: Code of conducts amendments | ||
goal: Update and uniformizations of the BIDS code of conducts | ||
open_letter: https://docs.google.com/document/d/1mxtijf1khONdU23phKfMpIwk-RTDQ07eVpJsMHemoLA/edit | ||
communication_channel: TBD | ||
url: https://docs.google.com/document/d/1Cj9trFifGNqyNtpyEO9FfJLlmDGTbUy5enRAA9rTyH4/edit?usp=sharing | ||
chairs: | ||
- name: Ariel Rokem | ||
email: [email protected] | ||
- name: Dora Hermes | ||
email: [email protected] | ||
status: active | ||
|
||
- title: BIDS online presence | ||
goal: Streamline online resources based on community feedback | ||
open_letter: https://docs.google.com/document/d/1lN9hu5ufpkkkD41XXWrH_tnEXlKUlJaZNQBYF3OtV9M/edit?usp=sharing | ||
communication_channel: TBD | ||
url: | ||
chairs: | ||
- name: Eric Earl | ||
email: [email protected] | ||
- name: Christine Rogers | ||
email: [email protected] | ||
status: active | ||
|
||
# DISSOLVED | ||
|
||
- title: Governance amendment | ||
goal: Update the BIDS governance | ||
open_letter: https://docs.google.com/document/d/18PpfSgcHckqejTZsRZlEDlJ_yD3JiwSQ8kCjVXorg6U/edit#heading=h.6tz42cdj5asc | ||
communication_channel: | ||
url: https://docs.google.com/document/d/18PpfSgcHckqejTZsRZlEDlJ_yD3JiwSQ8kCjVXorg6U/edit#heading=h.6tz42cdj5asc | ||
chairs: | ||
- name: Rémi Gau | ||
email: [email protected] | ||
status: dissolved | ||
outcome: '[Pull request](https://github.com/bids-standard/bids-website/pull/346)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# BIDS Working groups | ||
|
||
BIDS working groups are typically formed (but not limited to) | ||
for the purpose of advancing the BIDS community, not the standard. | ||
|
||
This could be a to set up and organize a local BIDS chapter, | ||
to improve the documentation around BIDS... | ||
|
||
## Forming a working group | ||
|
||
The rules to form a working group are mentioned in the [governance](./governance.md#other-workinginterest-groups). | ||
|
||
A template for the open-letter can be found in [this google doc](https://docs.google.com/document/d/1JfTliUcpyRAGdiZSHObkvZFdkrxPTclQTvolr8ssNHM/edit). | ||
|
||
## Active working groups | ||
|
||
{{ MACROS___generate_working_groups_table(file="working_groups.yml", status="active") }} | ||
|
||
## Past working groups | ||
|
||
{{ MACROS___generate_working_groups_table(file="working_groups.yml", status="dissolved") }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% if status == "dissolved" %} | ||
| Name | Goal | Lead(s) | Outcome | | ||
| :---: | :---- | :------ | :------ | | ||
{% else %} | ||
| Name | Goal | Lead(s) | communication channel | | ||
| :---: | :---- | :---- | :-------------------- | | ||
{% endif %} | ||
{% for group in include %} | ||
{% if group.status == status %} | ||
| [{{ group.title }}]({{ group.url }}) | {{ group.goal }} | {% for person in group.chairs %} {% if person.email %} [{{ person.name }}](mailto:{{ person.email }}) {% else %} {{ person.name }} {% endif %}<br>{% endfor %} | {% if status == "dissolved" %} {{ group.outcome }} {% else %} {{ group.communication_channel }} {% endif %} | | ||
{% endif %} | ||
{% endfor %} |