Fix path parsing bug in custom Uri module
The path_of_encoded function was incorrectly ordering "/" separators
in the accumulator. When building the path list in reverse and then
reversing it, "/" separators ended up at the wrong positions.
For example, "/status/200" was being parsed as ["/"; "/"; "status"; "200"]
instead of the correct ["/"; "status"; "/"; "200"]. This caused URLs
like http://localhost:8088/status/200 to be serialized incorrectly as
http://localhost:8088//status200, resulting in 404 errors.
The fix changes the order of prepending to the accumulator so that
"/" appears AFTER the segment when the list is reversed.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>