-
-
Notifications
You must be signed in to change notification settings - Fork 331
New Usage - Suggestion #361
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a9d0ac5
Copy root README.md to assets' markdown files
vbakke 83f2416
Renamed USAGE.md to maturity-level-0.md
vbakke 64be7f5
Adjust maturity-level-0.md
vbakke 0ab672e
Add dimensions.md
vbakke 5f9cb10
Add new USAGE.md
vbakke 7ab2a18
Reorder sections in dimensions.md to follow the same order as elsewhe…
vbakke 2cacee5
Suggested Example Low Maturity scenario for the Build and Deployment …
vbakke b9e24af
Smaller improvements
vbakke 8890fee
Usage: Dynamically load other markdown files
vbakke d9e455d
Linting
vbakke 05f815b
Linting
vbakke 388fec1
What is DSOMM: part of OWASP Foundation
vbakke 617fb29
Fixes unit test for UsageComponent
vbakke b8d58b6
Incorporated comments from PR
vbakke 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,5 @@ | |
| /*background-color: aqua;*/ | ||
| padding: 30px; | ||
| padding-top: 0px; | ||
|
|
||
| } | ||
| max-width: 40rem; | ||
| } | ||
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 |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| <div class="main-section"> | ||
| <div [innerHTML]="toRender"></div> | ||
| <article [innerHTML]="toRender"></article> | ||
| </div> |
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 |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| <app-top-header section="Usage"></app-top-header> | ||
| <app-readme-to-html MDFile="./assets/Markdown Files/USAGE.md"> | ||
| <app-readme-to-html | ||
| class="usage-{{ page }}" | ||
| MDFile="./assets/Markdown Files/{{ page }}.md"> | ||
| </app-readme-to-html> |
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 |
|---|---|---|
| @@ -1,10 +1,24 @@ | ||
| import { Component } from '@angular/core'; | ||
| import { Component, OnInit } from '@angular/core'; | ||
| import { ActivatedRoute } from '@angular/router'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-usage', | ||
| templateUrl: './usage.component.html', | ||
| styleUrls: ['./usage.component.css'], | ||
| }) | ||
| export class UsageComponent { | ||
| constructor() {} | ||
| export class UsageComponent implements OnInit { | ||
| page: string = 'USAGE'; | ||
| constructor(private route: ActivatedRoute) {} | ||
|
|
||
| ngOnInit() { | ||
| if (this.route && this.route.params) { | ||
| this.route.params.subscribe(params => { | ||
| let page = params['page']; | ||
| // CWE-79 - sanitize input | ||
| if (page.match(/^[\w.-]+$/)) { | ||
| this.page = page; | ||
| } | ||
| }); | ||
| } | ||
| } | ||
| } |
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.