diff options
author | Rob Austein <sra@hactrn.net> | 2016-03-10 22:27:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-03-10 22:27:30 +0000 |
commit | fad5834d4b52daf408bb5f0d41cf13c96e960450 (patch) | |
tree | 05e09fa9a2bd215444e5af7fdc487caa8968f06c | |
parent | 3faf15f327bc6745a7fd084a0cfaa5d4892fe862 (diff) |
Cleanup.
svn path=/branches/tk705/; revision=6308
-rw-r--r-- | potpourri/oob-translate.xsl | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/potpourri/oob-translate.xsl b/potpourri/oob-translate.xsl index 5cf64397..da71e348 100644 --- a/potpourri/oob-translate.xsl +++ b/potpourri/oob-translate.xsl @@ -4,7 +4,7 @@ - track out-of-band-setup protocol XML. Well, partially. Much of - the old protocol is either irrelevant or can't be translated due - to embedded signatures, but the subset that other implementations - - implement is small enough that we can fake something workable. + - support is small enough that we can fake something workable. --> <xsl:transform xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" @@ -23,27 +23,29 @@ <xsl:param name = "myrpki-version" select = "2"/> <xsl:param name = "oob-version" select = "1"/> - <!-- Translate an old-style identity to a new-style child_request --> + <!-- Old-style identity to new-style child_request --> <xsl:template match = "/myrpki:identity"> - <oob:child_request version = "{$oob-version}" child_handle = "{@handle}"> + <oob:child_request version = "{$oob-version}" + child_handle = "{@handle}"> <oob:child_bpki_ta> <xsl:value-of select = "myrpki:bpki_ta"/> </oob:child_bpki_ta> </oob:child_request> </xsl:template> - <!-- Translate a new-style child_request to an old style identity --> + <!-- New-style child_request to old style identity --> <xsl:template match = "/oob:child_request"> - <myrpki:identity version = "{$myrpki-version}" handle = "{@child_handle}"> + <myrpki:identity version = "{$myrpki-version}" + handle = "{@child_handle}"> <myrpki:bpki_ta> <xsl:value-of select = "oob:child_bpki_ta"/> </myrpki:bpki_ta> </myrpki:identity> </xsl:template> - <!-- Translate an old-style parent response to a new-style parent_response --> + <!-- Old-style parent response to new-style parent_response --> <!-- Referrals are not translatable due to embedded signatures --> <xsl:template match = "/myrpki:parent"> @@ -60,7 +62,7 @@ </oob:parent_response> </xsl:template> - <!-- Translate a new-style parent_response to an old-style parent response --> + <!-- New-style parent_response to old-style parent response --> <!-- Referrals are not translatable due to embedded signatures --> <xsl:template match = "/oob:parent_response"> |