Skip to content

Commit

Permalink
Update README.md: Fix section_handler links
Browse files Browse the repository at this point in the history
  • Loading branch information
sustefil authored Apr 20, 2022
1 parent 74b67d9 commit 4f0cf36
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ The converter uses lxml.objectify to parse the whole input document.

Parsing and conversion of the following [CSAF CVRF 1.2](https://docs.oasis-open.org/csaf/csaf-cvrf/v1.2/cs01/csaf-cvrf-v1.2-cs01.html) XML elements are handled by separate section handlers. These section handlers process the elements recursively (converting also all their sub-elements). These elements are the direct children of the root XML element (`<cvrfdoc>`).
- DocumentTitle, DocumentType, DocumentDistribution, AggregateSeverity -> [`DocumentLeafElements`](blob/main/cvrf2csaf/section_handlers/document_leaf_elements.py) handler
- DocumentPublisher -> [`DocumentPublisher`](blob/main/cvrf2csaf/section_handlers/document_leaf_elements.py) handler
- DocumentTracking -> [`DocumentTracking`](blob/main/cvrf2csaf/section_handlers/document_tracking.py) handler
- DocumentNotes -> [`Notes`](blob/main/cvrf2csaf/section_handlers/notes.py) handler
- DocumentReferences -> [`References`](blob/main/cvrf2csaf/section_handlers/references.py) handler
- Acknowledgments -> [`Acknowledgments`](blob/main/cvrf2csaf/section_handlers/acknowledgments.py) handler
- ProductTree -> [`ProductTree`](blob/main/cvrf2csaf/section_handlers/product_tree.py) handler
- Vulnerability -> [`Vulnerability`](blob/main/cvrf2csaf/section_handlers/vulnerability.py) handler
- DocumentPublisher -> [`DocumentPublisher`](cvrf2csaf/section_handlers/document_leaf_elements.py) handler
- DocumentTracking -> [`DocumentTracking`](cvrf2csaf/section_handlers/document_tracking.py) handler
- DocumentNotes -> [`Notes`](cvrf2csaf/section_handlers/notes.py) handler
- DocumentReferences -> [`References`](cvrf2csaf/section_handlers/references.py) handler
- Acknowledgments -> [`Acknowledgments`](cvrf2csaf/section_handlers/acknowledgments.py) handler
- ProductTree -> [`ProductTree`](cvrf2csaf/section_handlers/product_tree.py) handler
- Vulnerability -> [`Vulnerability`](cvrf2csaf/section_handlers/vulnerability.py) handler

`Vulnerability` handler is reusing `Acknowledgments`, `References` and `Notes` handlers for its child elements.

Expand Down

0 comments on commit 4f0cf36

Please # to comment.