Lukas Fleischer

Results 198 comments of Lukas Fleischer

It would be interesting to find out what exactly the iCloud CalDAV server does not like about our request. Does it work if you strip the XML declaration, i.e. ``?...

Unfortunately not. This [1] comment suggests that the query *should* work, though... Maybe you can experiment a bit. [1] https://stackoverflow.com/a/41996982

Progress! Thanks for debugging this. Is the XML you pasted the full response? Looks like some of the tags are not closed at the end of the document.

Hard to say with incomplete data then. Can you load the (complete) logged XML using `xml.etree` and play around with node.find() to figure out what exactly makes it fail? Maybe...

Maybe we should simply ignore all directory `href`s, or even all `href`s not having an `.ics` extension?

I pushed two patches to `pu`: One of them makes the CalDAV script skip directories, the other one makes the request more explicit (required as you pointed out above). Could...

Restricting it to `VEVENT` would mean that synchronization of todo items no longer works where it did before. If we cannot combine `VEVENT` and `VTODO` within a single query, we...

I amended the commit and added `test="anyof"` to the `comp-filter`. Could you give it another try, please?

Thanks for putting so much work into this. The UID issue does not make a lot of sense to me, though... The UID is determined by the client and as...

Interesting proposal. I envision an implementation that is slightly more generic and further blurs the line between calendar/todo items: * There are three types of items: items with a specific...