Anton Bachin
Anton Bachin
@Willenbrink, I tried example [`6-echo`](https://github.com/aantron/dream/tree/master/example/6-echo#files): ``` $ cd example/6-echo $ dune exec ./echo.exe --profile release $ echo -n foo | http POST :8080/echo ``` This seems to hang indefinitely.
> I am wondering, I just saw that some of the commits no longer have talex5 as the original author. I am fairly certain that I simply rebased the branch...
@dinosaure We will definitely consider that in however we merge this.
@Willenbrink, if you don't object, I'm going to "take over" this PR -- that is, fix any more bugs we find in it, etc., and keep it up to date...
It's probably related to https://github.com/aantron/dream/blob/599efd55fc5d0f0f3fbe776fd2ba6b17f6aeca8d/test/expect/pure/formats/target/target.ml#L19-L22 and the test's output https://github.com/aantron/dream/blob/599efd55fc5d0f0f3fbe776fd2ba6b17f6aeca8d/test/expect/pure/formats/target/target.ml#L37 and may be an upstream issue indeed. I am looking into this now. Ultimately, it should be possible to work...
I've left a detailed comment about this in the issue you opened, https://github.com/mirage/ocaml-uri/issues/167 (thanks for that). I suggest we wait to see if there is a fix for this in...
As I recall, this behavior is part of the error correction specified in the HTML5 spec. Disabling it as an option would have to be added to Markup.ml. I would...
The issue is that the default input character set for HTML is UTF-8. 0xA0 is the numeric value of a non-breaking space character, but its UTF-8 encoding is C2 A0....
Thanks for looking into this! > Maybe an enhancement to lambdasoup would be to honor the environment's encoding? Strictly speaking, it wouldn't be an enchancement. In the HTML spec, the...
There are three libraries that can largely do this, `Console.log` in Reason-native, Dum, and Inspect, so this can be done with probably `%a`. I will list them in my little...