diff --git a/reqif/helpers/lxml.py b/reqif/helpers/lxml.py index 3b380ef..fc10980 100644 --- a/reqif/helpers/lxml.py +++ b/reqif/helpers/lxml.py @@ -27,6 +27,13 @@ def my_escape(string: str) -> str: return string +def my_escape_title(string: str) -> str: + # The only known reason for this method is the presence of & in the + # HEADER title of ReqIF files found at the ci.eclipse.org. + string = string.replace("&", "&") + return string + + # Using this rather hacky version because I could not make lxml to print # the namespaced tags such as: # --/reqif-xhtml:div> @@ -42,7 +49,7 @@ def _stringify_reqif_ns_node(node): node_no_ns_tag = etree.QName(node).localname output += f"<{nskey}:{node_no_ns_tag}" for attribute, attribute_value in node.attrib.items(): - output += f' {attribute}="{attribute_value}"' + output += f' {attribute}="{my_escape(attribute_value)}"' if node.text is not None or len(node.getchildren()) > 0: output += ">" if node.text is not None: diff --git a/reqif/parsers/header_parser.py b/reqif/parsers/header_parser.py index 6b6b44b..cce465d 100644 --- a/reqif/parsers/header_parser.py +++ b/reqif/parsers/header_parser.py @@ -1,6 +1,6 @@ from typing import Optional -from reqif.helpers.lxml import my_escape +from reqif.helpers.lxml import my_escape_title from reqif.models.reqif_reqif_header import ReqIFReqIFHeader @@ -113,7 +113,9 @@ def unparse(header: ReqIFReqIFHeader) -> str: "\n" ) if header.title: - output += f" {my_escape(header.title)}\n" + output += ( + f" {my_escape_title(header.title)}\n" + ) output += " \n" else: diff --git a/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif index d6e4d7f..e04589e 100644 --- a/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif +++ b/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -6,7 +6,7 @@ RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) 1.0 RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) - TC 1000 'Simple Content' + TC 1000 'Simple Content' diff --git a/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif index ac217b2..2025a5d 100644 --- a/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif +++ b/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -6,7 +6,7 @@ RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) 1.0 RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) - TC 1100 'Unformatted common system attributes & SpecHierarchy' + TC 1100 'Unformatted common system attributes & SpecHierarchy' diff --git a/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..1f7e7ea --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,2177 @@ + + + + + 2021-01-22T12:56:32.580Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1200 'Formated Content' + + + + + + + + + + + + + + ID_TC1200_DatatypeDefinitionXHTML + + + + + ID_TC1200_DatatypeDefinitionString + + + + + + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlH1Type + XhtmlH2Type + XhtmlH3Type + XhtmlH4Type + XhtmlH5Type + XhtmlH6Type + + XhtmlLiType + + + XhtmlLiType + + + XhtmlDtType + XhtmlDdType + + XhtmlPType + XhtmlDivType + XhtmlPreType + + XhtmlAddressType + + + + + + + XhtmlEditType + XhtmlEditType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlCaptionType + + + + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + XhtmlDdType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + XhtmlDtType + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + XhtmlThType + XhtmlTdType + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_SpecificationType + + + + + ID_TC1200_SpecObject_xhtml.p.type + + + + + ID_TC1200_SpecObject_xhtml.div.type + + + + + ID_TC1200_SpecObject_xhtml.br.type + + + + + ID_TC1200_SpecObject_xhtml.span.type + + + + + ID_TC1200_SpecObject_xhtml.em.type + + + + + ID_TC1200_SpecObject_xhtml.strong.type + + + + + ID_TC1200_SpecObject_xhtml.dfn.type + + + + + ID_TC1200_SpecObject_xhtml.code.type + + + + + ID_TC1200_SpecObject_xhtml.samp.type + + + + + ID_TC1200_SpecObject_xhtml.kbd.type + + + + + ID_TC1200_SpecObject_xhtml.var.type + + + + + ID_TC1200_SpecObject_xhtml.cite.type + + + + + ID_TC1200_SpecObject_xhtml.abbr.type + + + + + ID_TC1200_SpecObject_xhtml.acronym.type + + + + + ID_TC1200_SpecObject_xhtml.q.type + + + + + ID_TC1200_SpecObject_xhtml.inl.pres.type + + + + + ID_TC1200_SpecObject_xhtml.a.type + + + + + ID_TC1200_SpecObject_xhtml.edit.type + + + + + ID_TC1200_SpecObject_xhtml.h1.type + + + + + ID_TC1200_SpecObject_xhtml.h2.type + + + + + ID_TC1200_SpecObject_xhtml.h3.type + + + + + ID_TC1200_SpecObject_xhtml.h4.type + + + + + ID_TC1200_SpecObject_xhtml.h5.type + + + + + ID_TC1200_SpecObject_xhtml.h6.type + + + + + ID_TC1200_SpecObject_xhtml.ul.type + + + + + ID_TC1200_SpecObject_xhtml.ol.type + + + + + ID_TC1200_SpecObject_xhtml.dl.type + + + + + ID_TC1200_SpecObject_xhtml.pre.type + + + + + ID_TC1200_SpecObject_xhtml.blockquote.type + + + + + ID_TC1200_SpecObject_xhtml.address.type + + + + + ID_TC1200_SpecObject_xhtml.hr.type + + + + + ID_TC1200_SpecObject_xhtml.table.type + + + + + ID_TC1200_SpecObject_xhtml.li.type + + + + + ID_TC1200_SpecObject_xhtml.dt.type + + + + + ID_TC1200_SpecObject_xhtml.dd.type + + + + + ID_TC1200_SpecObject_xhtml.caption.type + + + + + ID_TC1200_SpecObject_xhtml.thead.type + + + + + ID_TC1200_SpecObject_xhtml.col.type + + + + + ID_TC1200_SpecObject_xhtml.colgroup.type + + + + + ID_TC1200_SpecObject_xhtml.tfoot.type + + + + + ID_TC1200_SpecObject_xhtml.tbody.type + + + + + ID_TC1200_SpecObject_xhtml.tr.type + + + + + ID_TC1200_SpecObject_xhtml.td.type + + + + + ID_TC1200_SpecObject_xhtml.th.type + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..c55f797 --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,126 @@ + + + + + 2021-01-22T12:56:38.320Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1300 'SpecRelation' + + + + + + + + + + + + + + ID_TC1300_DatatypeDefinitionString + + + + + + + + + + ID_TC1300_DatatypeDefinitionXHTML + + + + + + + + + + + + ID_TC1300_AttributeDefinitionString + + + + + ID_TC1300_SpecObjectType + + + + + + + ID_TC1300_AttributeDefinitionString + + + + + ID_TC1300_SpecObjectType + + + + + + + + + ID_TC1300_AttributeDefinitionString_SpecRelation + + + TC 1300 SpecRelation + + + + + ID_TC1300_SpecObject2 + + + ID_TC1300_SpecObject1 + + + ID_TC1300_SpecRelationType + + + + + + + ID_TC1300_SpecificationType + + + + + ID_TC1300_SpecObject1 + + + + + ID_TC1300_SpecObject2 + + + + + + + + + ID_TC1300_SpecRelation + + + ID_TC1300_SpecRelationGroupType + + + ID_TC1300_Specification + + + ID_TC1300_Specification + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..f008dcb --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,181 @@ + + + + + 2021-01-22T12:56:38.424Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1400 'Internal Table' + + + + + + + + + + + + + + ID_TC1400_DatatypeDefinitionString + + + + + + + + + ID_TC1400_DatatypeDefinitionString + + + + + ID_TC1400_DatatypeDefinitionString + + + + + ID_TC1400_DatatypeDefinitionInteger + + + + + + + + + + + + ID_TC1400_SpecObjectTypeRegularAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeRegular + + + + + + + ID_TC1400_SpecObjectTypeRegularAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeRegular + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecificationType + + + + + ID_TC1400_SpecObject1 + + + + + ID_TC1400_SpecObject11 + + + + + ID_TC1400_SpecObject111 + + + + + ID_TC1400_SpecObject112 + + + + + ID_TC1400_SpecObject113 + + + + + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz new file mode 100644 index 0000000..cdedae7 Binary files /dev/null and b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz differ diff --git a/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..bac2e5c --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,333 @@ + + + + + 2021-01-22T12:56:38.677Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1800 'HIS Exchange Process OEM -> SUP (initial)' + + + + + + + + + + + + + + + + + + + + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77ZVyxEeumRtWSJE-orw + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-01 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-03 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-06 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-07 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-08 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-09 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec1 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77cVyxEeumRtWSJE-orw + + + + + _RB77eFyxEeumRtWSJE-orw + + + + + _RB77f1yxEeumRtWSJE-orw + + + + + _RB77hlyxEeumRtWSJE-orw + + + + + _RB77jVyxEeumRtWSJE-orw + + + + + _RB77lFyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec2 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..f96ce11 --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,335 @@ + + + + + 2021-01-22T12:56:38.677Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1800 'HIS Exchange Process OEM -> SUP (initial)' + + + + + + + + + + + + + + + + + + + + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77ZVyxEeumRtWSJE-orw + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-01 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-03 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-04 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-07 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-08 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-09 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec1 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77cVyxEeumRtWSJE-orw + + + + + _RB77eFyxEeumRtWSJE-orw + + + + + _RCCCAFyxEeumRtWSJE-orw + + + + + _RB77hlyxEeumRtWSJE-orw + + + + + _RB77lFyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec2 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77jVyxEeumRtWSJE-orw + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif