diff --git a/README.md b/README.md index e183f69..0ad6bdc 100644 --- a/README.md +++ b/README.md @@ -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 (``). - 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.