Alex Osborne
Alex Osborne
Sure. I don't use docker much myself so happy to take your advice on that.
At compile time: openjdk-8-jdk, maven. At runtime: openjdk-8-jre, chromium/chrome. Java 11 should also be fine, whichever is available. Set env var BROWSER to the chromium/chrome executable. It may also be...
I put the custom record types mechanism in early on and then largely forgot about it so the package private constructors are more just something that hasn't been considered rather...
Having something like a `decode()` or `bodyDecoded()` convenience method on both HttpMessage and WarcPayload that decodes the content encoding seems reasonable to me. ``` record.payload().decode() -> MessageBody? response.http().decode() -> MessageBody?...
Yep. I agree.
We should also support the `Accept-Datetime` request header. Need index improvements (#12) for that.
The recorder tool is rather barebones and is more at the level of a proof of concept / example. If you're looking for a more production-ready WARC recording proxy try...
Hmm, it works for me on Openjdk 8 on Linux. Maybe there's a platform difference. Which OS and Java version are you using?
Good catch. While the examples and most implementations use base32 (which doesn't include "/") the padding character for base32 is also "=" so it's indeed a problem there too. @wumpus,...
Ah yes, good point