Subject: | Unable to delete a resource that contains '[' |
When delete is called on a resource that contains '[', the get_globs
method sees the square bracket, and so assumes it is a glob (an asterisk
or question mark would have also made it think the url is a glob).
Unfortunately this globbing prevents the url that I provide from being
used (escaping it to a '%5b' doesn't help since it is unescaped before
the regex is run, and I'm not confident that double escaping is the
right choice).
Requiring both open and close square brackets to recognise it as a glob
would be an improvement, but still not perfect, perhaps some way of
specifying a url is not a glob?