This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
de513f2
Update integrations to v2. Add beta alert. Align footer copyright. Fi…
zzzFelix 1454da1
Add missing files to git.
zzzFelix f668ca7
Adjust background image to beta alert. Document how to add a scanner.…
zzzFelix a5e0252
Align scanner icons
zzzFelix 600cb77
Add page for scanner examples, parse examples directory. Fix missing …
zzzFelix fe01d3f
Narrow down GraphQL query to restrain results
nigthknight 4b4903f
Ensure that scan.yml is shown before findings.yml
nigthknight b743f94
Refactoring variable names
nigthknight a1591bd
Change key of front page features to name as ID was
zzzFelix 58f2c23
[WIP] Add Scanner Example Component
nigthknight 108fe1f
Fix view for scan.yaml
nigthknight 84135ec
Change display order for findings.yml and scan.yml
nigthknight 919b83f
Remove file ending
nigthknight 7fb1b4d
Remove unneeded template
nigthknight adca459
Refactored the integrations page layout: introduced bootstrap grid-sy…
rfelber c418572
Moved IntegrationCard to it's own component to avoid code repitition
ace3e5f
resolve key prop error
e3fc926
fix typo
fe99fca
change order of persistence provider & hooks
8b12935
Merge pull request #13 from secureCodeBox/feature/v2-improve-hooks-in…
SirDany e8c80ea
Merge branch 'v2-beta' into doc-integration-examples
nigthknight 1f867b2
Merge branch 'v2-beta' into doc-integration-examples
nigthknight 463323c
Fix typo
nigthknight 1228a8f
Merge pull request #12 from secureCodeBox/doc-integration-examples
SirDany File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import React from 'react'; | ||
|
|
||
| const BetaAlert = () => ( | ||
| <div className="alert alert-warning beta-alert" role="alert"> | ||
| You are looking at preliminary documentation for secureCodeBox v2 beta. Not what you want? See <a | ||
| href="https://github.com/secureCodeBox/secureCodeBox/blob/master/README.md" | ||
| className="alert-link" | ||
| rel="noreferrer" | ||
| target="_blank"> | ||
| latest stable release documentation | ||
| </a>. | ||
| </div> | ||
| ); | ||
|
|
||
| export default BetaAlert; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| import React from 'react'; | ||
| import { withPrefix } from 'gatsby'; | ||
|
|
||
| const IntegrationCard = (props) => { | ||
| return ( | ||
| <div className="row integration-card hoverable"> | ||
| <div className="col-xl-2 col-lg-3 col-md-4 col-sm-4 col-4 integration-card-scanner-icon my-auto"> | ||
| <img | ||
| className="scanner-icon" | ||
| src={withPrefix( | ||
| '/integrationIcons/' + props.frontmatter.title + '.svg' | ||
| )} | ||
| alt="persistence provider icon" | ||
| ></img> | ||
| </div> | ||
| <div className="col-xl-8 col-lg-6 col-md-8 col-sm-8 col-8"> | ||
| <h2 className="integration-card-title"> | ||
| {props.frontmatter.title} | ||
| {props.frontmatter.category === 'scanner' | ||
| ? props.frontmatter.type.length > 0 && ( | ||
| <strong> ({props.frontmatter.type}) </strong> | ||
| ) | ||
| : ''} | ||
| </h2> | ||
| <div className="integration-card-content"> | ||
| <p>{props.frontmatter.usecase}</p> | ||
| </div> | ||
| </div> | ||
| <div className="col-xl-2 col-lg-3 col-md-12 col-sm-12 col-12 integration-card-scanner-icon my-auto"> | ||
| <div className="row"> | ||
| <div className="col-lg-12 col-md-6 col-sm-6 col-6"> | ||
| {props.frontmatter.state.length > 0 && | ||
| props.frontmatter.state === 'released' && ( | ||
| <img | ||
| className="release" | ||
| src={withPrefix( | ||
| 'https://img.shields.io/badge/State-' + | ||
| props.frontmatter.state + | ||
| '-green' | ||
| )} | ||
| alt="release version" | ||
| ></img> | ||
| )} | ||
| {props.frontmatter.state.length > 0 && | ||
| props.frontmatter.state === 'developing' && ( | ||
| <img | ||
| className="release" | ||
| src={withPrefix( | ||
| 'https://img.shields.io/badge/State-' + | ||
| props.frontmatter.state + | ||
| '-yellow' | ||
| )} | ||
| alt="release version" | ||
| ></img> | ||
| )} | ||
| {props.frontmatter.state.length > 0 && | ||
| props.frontmatter.state === 'roadmap' && ( | ||
| <img | ||
| className="release" | ||
| src={withPrefix( | ||
| 'https://img.shields.io/badge/State-' + | ||
| props.frontmatter.state + | ||
| '-lightgray' | ||
| )} | ||
| alt="release version" | ||
| ></img> | ||
| )} | ||
| </div> | ||
| <div className="col-lg-12 col-md-6 col-sm-6 col-6"> | ||
| {props.frontmatter.appVersion && ( | ||
| <img | ||
| className="release" | ||
| src={withPrefix( | ||
| 'https://img.shields.io/badge/App_Version-' + | ||
| props.frontmatter.appVersion + | ||
| '-blue' | ||
| )} | ||
| alt="release version" | ||
| ></img> | ||
| )} | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default IntegrationCard; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.