We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am dealing with a very fickle XML parser that requires the XML namespaces to be registered in a certain order.
For example, this passes:
<Root xmlns:ns1="..." xmlns:ns2="..."> </Root>
While this fails:
<Root xmlns:ns2="..." xmlns:ns1="..."> </Root>
Would it be possible to output the namespaces in the order that they were registered?
The text was updated successfully, but these errors were encountered:
Looking at the code: https://github.com/mvz/happymapper/blob/a650cecc262c0afcd8012cd5da1665e076abd4da/lib/happymapper.rb#LL92C33-L92C33
This might be as simple as changing:
@registered_namespaces.merge!(name => href)
to
@registered_namespaces[name] = href
Sorry, something went wrong.
Yes, it makes sense to allow more control over this.
mvz
No branches or pull requests
I am dealing with a very fickle XML parser that requires the XML namespaces to be registered in a certain order.
For example, this passes:
While this fails:
Would it be possible to output the namespaces in the order that they were registered?
The text was updated successfully, but these errors were encountered: