Vasiliy Faronov
Vasiliy Faronov
That sounds OK, but there’s a further tradeoff to be made. > Ideally, we'd adjust the API to only canonicalise headers we know that allow a list of values (which...
> only canonicalise when we don't have a quoted string at all Do you mean “when the given value does not contain quoted strings” or “when the header’s grammar does...
I guess that would work (in conjunction with a whitelist that excludes things like `Date` or `WWW-Authenticate`), but the API would be kinda wonky. I mean, `Cache-Control: public, max-age=86400` gets...
> I'm a little unclear on how you're imagining this being used; can you elaborate? In the (toy) app that I’m building with h11, I have a catch-all error handler...
Also, I just noticed that if an error happens relatively early in the cycle (I guess before the client passes from the `IDLE` state?), h11 doesn’t enforce the HEAD check...
As a workaround for this issue, I have a [Toggle Bars plugin](https://github.com/vfaronov/geany-togglebars) that hides the menu and status bars initially but allows toggling them with a keybinding.
For example, Polipo generates [110 - "Response is Stale"](http://tools.ietf.org/html/rfc7234#section-5.5.1) when the origin server’s response contains an `Expires` in the past (which is often done to prevent caching): ``` $ curl...
This error isn’t fixed for me neither by 1.49.0 nor by explicitly setting `GOROOT`: ``` $ golangci-lint version golangci-lint has version 1.49.0 built from cc2d97f3 on 2022-08-24T10:24:37Z $ export GOROOT=$(go...
The `-x` option tells Tilix to execute the specified command _instead of_ your shell. Once that command finishes (and `tilix -a session-add-right` finishes quickly), the terminal is destroyed. Try simply:...
Hi, thanks for reaching out. `Accept` contains a list of `media-range`s with associated `weight`s (`q` values). Any given media type can be matched to at most one `media-range`. The `weight`...