Skip to content

Commit

Permalink
Removing website
Browse files Browse the repository at this point in the history
  • Loading branch information
Louie Simpson committed Mar 7, 2019
1 parent eed3712 commit ca70c5f
Show file tree
Hide file tree
Showing 180 changed files with 16 additions and 21,054 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
csv/*.xlsx
~$edramp.xml
~$edramp.xml
.sass-cache/
13 changes: 13 additions & 0 deletions cleanup_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ def find_control_by_id(id):
if control == id:
return control

def extract_related_controls(input_text):
matches = []
if("related control" in input_text.lower()):

m = re.search("related control[s]?:([^\.]+)\.", input_text.lower())
if(m):
raw = m.groups(0)[0].replace(" ", "")
matches = raw.split(",")

return matches

controls = {'Controls': {}}
idx = 0
Expand Down Expand Up @@ -58,6 +68,7 @@ def find_control_by_id(id):
"ID": row["ID"],
"ControlText": row['Control Description'],
"Impacts": [file['Impact']],
"RelatedControls": extract_related_controls(row['Control Description']),
"FedrampGuidance": row['Further Guidance'].strip()
}
if controls['Controls'][tc]:
Expand All @@ -71,9 +82,11 @@ def find_control_by_id(id):
control = {
"ID": row["ID"],
"TITLE": row['Control Name'],
"Family": row["Family"],
"ControlText": row['Control Description'],
"Impacts": [file['Impact']],
"Enhancements": [],
"RelatedControls": extract_related_controls(row['Control Description']),
"FedrampGuidance": row['Further Guidance'].strip()
}
controls['Controls'][row["ID"]] = control
Expand Down
1 change: 1 addition & 0 deletions output/fedramp_controls.json

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 0 additions & 13 deletions web/_config.yml

This file was deleted.

1 change: 0 additions & 1 deletion web/_data/fedramp_controls.json

This file was deleted.

5 changes: 0 additions & 5 deletions web/_includes/footer.html

This file was deleted.

8 changes: 0 additions & 8 deletions web/_includes/head.html

This file was deleted.

8 changes: 0 additions & 8 deletions web/_layouts/default.html

This file was deleted.

32 changes: 0 additions & 32 deletions web/_site/css/bootstrap/bootstrap-grid.scss

This file was deleted.

12 changes: 0 additions & 12 deletions web/_site/css/bootstrap/bootstrap-reboot.scss

This file was deleted.

43 changes: 0 additions & 43 deletions web/_site/css/bootstrap/bootstrap.scss

This file was deleted.

Loading

0 comments on commit ca70c5f

Please sign in to comment.