I saw something weird using ParticipationStatus.
In the RFC (http://tools.ietf.org/html/rfc2445#section-4.2.12), values are describe like this :
partstatparam /= "PARTSTAT" "="
("NEEDS-ACTION" ; To-do needs action
/ "ACCEPTED" ; To-do accepted
/ "DECLINED" ; To-do declined
/ "TENTATIVE" ; To-do tentatively
; accepted
/ "DELEGATED" ; To-do delegated
/ "COMPLETED" ; To-do completed.
; COMPLETED property has
;date/time completed.
/ "IN-PROCESS" ; To-do in process of
; being completed
/ x-name ; Experimental status
/ iana-token) ; Other IANA registered
; status
And in the biweekly enum, there is no IN-PROCESS but IN_PROGRESS:
public static final ParticipationStatus IN_PROGRESS = new ParticipationStatus("IN_PROGRESS"); //VTODO
Is it normal ? ^^
Thanks,
Perrine
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I saw something weird using ParticipationStatus.
In the RFC (http://tools.ietf.org/html/rfc2445#section-4.2.12), values are describe like this :
partstatparam /= "PARTSTAT" "="
("NEEDS-ACTION" ; To-do needs action
/ "ACCEPTED" ; To-do accepted
/ "DECLINED" ; To-do declined
/ "TENTATIVE" ; To-do tentatively
; accepted
/ "DELEGATED" ; To-do delegated
/ "COMPLETED" ; To-do completed.
; COMPLETED property has
;date/time completed.
/ "IN-PROCESS" ; To-do in process of
; being completed
/ x-name ; Experimental status
/ iana-token) ; Other IANA registered
; status
And in the biweekly enum, there is no IN-PROCESS but IN_PROGRESS:
public static final ParticipationStatus IN_PROGRESS = new ParticipationStatus("IN_PROGRESS"); //VTODO
Is it normal ? ^^
Thanks,
Perrine
Yeah, I noticed this a couple weeks ago while adding support for vCalendar. It will be corrected in the next release. Thanks for noticing, Perrine! :)