Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scanpolicies: add TOC entries and fix link #5954

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion addOns/scanpolicies/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ All notable changes to this add-on will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

### Fixed
- Fix link in the help page.

## [0.1.0] - 2024-11-27
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <H1>Scan Policies</H1>
<li><a href="policy-dev-full.html">Developer Full Policy</a> : a developer focused policy, including a superset of the dev standard with a greater variety of potential findings and only minimal environmental/server related rules (intended for use in a dev environment)
<li><a href="policy-qa-std.html">QA Standard Policy</a> : a quality assurance focused policy meant to perform fairly quickly while providing a greater set of results than developer policies, intended for use in a QA/staging environment
<li><a href="policy-qa-full.html">QA Full Policy</a> : a more comprehensive quality assurance focused policy, including a superset of the QA standard with a greater variety of potential findings with more environmental/server related rules, intended for use in a QA/Staging environment
<li><a hrf="policy-api.html">API Policy</a> : a policy focusing on issues likely to impact APIs and not UI.
<li><a href="policy-api.html">API Policy</a> : a policy focusing on issues likely to impact APIs and not UI.
kingthorin marked this conversation as resolved.
Show resolved Hide resolved
</ul>

</BODY>
Expand Down
3 changes: 3 additions & 0 deletions addOns/scanpolicies/src/main/javahelp/help/map.jhm
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

<map version="1.0">
<mapID target="addon.scanpolicies" url="contents/scanpolicies.html" />
<mapID target="addon.policy-api" url="contents/policy-api.html" />
<mapID target="addon.policy-default" url="contents/policy-default.html" />
<mapID target="addon.policy-dev-cicd" url="contents/policy-dev-cicd.html" />
<mapID target="addon.policy-dev-std" url="contents/policy-dev-std.html" />
<mapID target="addon.policy-dev-full" url="contents/policy-dev-full.html" />
<mapID target="addon.policy-qa-std" url="contents/policy-qa-std.html" />
<mapID target="addon.policy-qa-full" url="contents/policy-qa-full.html" />
<mapID target="addon.scanpolicies-icon" url="contents/images/equalizer.png" />
</map>
3 changes: 3 additions & 0 deletions addOns/scanpolicies/src/main/javahelp/help/toc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
<tocitem text="ZAP User Guide" tocid="toplevelitem">
<tocitem text="Add Ons" tocid="addons">
<tocitem text="Scan Policies" image="addon.scanpolicies-icon" target="addon.scanpolicies">
<tocitem text="API" target="addon.policy-api"/>
<tocitem text="Default Policy" target="addon.policy-default"/>
<tocitem text="Developer CI/CD Policy" target="addon.policy-dev-cicd"/>
<tocitem text="Developer Standard Policy" target="addon.policy-dev-std"/>
<tocitem text="Developer Full Policy" target="addon.policy-dev-full"/>
<tocitem text="QA Standard Policy" target="addon.policy-qa-std"/>
<tocitem text="QA Full Policy" target="addon.policy-qa-full"/>
</tocitem>
</tocitem>
</tocitem>
Expand Down