Skip to content

Commit 178c361

Browse files
authored
Merge pull request #237 from secure-systems-lab/update-projects-new
Update projects from #156
2 parents d5150cd + 06da850 commit 178c361

15 files changed

+352
-226
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ node_modules
4848
.jekyll-cache
4949

5050
# Ruby
51-
.bundle
51+
.bundle

_data/data.yml

Lines changed: 317 additions & 205 deletions
Large diffs are not rendered by default.

_test/data/test_01_projects_vs_project.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/data/test_02_project_list_vs_str.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/data/test_03_misspelled_alias.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/data/test_04_unescaped_quotes.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/data/test_05_alias_instead_of_str.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/data/test_data.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ projects:
4343
image: "img/projects/tuf_diagram.png"
4444
site: "https://theupdateframework.github.io"
4545
status: *stealth
46-
description: "Software must be updated frequently to not only ensure"
46+
description:
47+
- "Software must be updated frequently to not only ensure"
4748
products: "TUF is used in production by"
4849
people:
4950
- *justin_cappos

_test/yamale_schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ project:
4747
image: str(required=False)
4848
site: str(required=False)
4949
status: include('status')
50-
description: str()
50+
description: list(str())
5151
products: str()
5252
people: list(any(include('person'), include('proj_person')))
5353
tags: list(include('tag'))

css/projects.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@
7474
font-weight: bold;
7575
font-size: 1.2rem;
7676
}
77+
78+
h5 {
79+
font-family: 'Bebas Neue', Helvetica, Arial, sans-serif;
80+
}
7781
}
7882

7983
/* Tooltips - http://www.w3schools.com/howto/howto_css_tooltip.asp */

0 commit comments

Comments
 (0)