tags:

views:

712

answers:

2

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???!

+2  A: 

ORGANIZER;CN="Sally Example":mailto:[email protected]

Looks like the answer

Dave Cheney
i know, but is it appropriate?
Jeffrey04
i mean... if I am the only one involved in the event, is it appropriate to use this property???
Jeffrey04
+1  A: 

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.

Jeffrey04