You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proposal: add support for accented letters by adjusting the [a-zA-Z0-9.\-_:] part of the regex to [a-zA-Zà-žÀ-Ž0-9.\-_:] or, if supported, [\p{L}0-9.\-_:]
The text was updated successfully, but these errors were encountered:
Moving to uzi-did-x509-issuer, since the problem lies there. The DID specification doesn't allow accented characters in the DID, so they need to be percent-encoded. There was an attempt to fix this (#34), but this only fixes it for non-letters. I'll get a PR out that adds support for accented letters as well.
Issue
The DID url pattern does not support accented letters.
As an example, this did:
does not match because of the
é
character.Context
This breaks the uzi-did-x509-issuer.
Possible solution
Proposal: add support for accented letters by adjusting the
[a-zA-Z0-9.\-_:]
part of the regex to[a-zA-Zà-žÀ-Ž0-9.\-_:]
or, if supported,[\p{L}0-9.\-_:]
The text was updated successfully, but these errors were encountered: