IdentityPython / pyFF

SAML metadata aggregator
https://pyff.io/
Other
50 stars 37 forks source link

Pretty print #239

Closed guillomovitch closed 1 year ago

guillomovitch commented 1 year ago

This PR allows to optionally pretty-print XML output.

c00kiemon5ter commented 1 year ago

Note that whitespace is significant for XML. Pretty-printing will result in documents with broken signatures, unless the signature is calculated after reformatting the nodes.

guillomovitch commented 1 year ago

Indeed. Here is a better solution, using a dedicated 'indent' action, allowing to reformat before signing. I kept pretty_print option as a lighter alternative, but it now has limited interest.