Philipp Kewisch

Results 614 comments of Philipp Kewisch

Thanks. Then it would be great to see a difference in logs between these two actions. Note I think you can do right click on an event to change attendance....

No immediate plans, but I'd take patches to add it. Most of the consumers I'm working with use this library on the Component/Property level, so there hasn't been an immediate...

This is a tricky case, as there is no real timezone information available on the js date, just an offset. In theory we could assume one of the Etc timezones,...

I'm going to close this one because I believe the behavior is expected. If someone wants to add documentation around this I'm open to PRs and additions to the wiki.

@dilyanpalauzov this seems like it is right up your alley with the escaping and parameter parsing fixes, would you be willing to take a look?

```javascript test.only('with quoted multi-value parameter', function() { let attendee = ICAL.Property.fromString( 'ATTENDEE;MEMBER=' + '"mailto:mygroup@localhost",' + '"mailto:mygroup2@localhost",' + '"mailto:mygroup3@localhost":' + 'mailto:user2@localhost' ); let expected = [ 'attendee', { member: [ 'mailto:mygroup@localhost',...

Thanks, I've updated the test case. Hoping to show that I'm more active on this repo now so it is worth putting some new effort into this :)

Removing `ICAL` in places where it is used to reference other components might work out, feel free to continue experimenting. What I'm worried about is the generated API docs. If...

> I don't really understand the part with the namespacing you mentioned. Yes a user can do `const { Component } = ICAL;` and construct a new component with `const...

Hi Nik. An event is all-day if it has a VALUE=DATE, that should be a sufficient check. You could also assert that start date < end date, because a one...