kazu2012 / persevere-framework

Automatically exported from code.google.com/p/persevere-framework
0 stars 0 forks source link

"%23" (encoded #) for some reason is converted to "." in the request #254

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
GET /SomeClass/1.someMethod("a%23b")

...should result in arg1 to someMethod being "a#b", right? But what's
coming in instead is "a.b"

Original issue reported on code.google.com by dean%dea...@gtempaccount.com on 29 Oct 2009 at 6:28

GoogleCodeExporter commented 8 years ago

Original comment by kris...@gmail.com on 30 Oct 2009 at 6:33

GoogleCodeExporter commented 8 years ago
Stupid google won'tl et me reopen. But in any event...

The problem isn't actually fixed -- "%23" now comes in as "param0", a second 
%23 is
param1, etc. Theoretically I could replace(/param\d/g, "#") but this would be a
pretty bad hack.

Original comment by dean%dea...@gtempaccount.com on 4 Nov 2009 at 5:55