Skip to content

Commit

Permalink
Remove use case table
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed Nov 17, 2023
1 parent e874033 commit 15d3cb9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 29 deletions.
14 changes: 0 additions & 14 deletions _includes/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,5 @@
})
}
// RA highlight in use-case table
var uc_table = document.getElementById("use-case-table").children[1];
for (var i = 0, row; row = uc_table.rows[i]; i++) {
for (var j = 0, cell; cell = row.cells[j]; j++) {
var contents = cell.innerHTML.toLowerCase();
for (var k = 0, prj; prj = Object.keys(project_areas)[k]; k++) {
if ( contents.includes(prj.toLowerCase()) ){
var area = project_areas[prj];
cell.classList.add("gt-area-cell-"+area);
cell_highlight(cell, area);
}
}
}
}
</script>
</html>
15 changes: 0 additions & 15 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,6 @@ anchors:

### Research Areas

<div id="use-case-table" class="w3-table w3-margin-bottom">
<center>Projects by use case, development stage, and research area.</center>

| | Develop | Test/Integrate | Deploy/Execute | Reuse |
|-----------|----------------------------------------------------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
| Automate | [MergeResolver][], [Mnemosyne][], [Software Search Replace][] | [Bindle][], [Bug-Injector][], [Mnemosyne][], [Proteus][], [REAFFIRM][], [Swap Detector][] | | |
| Optimize | | [Binary-Reduce][] | | [Binary-Reduce][] |
| Repair | | [Proteus][], [REAFFIRM][] | [AMBER][], [ARTCAT][], [SySense][] | [Proteus][], [REAFFIRM][], [GTIRB-VSCode][] |
| Diversify | [Variegate][] | | | |
| Harden | [Mnemosyne][], [CRAM][] | [Binary-Reduce][], [Proteus][], [REAFFIRM][], [Stack-Stamp][], [To-Static][] | [AMBER][], [ARTCAT][], [ConfINE][], [SySense][] | [Binary-Reduce][], [Proteus][], [REAFFIRM][], [Stack-Stamp][], [To-Static][] |
| Assure | | [A-CERT][] | | [A-CERT][] |
| Assess | [Spec-Map][] | [A-CERT][], [Discover][], [Mnemosyne][], [Proteus][], [REAFFIRM][] | [AMBER][], [ARTCAT][], [ConfINE][], [SySense][] | [A-CERT][], [Bin2Math][], [DDisasm][], [Discover][], [FVA][], [Proteus][], [REAFFIRM][], [TBDC][], [TFPGA][], [GTIRB-VSCode][] |

</div>

{% assign row = 0 %}
{% for ra in collections.ra %}
{% if row == 0 %}
Expand Down

0 comments on commit 15d3cb9

Please sign in to comment.