forked from cadonuno/veracode-tags-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (75 loc) · 4.3 KB
/
Copy pathindex.html
File metadata and controls
76 lines (75 loc) · 4.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="/veracode-tags-test/core-styles-1.0.css" rel="stylesheet" crossorigin="anonymous">
<script src="/veracode-tags-test/scripts-1.7.js"></script>
</head>
<body>
<div id="wrapper">
<div class="row start container-light" id="dark-mode-toggle-container">
<div class="form-check form-switch" style="margin-left: 0px;">
<input type="checkbox" class="form-check-input" id="darkSwitch" onchange="toggleDarkMode()"/>
<label class="custom-control-label" for="darkSwitch">Dark Mode</label>
</div>
</div>
<div id="instructions-container" class="container-light">
<details id="instructions-details" ontoggle="toggleAllCookies()">
<summary>Usage Instructions:</summary>
<div class="row">
<span>A collection of useful open source projects that integrate with the Veracode APIs to automate scanning, results retrieval and other tasks. </br>
These projects are community contributed and not supported by Veracode. For a list of supported projects, please see the listing of projects on <a href="https://www.veracode.com/integrations">https://www.veracode.com/integrations</a>. </br> </br>
On filters:
<ul>
<li>Searching is <b>not</b> case-sensitive.</li>
<li>You can filter the grid by clicking the filter options on a column header. Those filters only apply to that one column.</li>
<li>You can combine filters in any way you like, however, only 10 filters can be applied <b>per column</b>.</li>
<li>You can click on a tag to add an additional filter for it. Clicking it again will remove other filters, effectively filtering only by that tag.</li>
<ul>
<li>If the 10 filter limit is exceeded this way, the first filter is removed.</li>
</ul>
</ul></br>
All plugins are assigned to <b>at least</b> one of these categories:
<ul>
<li><a href="#" onclick="triggerTagSearch('Automation Script')">Automation Script</a></li>
<li><a href="#" onclick="triggerTagSearch('Automation Example')">Automation Example</a></li>
<li><a href="#" onclick="triggerTagSearch('Container')">Container</a></li>
<li><a href="#" onclick="triggerTagSearch('Insecure Application')">Insecure Application</a></li>
<li><a href="#" onclick="triggerTagSearch('Library')">Library</a></li>
<li><a href="#" onclick="triggerTagSearch('One-of run')">One-of run</a></li>
<li><a href="#" onclick="triggerTagSearch('Plugin')">Plugin</a></li>
<li><a href="#" onclick="triggerTagSearch('Security Example')">Security Example</a></li>
</ul> <br />
Most of the content is in English, content in other languages is tagged with the language (i.e. <a href="#" onclick="triggerTagSearch('Portuguese')">Portuguese</a>).
<hr/>
</span>
</div>
</details>
</div>
<div id="cookie-notice" class="container-light">
<details id="cookie-notice-details" ontoggle="toggleAllCookies()">
<summary>Cookie Notice:</summary>
<div>We use cookies to store the latest stage of a few fields in the webpage. All cookies only contain a true/false (boolean) and are used to keep those values consistent on page reloads.<br/>
The Stored values are:
<ul style="margin-bottom: 0px;padding-bottom: 10px;">
<li>Is Dark Mode Enabled</li>
<li>Are the Usage Instructions open</li>
<li>Is the Cookie Notice open</li>
</ul>
</div>
</details>
</div>
<div id="reset-filters-container" class="container-light" style="padding-bottom: 5px; padding-left: 5px;">
<button id="button-reset-filters" style="border-radius: .5rem;" type="button" class="btn btn-light btn-sm" onclick="resetFilters()">Reset Filters</button>
</div>
<div class="row">
<div class="ag-theme-quartz" id="gridjs"></div>
</div>
</div>
</body>
<script type="text/javascript">
populateGrid();
loadCookieInformation();
</script>
</html>