1 2007-11-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
3 * iCalTimeZonePeriod.m ([iCalTimeZonePeriod
4 -occurenceForDate:refDate]): added support for timezone periods
5 which do not contain a recurrence rule, such as the one provided
8 2007-11-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
10 * iCalDateHolder.m ([iCalDateHolder -awakeAfterUsingSaxDecoder:]):
11 make use of cStringUsingEncoding: instead of getString:length: to
12 retrieve the buffer content to work-around a bug in gnustep-base.
14 2007-11-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
16 * CardGroup.m ([CardGroup +parseFromSource:source]): make sure the
17 given source is not nil, otherwise the parser will raise an
18 exception, which we don't want.
20 2007-10-29 Wolfgang Sourdeau <wsourdeau@inverse.ca>
22 * CardElement.m ([CardElement -value:anInt]): added handling for
23 quoted-printable, base64 and 8bit encoding attributes.
25 2007-08-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
27 * iCalRecurrenceRule.m ([iCalRecurrenceRule
28 -valueForFrequency:value]): returns NSNotFound whenever the
29 frequency text has a length of 0.
30 ([iCalRecurrenceRule -byDayMask]): return an empty mask whenever
31 the "byday" value has a length of 0.
33 2007-02-12 Helge Hess <helge.hess@opengroupware.org>
35 * iCalMonthlyRecurrenceCalculator.m: fixed byday calculation for days
36 which overflow the number of days in a month. Should fix OGo bug
39 2007-07-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
41 * iCalToDo.m ([iCalToDo -setDue:newDueDate]): use setDateTime:
42 instead of setDate: because the latter sets an "all day"
45 2007-07-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
47 * iCalRecurrenceRule.m ([iCalRecurrenceRule
48 +recurrenceRuleWithICalRepresentation:_iCalRep]): the
49 representation is generally a series of values separated by a ";".
50 Therefore we need to split those values and feed them one by one.
51 ([iCalRecurrenceRule -weekDayFromICalRepresentation:_day]): return
52 -1 instead of raising an exception if the week day could not be
55 * CardElement.m ([CardElement -versitString]): remove the ending
58 2007-06-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
60 * iCalDateTime.m ([iCalDateTime
61 -_setDateTime:dateTimeforAllDayEntity:forAllDayEntity]): take the
62 forAllDayEntity parameter into account when the date entity has a
65 * iCalTimeZone.m ([iCalTimeZone -dateStringForDate:date]): new
66 method that returns dates formatted for all day events.
68 2007-06-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
70 * iCalDateTime.m ([iCalDateTime
71 -_setDateTime:dateTimeforAllDayEntity:forAllDayEntity]):
72 inverted the all day logic because all day dates where generated
73 for regular dates and the other way around...
75 * iCalEvent.m ([iCalEvent
76 -setAllDayWithStartDate:newStartDateduration:days]): new method
77 that sets the start and end dates in an all day fashion.
78 ([iCalEvent -setEndDate:newEndDate]): no longer use the methods
79 provided by the removed module CardGroup+iCal.
80 ([-isAllDay]): reimplemented method by testing if the start day
81 component is an all day date.
83 * iCalEntityObject.m ([iCalEntityObject -setCreated:newCreated])
84 ([iCalEntityObject -created], [-setLastModified:_value])
85 ([iCalEntityObject -lastModified])
86 ([iCalEntityObject -setTimeStampAsDate:newTimeStamp])
87 ([iCalEntityObject -timeStampAsDate], [-setStartDate:_value])
88 ([iCalEntityObject -startDate]): no longer use the methods
89 provided by the removed module CardGroup+iCal.
91 * iCalDateTime.m ([iCalDateTime -setDate:dateTime]): take the date
92 passed as parameter as an all day date.
93 ([iCalDateTime -isAllDay]): new method determining whether the
94 current value is an all day value.
96 * NSString+NGCards.m ([NSString -isAllDayDate]): new method that
97 determines whether the date represented in "self" is an all day
98 date (date only) or not (date + time).
100 * CardElement.h: moved IS_EQUAL macro from removed module
103 * CardGroup+iCal.[hm]: removed category module.
105 2007-04-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
107 * NGVCard.m ([NGVCard -n]): simplified method by returning the
108 values of the element returned by uniqueChildWithTag:.
110 2007-03-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
112 * iCalEntityObject.m ([iCalEntityObject -symbolicAccessClass]):
113 new method that parses the "CLASS" element of the card and returns
116 * NSString+NGCards.m ([NSString -foldedForVersitCards]):
117 simplified method by initializing and returning folderString
118 unconditionnally. If length < 76, the original string is appended
121 * CardGroup.m ([CardGroup +groupWithTag:aTag]): simply invoke
122 [self elementWithTag:].
123 ([CardGroup +groupWithTag:aTagchildren:someChildren]): same as
126 2007-03-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
128 * iCalEntityObject.h (enum): added an enum with iCalAccessPublic,
129 iCalAccessPrivate and iCalAccessConfidential values.
131 2007-02-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
133 * CardGroup.m ([CardGroup -firstChildWithTag:aTag]): new method.
135 2007-02-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
137 * CardGroup.m ([CardGroup +cardParser]): find the correct parser
138 by requesting a parser by name instead of by mime-type. This way,
139 any parser which would declare the same types would not
142 2007-02-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
144 * CardElement.m ([CardElement -namedValue:aValueName]): use
145 NSString's rangeOfString instead of indexOfString for
146 compatibility with GNUstep.
148 2007-02-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
150 * NGVCard.m ([NGVCard -classForTag:classTag]): declare an entry
153 2006-08-03 Helge Hess <helge.hess@opengroupware.org>
155 * NGVCardSaxHandler.m: fixed a bug with returning parsing results.
156 Properly make a copy of the vCard array so that -clear doesn't
157 destroy references. Thanks go to Wolfgang Sourdeau for documenting
160 2006-07-04 Helge Hess <helge.hess@opengroupware.org>
162 * use %p for pointer formats, fixed gcc 4.1 warnings (v4.5.75)
164 2006-05-16 Marcus Mueller <znek@mulle-kybernetik.com>
166 * iCalDataSource.h, common.h: changed EOControl related includes into
167 imports to enable compilation against MulleEOF (v4.5.74)
169 2006-04-07 Marcus Mueller <znek@mulle-kybernetik.com>
171 * iCalEntityObject.h: added missing forward declaration for
172 gstep-base compile (v4.5.73)
174 2006-04-06 Marcus Mueller <znek@mulle-kybernetik.com>
178 * iCalEntityObject.[hm]: added "url" property - unfortunately
179 this was missing before. Increased class version to "1".
181 * iCalRepeatableEntityObject.m, iCalEvent.m, iCalToDo.m: adjusted
182 super class version check.
184 2006-01-16 Helge Hess <helge.hess@opengroupware.org>
186 * iCalRecurrenceRule.m: properly include NSString+Ext.h to avoid a
187 warning during Cocoa compilation (v4.5.71)
189 2005-11-17 Helge Hess <helge.hess@opengroupware.org>
191 * include string.h where required (v4.5.70)
193 2005-10-05 Helge Hess <helge.hess@opengroupware.org>
195 * iCalMonthlyRecurrenceCalculator.m: implemented calculation of
196 negative byday occurrences (eg -1TH) (v4.5.69)
198 2005-09-22 Helge Hess <helge.hess@skyrix.com>
200 * iCalRecurrenceRule.m: added direct parser support for 'interval',
201 allow 'until' values w/o Z marker for date-only values (v4.5.68)
203 2005-09-22 Helge Hess <helge.hess@opengroupware.org>
207 * iCalMonthlyRecurrenceCalculator.m: finished 'byday' calculation
209 * iCalRecurrenceRule.m: added support for 'bymonthday', fixed handling
212 2005-09-21 Helge Hess <helge.hess@skyrix.com>
216 * iCalRecurrenceRule.m: temporarily expose byDayOccurence1 until the
219 * iCalMonthlyRecurrenceCalculator.m: prepared for byday/bymonthday
224 * iCalMonthlyRecurrenceCalculator.m: fixed calculation of 'count' field
226 * iCalRecurrenceCalculator.m: minor code cleanups
228 * iCalRecurrenceRule.m: improved rrule parser
230 2005-09-20 Helge Hess <helge.hess@opengroupware.org>
232 * iCalMonthlyRecurrenceCalculator.m: stop calculation if a byday part
233 was detected in the rule (v4.5.64)
235 * iCalRecurrenceCalculator.m: moved cluster subclasses to own source
238 * iCalRecurrenceRule.m: added some parsing/gen support for BYDAY
241 2005-09-19 Helge Hess <helge.hess@opengroupware.org>
243 * iCalRecurrenceRule.m: minor code improvements, more tolerant on
244 invalid iCal rrule input (v4.5.61)
246 2005-08-16 Helge Hess <helge.hess@opengroupware.org>
248 * GNUmakefile, GNUmakefile.preamble: added OSX framework compilation
251 2005-08-06 Helge Hess <helge.hess@opengroupware.org>
253 * iCalCalendar.m, NGVCardName.m: fixed gcc 4.0 warnings (v4.5.59)
255 2005-08-05 Helge Hess <helge.hess@opengroupware.org>
257 * NGVCardSaxHandler.h: fixed a gcc 4.0 warning (v4.5.58)
259 2005-07-18 Helge Hess <helge.hess@opengroupware.org>
261 * iCalPerson.m: added -partStatWithDefault method to retrieve the
262 partstat and return NEEDS-ACTION in case none is set (v4.5.57)
264 2005-07-15 Marcus Mueller <znek@mulle-kybernetik.com>
266 * iCalObject.[hm], iCalEntityObject.m, iCalToDo.m, iCalAlarm.m,
267 iCalPerson.m, iCalCalendar.m, iCalEvent.m, iCalTrigger.m,
268 iCalObject.m, iCalFreeBusy.m, iCalRepeatableEntityObject.m:
269 fixed NSCopying (v4.5.56)
271 2005-07-15 Helge Hess <helge.hess@opengroupware.org>
273 * added fragile base class version checks (v4.5.55)
275 2005-07-15 Marcus Mueller <znek@mulle-kybernetik.com>
277 * iCalObject.[hm], iCalEntityObject.m, iCalToDo.m, iCalAlarm.m,
278 iCalPerson.m, iCalCalendar.m, iCalEvent.m, iCalTrigger.m,
279 iCalObject.m, iCalFreeBusy.m, iCalRepeatableEntityObject.m:
280 added NSCopying (v4.5.54)
282 2005-07-15 Helge Hess <helge.hess@opengroupware.org>
286 * iCalCalendar.m: added +parseCalendarFromSource: convenience method
288 * NGVCard.m: properly reset sax driver after parsing
290 2005-07-15 Marcus Mueller <znek@mulle-kybernetik.com>
292 * iCalEntityObject.[hm]: added -increaseSequence (v4.5.52)
294 * iCalPerson.m: fixed -hasSameEmailAddress: to lowercase email
295 addresses before attempting comparison (v4.5.51)
297 2005-07-15 Helge Hess <helge.hess@opengroupware.org>
301 * NGiCal.xmap: fixed mapping of 'method' property (is an attribute of
304 * iCalCalendar.m: use ASSIGNCOPY in accessors, added 'method' to
307 2005-07-14 Marcus Mueller <znek@mulle-kybernetik.com>
311 * iCalCalendar.[hm]: added 'method'
313 * iCalEntityObject.[hm]: added 'userComment', changed all email
314 related comparisons to lowercase all strings before comparison
316 * iCalEvent.h: pretty printed iVars
318 * NGiCal.xmap: added mapping for 'comment' -> 'userComment' and
321 2005-07-13 Helge Hess <helge.hess@opengroupware.org>
325 * NGVCard.m: added some convenience methods to access the preferred
328 * NGVCardOrg.m: added a convenience method to access the first orgunit
330 2005-07-05 Marcus Mueller <znek@mulle-kybernetik.com>
332 * NSCalendarDate+ICal.m: fixed 'gmtcalfmt' which removed seconds from
333 format for no obvious reason (v4.5.47)
335 2005-05-31 Helge Hess <helge.hess@skyrix.com>
337 * NGVCardSaxHandler.m: ensure that types are always uppercase, improved
338 check for DUPs (v4.5.46)
340 2005-05-16 Marcus Mueller <znek@mulle-kybernetik.com>
342 * NGiCal.xcode: reorganized ordering of headers/classes
344 2005-05-15 Marcus Mueller <znek@mulle-kybernetik.com>
346 * NGiCal.xcode: added vCard related stuff
348 2005-05-10 Helge Hess <helge.hess@opengroupware.org>
350 * NGVCard.m: added support for profile, source, name (v4.5.45)
352 2005-05-09 Helge Hess <helge.hess@opengroupware.org>
354 * first version of working vCard SAX handler (v4.5.54)
356 2005-05-08 Helge Hess <helge.hess@opengroupware.org>
358 * more work on vCard parsing (v4.5.53)
360 * work on vCard objects (incomplete) (v4.5.52)
362 2005-04-25 Helge Hess <helge.hess@opengroupware.org>
364 * iCalDateHolder.m, iCalDataSource.m: fixed gcc 4.0 warnings (v4.5.51)
366 2005-03-23 Marcus Mueller <znek@mulle-kybernetik.com>
370 * iCalRenderer.h: added missing paranthesis for iVar declarations
372 * iCalTrigger.m, iCalEntityObject.m, iCalToDo.m,
373 iCalRecurrenceCalculator.m, iCalDateHolder.m, iCalDataSource.m,
374 iCalPerson.m, iCalCalendar.m: numerous dealloc bugs/leaks fixed
376 2005-03-02 Marcus Mueller <znek@mulle-kybernetik.com>
378 * iCalRecurrenceCalculator.m: bugfix for monthly and yearly recurrences
381 * iCalRecurrenceCalculator.m: optimized exception date handling in
382 complex calculation method quite a bit. Fixed bugs in all calculation
383 methods by introducing checks on the desired range. (v4.5.48)
385 2005-02-28 Marcus Mueller <znek@mulle-kybernetik.com>
389 * iCalRepeatableEntityObject.m: shifted code to
390 iCalRecurrenceCalculator
392 * iCalRecurrenceCalculator.[hm]: new class method to calculate
393 complex recurrences. In SOGo this information is stored in quick
394 fields to reduce the complexity of lookups, hence we need to offer
395 a proper API to calculate date ranges from this information.
396 Fixed all calculations to explicitly set timeZone for all newly
397 created startDates - it seems the timeZone information is not
398 properly retained by the hour:minute:second: method from NGExtensions
399 which lead to improper DST related shifts.
401 * iCalDateHolder.h: exposed the API
403 * NSCalendarDate+ICal.[hm]: new convenience constructor for calendar
404 dates from iCal representations (uses iCalDateHolder internally)
406 * iCalRecurrenceRule.m: changed setUntil: to utilize new public
407 NSCalendarDate+ICal category
409 * NGiCal.h: added NSCalendarDate+ICal.h to the public headers
411 * GNUmakefile: NSCalendarDate+ICal.h is public now
413 2005-02-20 Helge Hess <helge.hess@opengroupware.org>
415 * NGiCal.xmap: fixed a missing semicolon (did not load on MacOSX)
418 2005-02-17 Helge Hess <helge.hess@skyrix.com>
420 * GNUmakefile.preamble: fixed linking locations for dependencies
423 2005-02-17 Marcus Mueller <znek@mulle-kybernetik.com>
427 * iCalEntityObject.[hm]: added convenience API
429 * iCalRepeatableEntityObject.[hm]: added convenience API
431 * iCalRecurrenceRule.m: bugfixes in -byDayList and
432 -iCalRepresentationForWeekDay:
434 * iCalRecurrenceCalculator.m: implemented 'BYDAY' calculations for
435 weekly frequency. Note that 'COUNT' is still broken for this case.
437 * iCalRenderer.m: updated rendering, now can render recurrence rules
438 and accompanied stuff properly.
440 2005-02-15 Marcus Mueller <znek@mulle-kybernetik.com>
444 * iCalRecurrenceRule.[hm]: exposed some more of the API
446 * iCalRecurrenceCalculator.m: some bugfixes. Split the code and gave
447 iCalWeeklyRecurrenceCalculator its own calculation - there are a
448 number of foreseeable differences to daily calculation that make
449 this necessary in the near future anyways.
453 * iCalRepeatableEntityObject.[hm]: added ability to properly calculate
454 the recurrence ranges within a specific calendar date range, taking
455 all possible exceptions into account.
457 * iCalEvent.[hm]: convenience wrapper for the new method found in
458 iCalRepeatableEntityObject.
460 2005-02-14 Helge Hess <helge.hess@opengroupware.org>
464 * GNUmakefile.preamble: added missing dependency on libNGExtensions
465 (which also adds the dependency on libDOM)
467 * iCalRecurrenceCalculator.h: fixed missing forward declaration in
470 2005-02-12 Marcus Mueller <znek@mulle-kybernetik.com>
474 * iCalRecurrenceCalculator.[hm]: implemented all required (and simple)
475 calculations. Added some convenience API to query some of the more
476 obvious ranges suitable as limits for fetching/comparison.
478 * iCalRepeatableEntityObject.[hm]: new method for calculating the
479 last possible recurrence start date. This can be used for fetches
482 * iCalEvent.[hm]: more convenient wrapper for the new method found in
483 iCalRepeatableEntityObject.
485 * NSCalendarDate+ICal.[hm]: convenience methods for calculating
486 "distances" between dates.
490 2005-02-11 Marcus Mueller <znek@mulle-kybernetik.com>
496 * iCalRepeatableEntityObject.[hm]: new base class for all other
497 repeatable entity objects. Offers a convenience API for generating
498 recurrence ranges and tests, taking all exceptions into account.
500 * iCalRecurrenceRule.[hm]: an iCal recurrence rule, modeled as closely
501 as possible to RFC2445. Please note that this is work in progress
502 and far from being complete, yet.
504 * iCalRecurrenceCalculator.[hm]: a controller implementing RFC2445
505 to properly generate recurrence ranges and accompanied functionality.
507 * iCalEvent.[hm], iCalToDo.[hm]: now subclasses from
508 iCalRepeatableEntityObject, thus removed code dealing with
511 * NGiCal.h: added new headers
513 * NGiCal.xmap: changed recurrenceRule mappings due to model change
515 * tests/*: contains unit tests for stuff dealing with recurrences. See
516 accompanied README for details
518 2004-12-17 Marcus Mueller <znek@mulle-kybernetik.com>
520 * iCalPerson.[hm]: formalized participationStatus according to RFC2445.
521 Provided convenience API to set status without concrete knowledge
522 of string values involved. (v4.5.38)
524 2004-12-16 Marcus Mueller <znek@mulle-kybernetik.com>
528 * iCalEvent.[hm]: Added transparency 'TRANSP'. Also multiple
529 convenience methods provided.
531 * NGiCal.xmap: added proper mapping for 'transp'.
533 2004-12-14 Marcus Mueller <znek@mulle-kybernetik.com>
535 * NGiCal.xcode: minor changes and updated
537 2004-12-13 Marcus Mueller <znek@mulle-kybernetik.com>
539 * iCalPerson.[hm]: added -cnWithoutQuotes and -rfc822Email convenience
540 methods to simplify client code dealing with these properties
543 2004-11-07 Marcus Mueller <znek@mulle-kybernetik.com>
545 * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build
547 2004-11-06 Helge Hess <helge.hess@opengroupware.org>
549 * iCalRenderer.m: use SOPE version defines for iCalendar product id
552 2004-11-04 Helge Hess <helge.hess@skyrix.com>
554 * use Version file for install directory location of sax mapping
556 2004-10-31 Marcus Mueller <znek@mulle-kybernetik.com>
558 * iCalAlarm.[hm], iCalEvent.[hm], iCalToDo.[hm],
559 NGiCal.xmap: added recurrenceRule (v4.3.34)
561 2004-10-20 Marcus Mueller <znek@mulle-kybernetik.com>
563 * NGiCal.xcode: added iCalRenderer.[hm], bumped framework version
565 2004-10-20 Helge Hess <helge.hess@opengroupware.org>
567 * iCalRenderer.m: fixed some issue with Cocoa Foundation (v4.3.33)
571 * iCalEvent.m: added -vEvent method to produce an iCalendar
572 representation of an event
574 * added iCalRenderer class based on the SOGo render by ZNeK
576 2004-10-14 Marcus Mueller <znek@mulle-kybernetik.com>
578 * NGiCal.xmap: added "categories" mapping (v4.3.31)
580 2004-10-05 Marcus Mueller <znek@mulle-kybernetik.com>
582 * iCalEntityObject.[hm]: added categories property (v4.3.30)
584 2004-09-22 Marcus Mueller <znek@mulle-kybernetik.com>
586 * NGiCal.xcode: fixed several build parameters
588 2004-09-01 Marcus Mueller <znek@mulle-kybernetik.com>
592 * iCalEventChanges.[hm]: new class for tracking changes between
595 * iCalEvent.[hm]: new API to generate iCalEventChanges objects.
597 * common.h: inline function and macro for "safe" comparison of
600 2004-09-01 Helge Hess <helge.hess@opengroupware.org>
602 * GNUmakefile.postamble: copy sax-model to FHS_INSTALL_ROOT +
603 /share/sope-4.3/saxmappings/ when compiling for FHS (v4.3.28)
605 2004-08-29 Helge Hess <helge.hess@opengroupware.org>
607 * added hack to install the project in FHS locations - the library,
608 its headers, the tools and the resources will be installed in
609 FHS_INSTALL_ROOT if specified (eg make FHS_INSTALL_ROOT=/usr/local)
612 2004-08-26 Marcus Mueller <znek@mulle-kybernetik.com>
614 * NGiCal.xcode: new Xcode project
616 2004-08-20 Helge Hess <helge.hess@opengroupware.org>
618 * fixed for SOPE 3.3 directory layout (v4.3.26)
622 * moved to SOPE 4.3 (v4.3.25)
624 2004-08-14 Helge Hess <helge.hess@opengroupware.org>
626 * iCalEntityObject.m: changed "sequence" attribute from NSString to
627 NSNumber (this might break some code, though some care was taken to
628 accept NSString parameters) (v4.2.24)
630 2004-07-14 Helge Hess <helge.hess@opengroupware.org>
632 * iCalEvent.h: moved 'status' field to iCalEntityObject, because it is
633 also available in todo objects (v4.2.23)
635 2004-06-30 Marcus Mueller <znek@mulle-kybernetik.com>
637 * iCalEntityObject.m: added -removeAllAttendees and -removeAllAlarms.
638 These are necessary in case you want to remake the contents of these
639 collections, but keep all other attributes otherwise. (v4.2.22)
641 2004-06-09 Helge Hess <helge.hess@opengroupware.org>
645 * GNUmakefile.preamble: added prebinding
647 * GNUmakefile: create GNUmakefile.preamble, GNUmakefile.postamble
649 2004-05-05 Marcus Mueller <znek@mulle-kybernetik.com>
651 * GNUmakefile: added support for building with
652 GNUSTEP_BUILD_DIR environment variable set for recent
653 gnustep-make package. (v4.2.20)
655 2004-01-23 Helge Hess <helge.hess@opengroupware.org>
657 * iCalDataSource.m: added some sanity checks, improved to work better
658 with Mozilla generated iCal files (v4.2.19)
660 2003-12-22 Helge Hess <helge.hess@skyrix.com>
662 * iCalDateHolder.m: small fix not to print a warning for "YYYYMMDD"
663 style dates (which are supported) (v4.2.18)
665 2003-12-21 Helge Hess <helge.hess@opengroupware.org>
669 * iCalEvent.m: added parsing of duration values and calculation of
670 end-dates based on that (eg required for Panther iCal.app)
672 * iCalEvent.m: added support for 'status' and 'duration' fields
674 Thu Nov 20 16:31:15 2003 Martin Hoerning <martin@opengroupware.org>
676 * iCalDateHolder.m: added timeless date format: YYYYMMDD
677 (solves ogo bug 424) (v4.2.16)
679 Wed Oct 29 22:04:32 2003 Martin Hoerning <martin@opengroupware.org>
681 * iCalDateHolder.m, iCalObject.[m|h]: added iCalDefaultTimeZone to
682 create date from iCalDates without timeZone. (solves OGoo bug 257)
685 2003-10-12 Helge Hess <helge@opengroupware.org>
687 * GNUmakefile (libNGiCal_LIBRARIES_DEPEND_UPON): link against
688 libSaxObjC on MacOSX (v4.2.14)
690 Fri Jul 18 17:04:55 2003 Martin Hoerning <mh@skyrix.com>
692 * iCalToDo.h, iCalPerson.h, iCalEvent.h, iCalEntityObject.h: added
693 accessor-methods to interface (v4.2.13)
695 2003-07-18 Helge Hess <helge.hess@skyrix.com>
697 * iCalDateHolder.m: replaces and indexOfString with rangeOfString,
698 thanks to Filip Van Raemdonck for pointing that out (v4.2.12)
700 2003-03-21 Helge Hess <helge.hess@skyrix.com>
702 * added some method prototypes
704 2003-03-13 Helge Hess <helge.hess@skyrix.com>
706 * moved iCalEntityObject to a separate file (v4.2.11)
708 Mon Mar 10 18:41:10 2003 Bjoern Stierand <bjoern@skyrix.com>
710 * NGiCal.xmap: added missing attendee attributes (as dictated by
713 2003-03-10 Helge Hess <helge.hess@skyrix.com>
715 * iCalPerson.h: added some method prototypes
717 2003-02-24 Helge Hess <helge.hess@skyrix.com>
719 * iCalObject.h: added some accessors (v4.2.10)
721 2003-02-12 Helge Hess <helge.hess@skyrix.com>
723 * moved to skyrix-core (v4.2.9)
725 2003-01-13 Helge Hess <helge.hess@skyrix.com>
727 * added some support for timezones to be able to parse Evolution
728 apt creation requests (v4.2.7)
730 2002-10-14 Helge Hess <helge.hess@skyrix.com>
732 * added iCalDateHolder for decoding xCal date values with timezone
733 attributes to a NSCalendarDate
735 * iCalObject.m: ignore X- keys
737 * removed all the old stuff (v4.2.4)
739 * ICalVEvent.m: renamed -class to -eventClass since -class conflicts
740 with the NSObject method
742 * started XML based iCal (v4.2.3)
744 2002-10-10 Helge Hess <helge.hess@skyrix.com>
746 * ICalParser.m: small cleanups (v4.2.2)
748 2002-10-04 Helge Hess <helge.hess@skyrix.com>
750 * created ChangeLog, created NGiCal library into SkyCore