reverse() creates an RFC 3986 quoted URL path, but PATH_INFO expects an
unquoted path. This was causing arguments that had spaces in their value
to show up as %20 in a view when access through the Angular URL reversal
path.
PATH_INFO from the regular URL lookup:
u'PATH_INFO': u'/report/user1-my space name/',
PATH_INFO from /angular/reverse/ lookup:
u'PATH_INFO': u'/report/user1-my%20space%20name/',
reverse() creates an RFC 3986 quoted URL path, but PATH_INFO expects an unquoted path. This was causing arguments that had spaces in their value to show up as %20 in a view when access through the Angular URL reversal path.
PATH_INFO from the regular URL lookup: u'PATH_INFO': u'/report/user1-my space name/',
PATH_INFO from /angular/reverse/ lookup: u'PATH_INFO': u'/report/user1-my%20space%20name/',