Humm
Humm
> I see. Also, what is the difference between \fR and \fP while we're at it? Here it does not really matter much, but `\fP` is the *previous* font, whereas...
And I always name my variables `new`, `class` and similar, just to annoy C++ programmers thinking one was supposed to compile C code with C++ compilers. 🤔
fixes FPS problems in streams
@terminalforlife I suggest you take the code my PR adds (from the shebang to the `# mark`), put it in a file and run it.
The `?=` syntax is non-POSIX, why not just `PREFIX=/usr/local`? That way you still could change the prefix on the command line via `make PREFIX=/usr`. Also, the `install` and `uninstall` targets...
I believe this is because the logic in put.c to determine whether to create or to update a resource is wrong: https://github.com/kristapsdz/kcaldav/blob/6111ef251a6633a399265d3b6ee03391da0adccf/put.c#L78-L118 If the client says “only do the PUT...
I think unless we add support for “only PUT if the resource doesn’t exist” (`If-None-Match: *`), the insertion should always update on conflict. That is, something like ```diff diff --git...