diff --git a/CHANGELOG.md b/CHANGELOG.md index bedb968d31a75a7c04217b55901083a49f7e38c0..40da08b0d84d079a49c9f748e2add8967ca22ea7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### ### Fixed ### +* [#89](https://gitlab.com/linkahead/linkahead-pylib/-/issues/89) + `to_xml` does not add `noscript` or `TransactionBenchmark` tags anymore ### Security ### diff --git a/src/linkahead/common/models.py b/src/linkahead/common/models.py index 1dbeb802311c7afaea2340af15e49537520ef57f..6204e1197840c4f7347697c91ecae90967e5e894 100644 --- a/src/linkahead/common/models.py +++ b/src/linkahead/common/models.py @@ -3284,6 +3284,7 @@ class Container(list): if add_to_element is None: add_to_element = etree.Element("Entities") + noscript_in_supplied_xml = list(add_to_element.iter("noscript", "TransactionBenchmark")) for m in self.messages: add_to_element.append(m.to_xml()) @@ -3300,6 +3301,13 @@ class Container(list): elem = e.to_xml() add_to_element.append(elem) + # remove noscript and benchmark elements added by this function + for elem in list(add_to_element.iter("noscript", "TransactionBenchmark")): + if elem not in noscript_in_supplied_xml: + parent = elem.getparent() + if parent is not None: + parent.remove(elem) + return add_to_element def get_errors(self):