I am currently programming a scheduling application which loosely based on iCalendar standard. Does anyone knows in which property can I store the event creator's information? By browsing through the iCalendar RFC 2445, I find this property: Organizer. can I store the event creator's information in the property even if he/she is the only person involved in the event? or there is already a field to store the event creator's information???!
相关问题
- Events from iCal Feed URL Display as “Busy” in Goo
- Android Google Calendar “Unable to launch event”
- iCal not showing meeting time slot for organizer
- Applescript to create set iCal events
- unable to send meeting request from lotus notes to
相关文章
- PHP calendar recurrence logic
- RRULE parsing in Postgresql
- URL Scheme for opening the iCal app at a date or e
- Is there a javascript calendar that takes an ical
- How can I add an ICS meeting automatically to the
- Send email to Outlook with ics meeting appointment
- Outlook fails to recognize an ics message
- How do I get Outlook to process an event update?
Some notes from the rfc2445
Conformance: This property MUST be specified in an iCalendar object that specifies a group scheduled calendar entity. This property MUST be specified in an iCalendar object that specifies the publication of a calendar user's busy time. This property MUST NOT be specified in an iCalendar object that specifies only a time zone definition or that defines calendar entities that are not group scheduled entities, but are entities only on a single user's calendar.
I am researching a similar application, concerned with event tracking and handling, and came to the same conclusions as Jeffrey04.
Specifically, to represent warning or alarm, it would seem appropriate to use the VJOURNAL component, as the event is in the past, and maybe continues through the present, but is certainly not a meeting. VJOURNAL also does not occupy space on the calendar. IMHO the best field for representing the originator is X-WR-RELCALID, which is not RFC5545, but seems to fit the idea of a creator UID. I will link this to a vCard UID.
I cannot understand why the idea of an event creator was unimportant for the writers of iCal specs.
ORGANIZER;CN="Sally Example":mailto:sally@example.com
Looks like the answer