]> err.no Git - scalable-opengroupware.org/blob - SOPE/NGCards/ChangeLog
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1205 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SOPE / NGCards / ChangeLog
1 2007-10-29  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
2
3         * CardElement.m ([CardElement -value:anInt]): added handling for
4         quoted-printable, base64 and 8bit encoding attributes.
5
6 2007-08-07  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
7
8         * iCalRecurrenceRule.m ([iCalRecurrenceRule
9         -valueForFrequency:value]): returns NSNotFound whenever the
10         frequency text has a length of 0.
11         ([iCalRecurrenceRule -byDayMask]): return an empty mask whenever
12         the "byday" value has a length of 0.
13
14 2007-02-12  Helge Hess  <helge.hess@opengroupware.org>
15  
16         * iCalMonthlyRecurrenceCalculator.m: fixed byday calculation for days
17         which overflow the number of days in a month. Should fix OGo bug
18         #1829. (v4.7.79)
19         
20 2007-07-10  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
21
22         * iCalToDo.m ([iCalToDo -setDue:newDueDate]): use setDateTime:
23         instead of setDate: because the latter sets an "all day"
24         timestamp.
25
26 2007-07-03  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
27
28         * iCalRecurrenceRule.m ([iCalRecurrenceRule
29         +recurrenceRuleWithICalRepresentation:_iCalRep]): the
30         representation is generally a series of values separated by a ";".
31         Therefore we need to split those values and feed them one by one.
32         ([iCalRecurrenceRule -weekDayFromICalRepresentation:_day]): return
33         -1 instead of raising an exception if the week day could not be
34         recognized.
35
36         * CardElement.m ([CardElement -versitString]): remove the ending
37         "\r\n".
38
39 2007-06-12  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
40
41         * iCalDateTime.m ([iCalDateTime
42         -_setDateTime:dateTimeforAllDayEntity:forAllDayEntity]): take the
43         forAllDayEntity parameter into account when the date entity has a
44         timezone.
45
46         * iCalTimeZone.m ([iCalTimeZone -dateStringForDate:date]): new
47         method that returns dates formatted for all day events.
48
49 2007-06-07  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
50
51         * iCalDateTime.m ([iCalDateTime
52         -_setDateTime:dateTimeforAllDayEntity:forAllDayEntity]):
53         inverted the all day logic because all day dates where generated
54         for regular dates and the other way around...
55
56         * iCalEvent.m ([iCalEvent
57         -setAllDayWithStartDate:newStartDateduration:days]): new method
58         that sets the start and end dates in an all day fashion.
59         ([iCalEvent -setEndDate:newEndDate]): no longer use the methods
60         provided by the removed module CardGroup+iCal.
61         ([-isAllDay]): reimplemented method by testing if the start day
62         component is an all day date.
63
64         * iCalEntityObject.m ([iCalEntityObject -setCreated:newCreated]) 
65         ([iCalEntityObject -created], [-setLastModified:_value]) 
66         ([iCalEntityObject -lastModified]) 
67         ([iCalEntityObject -setTimeStampAsDate:newTimeStamp]) 
68         ([iCalEntityObject -timeStampAsDate], [-setStartDate:_value]) 
69         ([iCalEntityObject -startDate]): no longer use the methods
70         provided by the removed module CardGroup+iCal.
71
72         * iCalDateTime.m ([iCalDateTime -setDate:dateTime]): take the date
73         passed as parameter as an all day date.
74         ([iCalDateTime -isAllDay]): new method determining whether the
75         current value is an all day value.
76
77         * NSString+NGCards.m ([NSString -isAllDayDate]): new method that
78         determines whether the date represented in "self" is an all day
79         date (date only) or not (date + time).
80
81         * CardElement.h: moved IS_EQUAL macro from removed module
82         "common.h".
83
84         * CardGroup+iCal.[hm]: removed category module.
85
86 2007-04-27  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
87
88         * NGVCard.m ([NGVCard -n]): simplified method by returning the
89         values of the element returned by uniqueChildWithTag:.
90
91 2007-03-07  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
92
93         * iCalEntityObject.m ([iCalEntityObject -symbolicAccessClass]):
94         new method that parses the "CLASS" element of the card and returns
95         an enum value.
96
97         * NSString+NGCards.m ([NSString -foldedForVersitCards]):
98         simplified method by initializing and returning folderString
99         unconditionnally. If length < 76, the original string is appended
100         to it.
101
102         * CardGroup.m ([CardGroup +groupWithTag:aTag]): simply invoke
103         [self elementWithTag:].
104         ([CardGroup +groupWithTag:aTagchildren:someChildren]): same as
105         above.
106
107 2007-03-05  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
108
109         * iCalEntityObject.h (enum): added an enum with iCalAccessPublic,
110         iCalAccessPrivate and iCalAccessConfidential values.
111
112 2007-02-15  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
113
114         * CardGroup.m ([CardGroup -firstChildWithTag:aTag]): new method.
115
116 2007-02-09  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
117
118         * CardGroup.m ([CardGroup +cardParser]): find the correct parser
119         by requesting a parser by name instead of by mime-type. This way,
120         any parser which would declare the same types would not
121         enter in conflict.
122
123 2007-02-08  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
124
125         * CardElement.m ([CardElement -namedValue:aValueName]): use
126         NSString's rangeOfString instead of indexOfString for
127         compatibility with GNUstep.
128
129 2007-02-02  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
130
131         * NGVCard.m ([NGVCard -classForTag:classTag]): declare an entry
132         for "FBURL".
133
134 2006-08-03  Helge Hess  <helge.hess@opengroupware.org>
135
136         * NGVCardSaxHandler.m: fixed a bug with returning parsing results.
137           Properly make a copy of the vCard array so that -clear doesn't
138           destroy references. Thanks go to Wolfgang Sourdeau for documenting
139           the issue! (v4.5.76)
140
141 2006-07-04  Helge Hess  <helge.hess@opengroupware.org>
142
143         * use %p for pointer formats, fixed gcc 4.1 warnings (v4.5.75)
144
145 2006-05-16  Marcus Mueller  <znek@mulle-kybernetik.com>
146
147         * iCalDataSource.h, common.h: changed EOControl related includes into
148           imports to enable compilation against MulleEOF (v4.5.74)
149
150 2006-04-07  Marcus Mueller  <znek@mulle-kybernetik.com>
151
152         * iCalEntityObject.h: added missing forward declaration for
153           gstep-base compile (v4.5.73)
154
155 2006-04-06  Marcus Mueller  <znek@mulle-kybernetik.com>
156
157         * v4.5.72
158
159         * iCalEntityObject.[hm]: added "url" property - unfortunately
160           this was missing before. Increased class version to "1".
161
162         * iCalRepeatableEntityObject.m, iCalEvent.m, iCalToDo.m: adjusted
163           super class version check.
164
165 2006-01-16  Helge Hess  <helge.hess@opengroupware.org>
166
167         * iCalRecurrenceRule.m: properly include NSString+Ext.h to avoid a
168           warning during Cocoa compilation (v4.5.71)
169
170 2005-11-17  Helge Hess  <helge.hess@opengroupware.org>
171
172         * include string.h where required (v4.5.70)
173
174 2005-10-05  Helge Hess  <helge.hess@opengroupware.org>
175
176         * iCalMonthlyRecurrenceCalculator.m: implemented calculation of
177           negative byday occurrences (eg -1TH) (v4.5.69)
178
179 2005-09-22  Helge Hess  <helge.hess@skyrix.com>
180
181         * iCalRecurrenceRule.m: added direct parser support for 'interval',
182           allow 'until' values w/o Z marker for date-only values (v4.5.68)
183
184 2005-09-22  Helge Hess  <helge.hess@opengroupware.org>
185
186         * v4.5.67
187
188         * iCalMonthlyRecurrenceCalculator.m: finished 'byday' calculation
189
190         * iCalRecurrenceRule.m: added support for 'bymonthday', fixed handling
191           of occurrence1
192
193 2005-09-21  Helge Hess  <helge.hess@skyrix.com>
194
195         * v4.5.66
196
197         * iCalRecurrenceRule.m: temporarily expose byDayOccurence1 until the
198           API is fixed
199
200         * iCalMonthlyRecurrenceCalculator.m: prepared for byday/bymonthday
201           rule specs
202
203         * v4.5.65
204
205         * iCalMonthlyRecurrenceCalculator.m: fixed calculation of 'count' field
206
207         * iCalRecurrenceCalculator.m: minor code cleanups
208
209         * iCalRecurrenceRule.m: improved rrule parser
210
211 2005-09-20  Helge Hess  <helge.hess@opengroupware.org>
212
213         * iCalMonthlyRecurrenceCalculator.m: stop calculation if a byday part
214           was detected in the rule (v4.5.64)
215
216         * iCalRecurrenceCalculator.m: moved cluster subclasses to own source
217           files (v4.5.63)
218
219         * iCalRecurrenceRule.m: added some parsing/gen support for BYDAY
220           (v4.5.62)
221
222 2005-09-19  Helge Hess  <helge.hess@opengroupware.org>
223
224         * iCalRecurrenceRule.m: minor code improvements, more tolerant on
225           invalid iCal rrule input (v4.5.61)
226
227 2005-08-16  Helge Hess  <helge.hess@opengroupware.org>
228
229         * GNUmakefile, GNUmakefile.preamble: added OSX framework compilation
230           (v4.5.60)
231
232 2005-08-06  Helge Hess  <helge.hess@opengroupware.org>
233
234         * iCalCalendar.m, NGVCardName.m: fixed gcc 4.0 warnings (v4.5.59)
235
236 2005-08-05  Helge Hess  <helge.hess@opengroupware.org>
237
238         * NGVCardSaxHandler.h: fixed a gcc 4.0 warning (v4.5.58)
239
240 2005-07-18  Helge Hess  <helge.hess@opengroupware.org>
241
242         * iCalPerson.m: added -partStatWithDefault method to retrieve the
243           partstat and return NEEDS-ACTION in case none is set (v4.5.57)
244
245 2005-07-15  Marcus Mueller  <znek@mulle-kybernetik.com>
246
247         * iCalObject.[hm], iCalEntityObject.m, iCalToDo.m, iCalAlarm.m,
248           iCalPerson.m, iCalCalendar.m, iCalEvent.m, iCalTrigger.m,
249           iCalObject.m, iCalFreeBusy.m, iCalRepeatableEntityObject.m:
250           fixed NSCopying (v4.5.56)
251
252 2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
253
254         * added fragile base class version checks (v4.5.55)
255
256 2005-07-15  Marcus Mueller  <znek@mulle-kybernetik.com>
257
258         * iCalObject.[hm], iCalEntityObject.m, iCalToDo.m, iCalAlarm.m,
259           iCalPerson.m, iCalCalendar.m, iCalEvent.m, iCalTrigger.m,
260           iCalObject.m, iCalFreeBusy.m, iCalRepeatableEntityObject.m:
261           added NSCopying (v4.5.54)
262
263 2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
264
265         * v4.5.53
266
267         * iCalCalendar.m: added +parseCalendarFromSource: convenience method
268
269         * NGVCard.m: properly reset sax driver after parsing
270
271 2005-07-15  Marcus Mueller  <znek@mulle-kybernetik.com>
272
273         * iCalEntityObject.[hm]: added -increaseSequence (v4.5.52)
274
275         * iCalPerson.m: fixed -hasSameEmailAddress: to lowercase email
276           addresses before attempting comparison (v4.5.51)
277
278 2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
279
280         * v4.5.50
281         
282         * NGiCal.xmap: fixed mapping of 'method' property (is an attribute of
283           the calendar)
284           
285         * iCalCalendar.m: use ASSIGNCOPY in accessors, added 'method' to
286           -description
287           
288 2005-07-14  Marcus Mueller  <znek@mulle-kybernetik.com>
289
290         * v4.5.49
291
292         * iCalCalendar.[hm]: added 'method'
293
294         * iCalEntityObject.[hm]: added 'userComment', changed all email
295           related comparisons to lowercase all strings before comparison
296
297         * iCalEvent.h: pretty printed iVars
298
299         * NGiCal.xmap: added mapping for 'comment' -> 'userComment' and
300           'method' -> 'method'
301
302 2005-07-13  Helge Hess  <helge.hess@opengroupware.org>
303
304         * v4.5.48
305
306         * NGVCard.m: added some convenience methods to access the preferred
307           email, tel and adr
308
309         * NGVCardOrg.m: added a convenience method to access the first orgunit
310
311 2005-07-05  Marcus Mueller  <znek@mulle-kybernetik.com>
312
313         * NSCalendarDate+ICal.m: fixed 'gmtcalfmt' which removed seconds from
314           format for no obvious reason (v4.5.47)
315
316 2005-05-31  Helge Hess  <helge.hess@skyrix.com>
317
318         * NGVCardSaxHandler.m: ensure that types are always uppercase, improved
319           check for DUPs (v4.5.46)
320
321 2005-05-16  Marcus Mueller  <znek@mulle-kybernetik.com>
322
323         * NGiCal.xcode: reorganized ordering of headers/classes
324
325 2005-05-15  Marcus Mueller  <znek@mulle-kybernetik.com>
326
327         * NGiCal.xcode: added vCard related stuff
328
329 2005-05-10  Helge Hess  <helge.hess@opengroupware.org>
330
331         * NGVCard.m: added support for profile, source, name (v4.5.45)
332
333 2005-05-09  Helge Hess  <helge.hess@opengroupware.org>
334
335         * first version of working vCard SAX handler (v4.5.54)
336
337 2005-05-08  Helge Hess  <helge.hess@opengroupware.org>
338
339         * more work on vCard parsing (v4.5.53)
340
341         * work on vCard objects (incomplete) (v4.5.52)
342
343 2005-04-25  Helge Hess  <helge.hess@opengroupware.org>
344
345         * iCalDateHolder.m, iCalDataSource.m: fixed gcc 4.0 warnings (v4.5.51)
346
347 2005-03-23  Marcus Mueller  <znek@mulle-kybernetik.com>
348
349         * v4.5.50
350
351         * iCalRenderer.h: added missing paranthesis for iVar declarations
352
353         * iCalTrigger.m, iCalEntityObject.m, iCalToDo.m,
354           iCalRecurrenceCalculator.m, iCalDateHolder.m, iCalDataSource.m,
355           iCalPerson.m, iCalCalendar.m: numerous dealloc bugs/leaks fixed
356
357 2005-03-02  Marcus Mueller  <znek@mulle-kybernetik.com>
358
359         * iCalRecurrenceCalculator.m: bugfix for monthly and yearly recurrences
360           (v4.5.49)
361
362         * iCalRecurrenceCalculator.m: optimized exception date handling in
363           complex calculation method quite a bit. Fixed bugs in all calculation
364           methods by introducing checks on the desired range. (v4.5.48)
365
366 2005-02-28  Marcus Mueller  <znek@mulle-kybernetik.com>
367
368         * v4.5.47
369
370         * iCalRepeatableEntityObject.m:  shifted code to
371           iCalRecurrenceCalculator
372
373         * iCalRecurrenceCalculator.[hm]: new class method to calculate
374           complex recurrences. In SOGo this information is stored in quick
375           fields to reduce the complexity of lookups, hence we need to offer
376           a proper API to calculate date ranges from this information.
377           Fixed all calculations to explicitly set timeZone for all newly
378           created startDates - it seems the timeZone information is not
379           properly retained by the hour:minute:second: method from NGExtensions
380           which lead to improper DST related shifts.
381
382         * iCalDateHolder.h: exposed the API
383
384         * NSCalendarDate+ICal.[hm]: new convenience constructor for calendar
385           dates from iCal representations (uses iCalDateHolder internally)
386
387         * iCalRecurrenceRule.m: changed setUntil: to utilize new public
388           NSCalendarDate+ICal category
389
390         * NGiCal.h: added NSCalendarDate+ICal.h to the public headers
391
392         * GNUmakefile: NSCalendarDate+ICal.h is public now
393
394 2005-02-20  Helge Hess  <helge.hess@opengroupware.org>
395
396         * NGiCal.xmap: fixed a missing semicolon (did not load on MacOSX)
397           (v.4.5.46)
398
399 2005-02-17  Helge Hess  <helge.hess@skyrix.com>
400
401         * GNUmakefile.preamble: fixed linking locations for dependencies
402           (v4.5.45)
403
404 2005-02-17  Marcus Mueller  <znek@mulle-kybernetik.com>
405
406         * v4.5.44
407
408         * iCalEntityObject.[hm]: added convenience API
409
410         * iCalRepeatableEntityObject.[hm]: added convenience API
411
412         * iCalRecurrenceRule.m: bugfixes in -byDayList and
413           -iCalRepresentationForWeekDay:
414
415         * iCalRecurrenceCalculator.m: implemented 'BYDAY' calculations for
416           weekly frequency. Note that 'COUNT' is still broken for this case.
417
418         * iCalRenderer.m: updated rendering, now can render recurrence rules
419           and accompanied stuff properly.
420
421 2005-02-15  Marcus Mueller  <znek@mulle-kybernetik.com>
422
423         * v4.5.43
424
425         * iCalRecurrenceRule.[hm]: exposed some more of the API
426
427         * iCalRecurrenceCalculator.m: some bugfixes. Split the code and gave
428           iCalWeeklyRecurrenceCalculator its own calculation - there are a
429           number of foreseeable differences to daily calculation that make
430           this necessary in the near future anyways.
431
432         * v4.5.42
433
434         * iCalRepeatableEntityObject.[hm]: added ability to properly calculate
435           the recurrence ranges within a specific calendar date range, taking
436           all possible exceptions into account.
437
438         * iCalEvent.[hm]: convenience wrapper for the new method found in
439           iCalRepeatableEntityObject.
440
441 2005-02-14  Helge Hess  <helge.hess@opengroupware.org>
442
443         * v4.5.41
444
445         * GNUmakefile.preamble: added missing dependency on libNGExtensions
446           (which also adds the dependency on libDOM)
447
448         * iCalRecurrenceCalculator.h: fixed missing forward declaration in
449           header
450
451 2005-02-12  Marcus Mueller  <znek@mulle-kybernetik.com>
452
453         * v4.5.40
454
455         * iCalRecurrenceCalculator.[hm]: implemented all required (and simple)
456           calculations. Added some convenience API to query some of the more
457           obvious ranges suitable as limits for fetching/comparison. 
458
459         * iCalRepeatableEntityObject.[hm]: new method for calculating the
460           last possible recurrence start date. This can be used for fetches
461           as well.
462
463         * iCalEvent.[hm]: more convenient wrapper for the new method found in
464           iCalRepeatableEntityObject.
465
466         * NSCalendarDate+ICal.[hm]: convenience methods for calculating
467           "distances" between dates.
468
469         * tests/*: updated
470
471 2005-02-11  Marcus Mueller  <znek@mulle-kybernetik.com>
472
473         * v4.5.39
474
475         * README: updated
476
477         * iCalRepeatableEntityObject.[hm]: new base class for all other
478           repeatable entity objects. Offers a convenience API for generating
479           recurrence ranges and tests, taking all exceptions into account.
480
481         * iCalRecurrenceRule.[hm]: an iCal recurrence rule, modeled as closely
482           as possible to RFC2445. Please note that this is work in progress
483           and far from being complete, yet.
484
485         * iCalRecurrenceCalculator.[hm]: a controller implementing RFC2445
486           to properly generate recurrence ranges and accompanied functionality.
487
488         * iCalEvent.[hm], iCalToDo.[hm]: now subclasses from
489           iCalRepeatableEntityObject, thus removed code dealing with
490           recurrences
491
492         * NGiCal.h: added new headers
493
494         * NGiCal.xmap: changed recurrenceRule mappings due to model change
495
496         * tests/*: contains unit tests for stuff dealing with recurrences. See
497           accompanied README for details
498
499 2004-12-17  Marcus Mueller  <znek@mulle-kybernetik.com>
500
501         * iCalPerson.[hm]: formalized participationStatus according to RFC2445.
502           Provided convenience API to set status without concrete knowledge
503           of string values involved. (v4.5.38)
504
505 2004-12-16  Marcus Mueller  <znek@mulle-kybernetik.com>
506
507         * v4.5.37
508
509         * iCalEvent.[hm]: Added transparency 'TRANSP'. Also multiple
510           convenience methods provided.
511
512         * NGiCal.xmap: added proper mapping for 'transp'.
513
514 2004-12-14  Marcus Mueller  <znek@mulle-kybernetik.com>
515
516         * NGiCal.xcode: minor changes and updated
517
518 2004-12-13  Marcus Mueller  <znek@mulle-kybernetik.com>
519
520         * iCalPerson.[hm]: added -cnWithoutQuotes and -rfc822Email convenience
521           methods to simplify client code dealing with these properties
522           (v4.5.36)
523
524 2004-11-07  Marcus Mueller  <znek@mulle-kybernetik.com>
525
526         * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build
527
528 2004-11-06  Helge Hess  <helge.hess@opengroupware.org>
529
530         * iCalRenderer.m: use SOPE version defines for iCalendar product id
531           (v4.5.35)
532
533 2004-11-04  Helge Hess  <helge.hess@skyrix.com>
534
535         * use Version file for install directory location of sax mapping
536
537 2004-10-31  Marcus Mueller  <znek@mulle-kybernetik.com>
538
539         * iCalAlarm.[hm], iCalEvent.[hm], iCalToDo.[hm],
540           NGiCal.xmap: added recurrenceRule (v4.3.34)
541
542 2004-10-20  Marcus Mueller  <znek@mulle-kybernetik.com>
543
544         * NGiCal.xcode: added iCalRenderer.[hm], bumped framework version
545
546 2004-10-20  Helge Hess  <helge.hess@opengroupware.org>
547
548         * iCalRenderer.m: fixed some issue with Cocoa Foundation (v4.3.33)
549
550         * v4.3.32
551
552         * iCalEvent.m: added -vEvent method to produce an iCalendar
553           representation of an event
554
555         * added iCalRenderer class based on the SOGo render by ZNeK
556
557 2004-10-14  Marcus Mueller  <znek@mulle-kybernetik.com>
558
559         * NGiCal.xmap: added "categories" mapping (v4.3.31)
560
561 2004-10-05  Marcus Mueller  <znek@mulle-kybernetik.com>
562
563         * iCalEntityObject.[hm]: added categories property (v4.3.30)
564
565 2004-09-22  Marcus Mueller  <znek@mulle-kybernetik.com>
566
567         * NGiCal.xcode: fixed several build parameters
568
569 2004-09-01  Marcus Mueller  <znek@mulle-kybernetik.com>
570
571         * v4.3.29
572
573         * iCalEventChanges.[hm]: new class for tracking changes between
574           two given events
575
576         * iCalEvent.[hm]: new API to generate iCalEventChanges objects.
577
578         * common.h: inline function and macro for "safe" comparison of
579           object values
580
581 2004-09-01  Helge Hess  <helge.hess@opengroupware.org>
582
583         * GNUmakefile.postamble: copy sax-model to FHS_INSTALL_ROOT + 
584           /share/sope-4.3/saxmappings/ when compiling for FHS (v4.3.28)
585
586 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
587
588         * added hack to install the project in FHS locations - the library,
589           its headers, the tools and the resources will be installed in
590           FHS_INSTALL_ROOT if specified (eg make FHS_INSTALL_ROOT=/usr/local)
591           (v4.3.27)
592
593 2004-08-26  Marcus Mueller  <znek@mulle-kybernetik.com>
594
595         * NGiCal.xcode: new Xcode project
596
597 2004-08-20  Helge Hess  <helge.hess@opengroupware.org>
598
599         * fixed for SOPE 3.3 directory layout (v4.3.26)
600
601         * moved to sope-ical
602
603         * moved to SOPE 4.3 (v4.3.25)
604
605 2004-08-14  Helge Hess  <helge.hess@opengroupware.org>
606
607         * iCalEntityObject.m: changed "sequence" attribute from NSString to
608           NSNumber (this might break some code, though some care was taken to
609           accept NSString parameters) (v4.2.24)
610
611 2004-07-14  Helge Hess  <helge.hess@opengroupware.org>
612
613         * iCalEvent.h: moved 'status' field to iCalEntityObject, because it is
614           also available in todo objects (v4.2.23)
615
616 2004-06-30  Marcus Mueller  <znek@mulle-kybernetik.com>
617
618         * iCalEntityObject.m: added -removeAllAttendees and -removeAllAlarms.
619           These are necessary in case you want to remake the contents of these
620           collections, but keep all other attributes otherwise. (v4.2.22)
621
622 2004-06-09  Helge Hess  <helge.hess@opengroupware.org>
623
624         * v4.2.21
625
626         * GNUmakefile.preamble: added prebinding
627
628         * GNUmakefile: create GNUmakefile.preamble, GNUmakefile.postamble
629
630 2004-05-05  Marcus Mueller  <znek@mulle-kybernetik.com>
631
632         * GNUmakefile: added support for building with
633           GNUSTEP_BUILD_DIR environment variable set for recent
634           gnustep-make package. (v4.2.20)
635
636 2004-01-23  Helge Hess  <helge.hess@opengroupware.org>
637
638         * iCalDataSource.m: added some sanity checks, improved to work better
639           with Mozilla generated iCal files (v4.2.19)
640
641 2003-12-22  Helge Hess  <helge.hess@skyrix.com>
642
643         * iCalDateHolder.m: small fix not to print a warning for "YYYYMMDD"
644           style dates (which are supported) (v4.2.18)
645
646 2003-12-21  Helge Hess  <helge.hess@opengroupware.org>
647
648         * v4.2.17
649
650         * iCalEvent.m: added parsing of duration values and calculation of 
651           end-dates based on that (eg required for Panther iCal.app)
652         
653         * iCalEvent.m: added support for 'status' and 'duration' fields 
654
655 Thu Nov 20 16:31:15 2003  Martin Hoerning  <martin@opengroupware.org>
656
657         * iCalDateHolder.m: added timeless date format: YYYYMMDD
658           (solves ogo bug 424) (v4.2.16)
659
660 Wed Oct 29 22:04:32 2003  Martin Hoerning  <martin@opengroupware.org>
661
662         * iCalDateHolder.m, iCalObject.[m|h]: added iCalDefaultTimeZone to 
663           create date from iCalDates without timeZone. (solves OGoo bug 257) 
664           (v4.2.15)
665
666 2003-10-12  Helge Hess  <helge@opengroupware.org>
667
668         * GNUmakefile (libNGiCal_LIBRARIES_DEPEND_UPON): link against
669           libSaxObjC on MacOSX (v4.2.14)
670
671 Fri Jul 18 17:04:55 2003  Martin Hoerning  <mh@skyrix.com>
672
673         * iCalToDo.h, iCalPerson.h, iCalEvent.h, iCalEntityObject.h: added 
674           accessor-methods to interface (v4.2.13)
675
676 2003-07-18  Helge Hess  <helge.hess@skyrix.com>
677
678         * iCalDateHolder.m: replaces and indexOfString with rangeOfString,
679           thanks to Filip Van Raemdonck for pointing that out (v4.2.12)
680
681 2003-03-21  Helge Hess  <helge.hess@skyrix.com>
682
683         * added some method prototypes
684
685 2003-03-13  Helge Hess  <helge.hess@skyrix.com>
686
687         * moved iCalEntityObject to a separate file (v4.2.11)
688
689 Mon Mar 10 18:41:10 2003  Bjoern Stierand  <bjoern@skyrix.com>
690
691         * NGiCal.xmap: added missing attendee attributes (as dictated by
692           mh on the phone)
693
694 2003-03-10  Helge Hess  <helge.hess@skyrix.com>
695
696         * iCalPerson.h: added some method prototypes
697
698 2003-02-24  Helge Hess  <helge.hess@skyrix.com>
699
700         * iCalObject.h: added some accessors (v4.2.10)
701
702 2003-02-12  Helge Hess  <helge.hess@skyrix.com>
703
704         * moved to skyrix-core (v4.2.9)
705
706 2003-01-13  Helge Hess  <helge.hess@skyrix.com>
707
708         * added some support for timezones to be able to parse Evolution
709           apt creation requests (v4.2.7)
710
711 2002-10-14  Helge Hess  <helge.hess@skyrix.com>
712
713         * added iCalDateHolder for decoding xCal date values with timezone
714           attributes to a NSCalendarDate
715
716         * iCalObject.m: ignore X- keys
717
718         * removed all the old stuff (v4.2.4)
719
720         * ICalVEvent.m: renamed -class to -eventClass since -class conflicts
721           with the NSObject method
722
723         * started XML based iCal (v4.2.3)
724
725 2002-10-10  Helge Hess  <helge.hess@skyrix.com>
726
727         * ICalParser.m: small cleanups (v4.2.2)
728
729 2002-10-04  Helge Hess  <helge.hess@skyrix.com>
730
731         * created ChangeLog, created NGiCal library into SkyCore
732
733