I'm working with Pylons Pyramid and came accross following issue: One of my views is expecting a string within GET parameter and I found out this string can contain '/'. On client side I have escaped '/' with '%2F' however Pyramid is still interpreting this as '/'.
So when I type http://127.0.0.1/some%2Fvalue pyramid interprets it as http://127.0.0.1/some/value
Is there a way to make pyramid to interpret such address as http://127.0.0.1/some%2Fvalue?
Thanks!