Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Compose single Schematron and XSpec documents #108

Merged
merged 26 commits into from
Jul 1, 2021
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3b0ea75
Consolidate Schematron and XSpec documents
GaryGapinski Jun 22, 2021
7c3ff9c
Correct build-relative document references
GaryGapinski Jun 22, 2021
03d2331
Add Digital Identity Determination validations
GaryGapinski Jun 22, 2021
eb9f893
Add media-types
GaryGapinski Jun 23, 2021
083ac2b
Minor refactoring
GaryGapinski Jun 23, 2021
b78019e
Add FIPS 140 (CMVP) validations
GaryGapinski Jun 23, 2021
2c9f924
Reference diagnostics in FIPS 199 validations
GaryGapinski Jun 23, 2021
1a52765
Add assertion diagnostics
GaryGapinski Jun 23, 2021
10fe1ed
Add assertion diagnostics
GaryGapinski Jun 24, 2021
65bc275
Change stage 2 content
GaryGapinski Jun 24, 2021
ac24c95
Correct minor errors in assertion messages
GaryGapinski Jun 24, 2021
fad3ffa
Add XSL transform to produce an HTML5 rendition of rules
GaryGapinski Jun 24, 2021
187490d
Restoret informational sch:report items.
GaryGapinski Jun 24, 2021
79134d0
Use full words for assertion roles
GaryGapinski Jun 24, 2021
8cdb94d
Minor edits
GaryGapinski Jun 25, 2021
43da850
Add XSpec coverage
GaryGapinski Jun 25, 2021
c179806
Relegate XSpec errors to pending
GaryGapinski Jun 25, 2021
bf36a5f
Adopt editorial changes
GaryGapinski Jun 28, 2021
2238c9d
Juxtapose assertion and diagnostic and highlight both
GaryGapinski Jun 28, 2021
0f08d0e
Adopt editorial changes
GaryGapinski Jun 28, 2021
66a3f95
Terminate transform if input document is not available
GaryGapinski Jun 28, 2021
89eddea
Apply XML formatting
GaryGapinski Jun 28, 2021
0b33aaa
Adopt editorial changes
GaryGapinski Jun 28, 2021
54f3ffb
Augment CMVP (FIPS 140) assertions
GaryGapinski Jun 29, 2021
ce4f792
Augment CMVP (FIPS 140) assertions
GaryGapinski Jun 29, 2021
96661db
Use FIPS 199 categorations from fedramp_values.xml
GaryGapinski Jun 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 107 additions & 0 deletions resources/validations/src/rules.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
caption {
font-weight: bold;
font-size: large;
}

thead tr {
background-color: #e0e0e0;
color: inherit;
}

thead th {
vertical-align: bottom;
text-align: left;
white-space: normal;
}

thead td {
}

tbody tr {
vertical-align: top;
}

tbody th {
text-align: left;
background-color: #e8e8e8;
color: inherit;
}

tbody tr {
background-color: #f0f0f0;
color: inherit;
}

code code {
color: inherit;
}

.highlight {
background-color: powderblue;
}
.highlight-missed {
background-color: yellow;
}

.missing {
background-color: orange;
}

.NB {
background-color: thistle;
}

.FedRAMP-ns {
background-color: chartreuse;
}

.context-item {
font-variant: small-caps;
}

.role-error,
.role-fatal {
color: red;
}

.role-warning {
color: orange;
}

blockquote {
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C" "\201D" "\2018" "\2019";
width: 50%;
}

*[title] {
cursor: help;
}

.assertion,
.diagnostic {
font-style: italic;
}
.assertion,
.diagnostic {
font-weight: bold;
font-size:larger;
}
.assertion:before,
.diagnostic:before {
content: "assertion: ";
font-style: normal;
font-weight: normal;
}
.diagnostic:before {
content: "diagnostic: ";
font-style: normal;
}

.substitution {
font-family: monospace;
background-color: lightgrey;
}
Loading