-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* More themes * Updated themes * Added INFO docs to themes * Themes now have id, name and description * Fix lint * Make theme.json work * Themes tweaks
- Loading branch information
1 parent
d052e0d
commit 011a6ae
Showing
8 changed files
with
147 additions
and
0 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 @@ | ||
|
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,32 @@ | ||
<table style="text-align: center"> | ||
<thead> | ||
<tr> | ||
<th>Id</th> | ||
<th>Name</th> | ||
<th>Spec Status</th> | ||
{% if include.show_releases %} | ||
<th>Release(s)</th> | ||
{% endif %} | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% assign specs_to_show = site.data.specs | where_exp:"spec", "spec.themes contains include.filter_theme" | where: "show_in_index", true %} | ||
{% for spec in specs_to_show %} | ||
<tr> | ||
<td><a href="{{ spec.url }}">{{ spec.amwa_id }}</a></td> | ||
<td><a href="{{ spec.url }}">{{ spec.name }}</a></td> | ||
<td>{{ spec.status }}</td> | ||
{% if include.show_releases %} | ||
<td> | ||
{% for release in spec.releases %} | ||
<div> | ||
<a href="{{ spec.url }}/{{ release }}">{{ release }}</a> | ||
<a href="{{ spec.repo_url }}/releases/tag/{{ release }}">↓</a> | ||
</div> | ||
{% endfor %} | ||
</td> | ||
{% endif %} | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> |
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,27 @@ | ||
<table style="text-align: center"> | ||
<thead> | ||
<tr> | ||
<th>Theme</th> | ||
<th>Description</th> | ||
<th>Members</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for theme in site.data.themes %} | ||
<tr> | ||
<!-- <td><a href="{{ spec.url }}">{{ spec.name }}</a></td> --> | ||
<td>{{ theme.name }}</td> | ||
<td>{{ theme.description }}</td> | ||
<td> | ||
{% for member in theme.members %} | ||
<div> | ||
<!-- <a href="{{ spec.url }}/{{ member }}">{{ member }}</a> --> | ||
{{ member }} | ||
{{ site.data.specs[0].amwa_id }} | ||
</div> | ||
{% endfor %} | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> |
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,4 @@ | ||
--- | ||
--- | ||
|
||
{{ site.data.specs | jsonify }} |
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,13 @@ | ||
# NMOS Specifications by Theme | ||
|
||
The tables below are organised by theme. To see them organised by id, click [here](.) | ||
|
||
{% for theme in site.data.themes %} | ||
|
||
### {{ theme.name }} | ||
|
||
{{ theme.description}} | ||
|
||
{% include specs_by_theme_table.html filter_theme=theme.id show_releases=true %} | ||
|
||
{% endfor %} |
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,13 @@ | ||
# NMOS Specifications by Theme | ||
|
||
The tables below are organised by theme. To see them organised by id, click [here](.) | ||
|
||
{% for theme in site.data.themes %} | ||
|
||
### {{ theme.name }} | ||
|
||
{{ theme.description}} | ||
|
||
{% include specs_by_theme_table.html filter_theme=theme.id show_releases=true %} | ||
|
||
{% endfor %} |
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,54 @@ | ||
- id: RESOURCE | ||
name: Resource Management | ||
description: Specifications, recommendations and guidance concerning registration, discovery and labelling of NMOS resources | ||
members: | ||
- IS-04 | ||
- IS-09 | ||
- IS-13 | ||
- BCP-002-01 | ||
- BCP-002-02 | ||
- INFO-004 | ||
- INFO-005 | ||
|
||
- id: CONNECTION | ||
name: Connection Management | ||
description: Specifications, recommendations and guidance concerning connection of devices, audio channel mapping and compressed streams | ||
members: | ||
- IS-05 | ||
- IS-08 | ||
- BCP-004-01 | ||
- BCP-006-01 | ||
- BCP-006-02 | ||
- BCP-006-03 | ||
- BCP-007-01 | ||
- INFO-003 | ||
- INFO-005 | ||
|
||
- id: CONTROL | ||
name: Device Control & Monitoring | ||
description: Specifications, recommendations and guidance concerning device control and status monitoring | ||
members: | ||
- IS-07 | ||
- IS-12 | ||
- MS-05-01 | ||
- MS-05-02 | ||
- BCP-008-01 | ||
- INFO-006 | ||
|
||
- id: CONFIGURATION | ||
name: Device Configuration | ||
description: Specifications, recommendations and guidance concerning device and media parameter configuration | ||
members: | ||
- IS-11 | ||
- IS-14 | ||
|
||
- id: SECURITY | ||
name: Security Recommendatations | ||
description: Specifications, recommendations and guidance concerning encryption, authorisation and certificate provisioning | ||
members: | ||
- IS-10 | ||
- BCP-003-01 | ||
- BCP-003-02 | ||
- BCP-003-03 | ||
- INFO-002 | ||
- INFO-005 |