Skip to content

Commit

Permalink
Merge pull request #823 from IIIF/exec_terms
Browse files Browse the repository at this point in the history
Adding exec terms to the website
  • Loading branch information
glenrobson authored Jan 23, 2024
2 parents 4fbf297 + 2585dfa commit 04f3f5b
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 20 deletions.
73 changes: 73 additions & 0 deletions source/_data/exec_terms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
- name: Batch A
start: 2021
term: 3
members:
- Stanford University
- Bibliothèque nationale de France (BnF)
- British Library
- University of Göttingen
- name: Batch B
start: 2022
term: 3
members:
- National Gallery of Art
- Northwestern University
- The University of Edinburgh
- name: Batch C
start: 2023
term: 3
members:
- Cornell University
- Ghent University
- J. Paul Getty Trust
- Yale University
- name: Batch Ca
start: 2023
term: 4
members:
- Europeana Foundation
- Harvard University
- name: Batch D
start: 2024
term: 3
members:
- 2024 Election Seat 2
- 2024 Election Seat 3
- 2024 Election Seat 4
- name: Batch Da
start: 2024
term: 4
members:
- 2024 Top Election Seat 1
- name: Batch E
start: 2025
term: 3
members:
- 2025 Election Seat 1
- 2025 Election Seat 2
- 2025 Election Seat 3
- name: Batch F
start: 2026
term: 3
members:
- 2026 Election Seat 1
- 2026 Election Seat 2
- 2026 Election Seat 3
- 2026 Election Seat 4
- name: Batch G
start: 2027
term: 3
members:
- 2027 Election Seat 1
- 2027 Election Seat 2
- 2027 Election Seat 3
- 2027 Election Seat 4
- 2027 Election Seat 5
- name: Batch H
start: 2028
term: 3
members:
- 2028 Election Seat 1
- 2028 Election Seat 2
- 2028 Election Seat 3
- 2028 Election Seat 4
65 changes: 45 additions & 20 deletions source/community/consortium/consortium_committees.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,60 @@ The Executive Committee is currently working on developing a [new iterative stra

Current Executive Committee institutions are:

- Bibliothèque nationale de France (BnF)
- British Library
- Cornell University
- Europeana Foundation
- Göttingen State and University Library (SUB Göttingen)
- Harvard University
- J. Paul Getty Trust
- Leiden University Libraries
- National Gallery of Art
- Northwestern University
- Stanford University
- The University of Edinburgh
- Yale University
{% assign items = site.data.exec_terms %}
{% assign year = site.time | date: '%Y' | plus: 0 %}
{% for batch in items %}
{% assign end_year = batch.start | plus: batch.term %}
{% if year > batch.start and year <= end_year %}
{% for member in batch.members %}
- {{ member }} - ({{batch.start}} - {{ end_year }})
{% endfor %}
{% endif %}
{% endfor %}

Committee Chair: Tom Cramer, Stanford University Libraries
Vice-chair: Regine Stein, Göttingen State and University Library (SUB Göttingen)
Treasurer: Neil Fitzgerald, The British Library

---
Terms ending in {{ year }}:
{% for batch in items %}
{% assign end_year = batch.start | plus: batch.term %}
{% if year == end_year %}
{% for member in batch.members %}
- {{ member }}
{% endfor %}
{% endif %}
{% endfor %}


Table of elections and seats for members of the IIIF Consortium Executive Committee
{% assign start = 2024 %}
{% assign end = items.last.start %}
{% assign years = "Year, 2020, 2021, 2022, 2023" |split: "," %}
{% assign seats = "Total seats, 13, 13, 13, 13" | split: "," %}
{% assign ballots = "Seats up for election, 2, 11, 4, 5" | split: "," %}
{% for year in (start..end) %}
{% assign years = years | push: year %}
{% assign seat_count = 0 %}
{% assign ballot_count = 0 %}
{% for batch in items %}
{% assign end_year = batch.start | plus: batch.term %}
{% if year == end_year %}
{% assign ballot_count = ballot_count | plus: batch.members.size %}
{% endif %}
{% if year > batch.start and year <= end_year %}
{% assign seat_count = seat_count | plus: batch.members.size %}
{% endif %}
{% endfor %}
{% assign seats = seats | push: seat_count %}
{% assign ballots = ballots | push: ballot_count %}
{% endfor %}

|Year|2020|2021|2022|2023|2024|2025|
|--- |--- |--- |--- |--- |--- |--- |
|total # of seats|13|13|13|13|13|13|
|# of seats for ballot|2|11|4|5|4|4|
|Seats for ballot|2 members elected in 2018|11 founding members|4 members elected in 2021|2 members elected in 2020 +3 elected in 2021|4 members elected in 2021|4 members elected in 2022|
{% for item in years %}{%if item == years.first %}|{% endif%} <b>{{ item }}</b> | {% endfor %}
{% for item in seats %}{%if item == years.first %}|{% endif%} {{ item }} | {% endfor %}
{% for item in ballots %}{%if item == years.first %}|{% endif%} {{ item }} | {% endfor %}
| Notes: | |11 founding members|| 2 serving 4 year terms| 1 serving 4 year term|
{: .api-table}

## Operating Committee
Expand All @@ -57,6 +84,4 @@ Current members:
- Tom Cramer, Stanford University Libraries
- Regine Stein, Göttingen State and University Library (SUB Göttingen)
- Neil Fitzgerald, The British Library
- Roger Lawson, National Gallery of Art
- Simeon Warner, Cornell University
- Mike Appleby, Yale University

0 comments on commit 04f3f5b

Please sign in to comment.