]> err.no Git - sope/blob - sope-ical/NGiCal/ChangeLog
b71bc0be782cdc5c83afabcbbe5b6deb79dfe8ff
[sope] / sope-ical / NGiCal / ChangeLog
1 2005-05-16  Marcus Mueller  <znek@mulle-kybernetik.com>
2
3         * NGiCal.xcode: reorganized ordering of headers/classes
4
5 2005-05-15  Marcus Mueller  <znek@mulle-kybernetik.com>
6
7         * NGiCal.xcode: added vCard related stuff
8
9 2005-05-10  Helge Hess  <helge.hess@opengroupware.org>
10
11         * NGVCard.m: added support for profile, source, name (v4.5.45)
12
13 2005-05-09  Helge Hess  <helge.hess@opengroupware.org>
14
15         * first version of working vCard SAX handler (v4.5.54)
16
17 2005-05-08  Helge Hess  <helge.hess@opengroupware.org>
18
19         * more work on vCard parsing (v4.5.53)
20
21         * work on vCard objects (incomplete) (v4.5.52)
22
23 2005-04-25  Helge Hess  <helge.hess@opengroupware.org>
24
25         * iCalDateHolder.m, iCalDataSource.m: fixed gcc 4.0 warnings (v4.5.51)
26
27 2005-03-23  Marcus Mueller  <znek@mulle-kybernetik.com>
28
29         * v4.5.50
30
31         * iCalRenderer.h: added missing paranthesis for iVar declarations
32
33         * iCalTrigger.m, iCalEntityObject.m, iCalToDo.m,
34           iCalRecurrenceCalculator.m, iCalDateHolder.m, iCalDataSource.m,
35           iCalPerson.m, iCalCalendar.m: numerous dealloc bugs/leaks fixed
36
37 2005-03-02  Marcus Mueller  <znek@mulle-kybernetik.com>
38
39         * iCalRecurrenceCalculator.m: bugfix for monthly and yearly recurrences
40           (v4.5.49)
41
42         * iCalRecurrenceCalculator.m: optimized exception date handling in
43           complex calculation method quite a bit. Fixed bugs in all calculation
44           methods by introducing checks on the desired range. (v4.5.48)
45
46 2005-02-28  Marcus Mueller  <znek@mulle-kybernetik.com>
47
48         * v4.5.47
49
50         * iCalRepeatableEntityObject.m:  shifted code to
51           iCalRecurrenceCalculator
52
53         * iCalRecurrenceCalculator.[hm]: new class method to calculate
54           complex recurrences. In SOGo this information is stored in quick
55           fields to reduce the complexity of lookups, hence we need to offer
56           a proper API to calculate date ranges from this information.
57           Fixed all calculations to explicitly set timeZone for all newly
58           created startDates - it seems the timeZone information is not
59           properly retained by the hour:minute:second: method from NGExtensions
60           which lead to improper DST related shifts.
61
62         * iCalDateHolder.h: exposed the API
63
64         * NSCalendarDate+ICal.[hm]: new convenience constructor for calendar
65           dates from iCal representations (uses iCalDateHolder internally)
66
67         * iCalRecurrenceRule.m: changed setUntil: to utilize new public
68           NSCalendarDate+ICal category
69
70         * NGiCal.h: added NSCalendarDate+ICal.h to the public headers
71
72         * GNUmakefile: NSCalendarDate+ICal.h is public now
73
74 2005-02-20  Helge Hess  <helge.hess@opengroupware.org>
75
76         * NGiCal.xmap: fixed a missing semicolon (did not load on MacOSX)
77           (v.4.5.46)
78
79 2005-02-17  Helge Hess  <helge.hess@skyrix.com>
80
81         * GNUmakefile.preamble: fixed linking locations for dependencies
82           (v4.5.45)
83
84 2005-02-17  Marcus Mueller  <znek@mulle-kybernetik.com>
85
86         * v4.5.44
87
88         * iCalEntityObject.[hm]: added convenience API
89
90         * iCalRepeatableEntityObject.[hm]: added convenience API
91
92         * iCalRecurrenceRule.m: bugfixes in -byDayList and
93           -iCalRepresentationForWeekDay:
94
95         * iCalRecurrenceCalculator.m: implemented 'BYDAY' calculations for
96           weekly frequency. Note that 'COUNT' is still broken for this case.
97
98         * iCalRenderer.m: updated rendering, now can render recurrence rules
99           and accompanied stuff properly.
100
101 2005-02-15  Marcus Mueller  <znek@mulle-kybernetik.com>
102
103         * v4.5.43
104
105         * iCalRecurrenceRule.[hm]: exposed some more of the API
106
107         * iCalRecurrenceCalculator.m: some bugfixes. Split the code and gave
108           iCalWeeklyRecurrenceCalculator its own calculation - there are a
109           number of foreseeable differences to daily calculation that make
110           this necessary in the near future anyways.
111
112         * v4.5.42
113
114         * iCalRepeatableEntityObject.[hm]: added ability to properly calculate
115           the recurrence ranges within a specific calendar date range, taking
116           all possible exceptions into account.
117
118         * iCalEvent.[hm]: convenience wrapper for the new method found in
119           iCalRepeatableEntityObject.
120
121 2005-02-14  Helge Hess  <helge.hess@opengroupware.org>
122
123         * v4.5.41
124
125         * GNUmakefile.preamble: added missing dependency on libNGExtensions
126           (which also adds the dependency on libDOM)
127
128         * iCalRecurrenceCalculator.h: fixed missing forward declaration in
129           header
130
131 2005-02-12  Marcus Mueller  <znek@mulle-kybernetik.com>
132
133         * v4.5.40
134
135         * iCalRecurrenceCalculator.[hm]: implemented all required (and simple)
136           calculations. Added some convenience API to query some of the more
137           obvious ranges suitable as limits for fetching/comparison. 
138
139         * iCalRepeatableEntityObject.[hm]: new method for calculating the
140           last possible recurrence start date. This can be used for fetches
141           as well.
142
143         * iCalEvent.[hm]: more convenient wrapper for the new method found in
144           iCalRepeatableEntityObject.
145
146         * NSCalendarDate+ICal.[hm]: convenience methods for calculating
147           "distances" between dates.
148
149         * tests/*: updated
150
151 2005-02-11  Marcus Mueller  <znek@mulle-kybernetik.com>
152
153         * v4.5.39
154
155         * README: updated
156
157         * iCalRepeatableEntityObject.[hm]: new base class for all other
158           repeatable entity objects. Offers a convenience API for generating
159           recurrence ranges and tests, taking all exceptions into account.
160
161         * iCalRecurrenceRule.[hm]: an iCal recurrence rule, modeled as closely
162           as possible to RFC2445. Please note that this is work in progress
163           and far from being complete, yet.
164
165         * iCalRecurrenceCalculator.[hm]: a controller implementing RFC2445
166           to properly generate recurrence ranges and accompanied functionality.
167
168         * iCalEvent.[hm], iCalToDo.[hm]: now subclasses from
169           iCalRepeatableEntityObject, thus removed code dealing with
170           recurrences
171
172         * NGiCal.h: added new headers
173
174         * NGiCal.xmap: changed recurrenceRule mappings due to model change
175
176         * tests/*: contains unit tests for stuff dealing with recurrences. See
177           accompanied README for details
178
179 2004-12-17  Marcus Mueller  <znek@mulle-kybernetik.com>
180
181         * iCalPerson.[hm]: formalized participationStatus according to RFC2445.
182           Provided convenience API to set status without concrete knowledge
183           of string values involved. (v4.5.38)
184
185 2004-12-16  Marcus Mueller  <znek@mulle-kybernetik.com>
186
187         * v4.5.37
188
189         * iCalEvent.[hm]: Added transparency 'TRANSP'. Also multiple
190           convenience methods provided.
191
192         * NGiCal.xmap: added proper mapping for 'transp'.
193
194 2004-12-14  Marcus Mueller  <znek@mulle-kybernetik.com>
195
196         * NGiCal.xcode: minor changes and updated
197
198 2004-12-13  Marcus Mueller  <znek@mulle-kybernetik.com>
199
200         * iCalPerson.[hm]: added -cnWithoutQuotes and -rfc822Email convenience
201           methods to simplify client code dealing with these properties
202           (v4.5.36)
203
204 2004-11-07  Marcus Mueller  <znek@mulle-kybernetik.com>
205
206         * NGiCal.xcode: provide SOPE_{MAJOR,MINOR}_VERSION to the build
207
208 2004-11-06  Helge Hess  <helge.hess@opengroupware.org>
209
210         * iCalRenderer.m: use SOPE version defines for iCalendar product id
211           (v4.5.35)
212
213 2004-11-04  Helge Hess  <helge.hess@skyrix.com>
214
215         * use Version file for install directory location of sax mapping
216
217 2004-10-31  Marcus Mueller  <znek@mulle-kybernetik.com>
218
219         * iCalAlarm.[hm], iCalEvent.[hm], iCalToDo.[hm],
220           NGiCal.xmap: added recurrenceRule (v4.3.34)
221
222 2004-10-20  Marcus Mueller  <znek@mulle-kybernetik.com>
223
224         * NGiCal.xcode: added iCalRenderer.[hm], bumped framework version
225
226 2004-10-20  Helge Hess  <helge.hess@opengroupware.org>
227
228         * iCalRenderer.m: fixed some issue with Cocoa Foundation (v4.3.33)
229
230         * v4.3.32
231
232         * iCalEvent.m: added -vEvent method to produce an iCalendar
233           representation of an event
234
235         * added iCalRenderer class based on the SOGo render by ZNeK
236
237 2004-10-14  Marcus Mueller  <znek@mulle-kybernetik.com>
238
239         * NGiCal.xmap: added "categories" mapping (v4.3.31)
240
241 2004-10-05  Marcus Mueller  <znek@mulle-kybernetik.com>
242
243         * iCalEntityObject.[hm]: added categories property (v4.3.30)
244
245 2004-09-22  Marcus Mueller  <znek@mulle-kybernetik.com>
246
247         * NGiCal.xcode: fixed several build parameters
248
249 2004-09-01  Marcus Mueller  <znek@mulle-kybernetik.com>
250
251         * v4.3.29
252
253         * iCalEventChanges.[hm]: new class for tracking changes between
254           two given events
255
256         * iCalEvent.[hm]: new API to generate iCalEventChanges objects.
257
258         * common.h: inline function and macro for "safe" comparison of
259           object values
260
261 2004-09-01  Helge Hess  <helge.hess@opengroupware.org>
262
263         * GNUmakefile.postamble: copy sax-model to FHS_INSTALL_ROOT + 
264           /share/sope-4.3/saxmappings/ when compiling for FHS (v4.3.28)
265
266 2004-08-29  Helge Hess  <helge.hess@opengroupware.org>
267
268         * added hack to install the project in FHS locations - the library,
269           its headers, the tools and the resources will be installed in
270           FHS_INSTALL_ROOT if specified (eg make FHS_INSTALL_ROOT=/usr/local)
271           (v4.3.27)
272
273 2004-08-26  Marcus Mueller  <znek@mulle-kybernetik.com>
274
275         * NGiCal.xcode: new Xcode project
276
277 2004-08-20  Helge Hess  <helge.hess@opengroupware.org>
278
279         * fixed for SOPE 3.3 directory layout (v4.3.26)
280
281         * moved to sope-ical
282
283         * moved to SOPE 4.3 (v4.3.25)
284
285 2004-08-14  Helge Hess  <helge.hess@opengroupware.org>
286
287         * iCalEntityObject.m: changed "sequence" attribute from NSString to
288           NSNumber (this might break some code, though some care was taken to
289           accept NSString parameters) (v4.2.24)
290
291 2004-07-14  Helge Hess  <helge.hess@opengroupware.org>
292
293         * iCalEvent.h: moved 'status' field to iCalEntityObject, because it is
294           also available in todo objects (v4.2.23)
295
296 2004-06-30  Marcus Mueller  <znek@mulle-kybernetik.com>
297
298         * iCalEntityObject.m: added -removeAllAttendees and -removeAllAlarms.
299           These are necessary in case you want to remake the contents of these
300           collections, but keep all other attributes otherwise. (v4.2.22)
301
302 2004-06-09  Helge Hess  <helge.hess@opengroupware.org>
303
304         * v4.2.21
305
306         * GNUmakefile.preamble: added prebinding
307
308         * GNUmakefile: create GNUmakefile.preamble, GNUmakefile.postamble
309
310 2004-05-05  Marcus Mueller  <znek@mulle-kybernetik.com>
311
312         * GNUmakefile: added support for building with
313           GNUSTEP_BUILD_DIR environment variable set for recent
314           gnustep-make package. (v4.2.20)
315
316 2004-01-23  Helge Hess  <helge.hess@opengroupware.org>
317
318         * iCalDataSource.m: added some sanity checks, improved to work better
319           with Mozilla generated iCal files (v4.2.19)
320
321 2003-12-22  Helge Hess  <helge.hess@skyrix.com>
322
323         * iCalDateHolder.m: small fix not to print a warning for "YYYYMMDD"
324           style dates (which are supported) (v4.2.18)
325
326 2003-12-21  Helge Hess  <helge.hess@opengroupware.org>
327
328         * v4.2.17
329
330         * iCalEvent.m: added parsing of duration values and calculation of 
331           end-dates based on that (eg required for Panther iCal.app)
332         
333         * iCalEvent.m: added support for 'status' and 'duration' fields 
334
335 Thu Nov 20 16:31:15 2003  Martin Hoerning  <martin@opengroupware.org>
336
337         * iCalDateHolder.m: added timeless date format: YYYYMMDD
338           (solves ogo bug 424) (v4.2.16)
339
340 Wed Oct 29 22:04:32 2003  Martin Hoerning  <martin@opengroupware.org>
341
342         * iCalDateHolder.m, iCalObject.[m|h]: added iCalDefaultTimeZone to 
343           create date from iCalDates without timeZone. (solves OGoo bug 257) 
344           (v4.2.15)
345
346 2003-10-12  Helge Hess  <helge@opengroupware.org>
347
348         * GNUmakefile (libNGiCal_LIBRARIES_DEPEND_UPON): link against
349           libSaxObjC on MacOSX (v4.2.14)
350
351 Fri Jul 18 17:04:55 2003  Martin Hoerning  <mh@skyrix.com>
352
353         * iCalToDo.h, iCalPerson.h, iCalEvent.h, iCalEntityObject.h: added 
354           accessor-methods to interface (v4.2.13)
355
356 2003-07-18  Helge Hess  <helge.hess@skyrix.com>
357
358         * iCalDateHolder.m: replaces and indexOfString with rangeOfString,
359           thanks to Filip Van Raemdonck for pointing that out (v4.2.12)
360
361 2003-03-21  Helge Hess  <helge.hess@skyrix.com>
362
363         * added some method prototypes
364
365 2003-03-13  Helge Hess  <helge.hess@skyrix.com>
366
367         * moved iCalEntityObject to a separate file (v4.2.11)
368
369 Mon Mar 10 18:41:10 2003  Bjoern Stierand  <bjoern@skyrix.com>
370
371         * NGiCal.xmap: added missing attendee attributes (as dictated by
372           mh on the phone)
373
374 2003-03-10  Helge Hess  <helge.hess@skyrix.com>
375
376         * iCalPerson.h: added some method prototypes
377
378 2003-02-24  Helge Hess  <helge.hess@skyrix.com>
379
380         * iCalObject.h: added some accessors (v4.2.10)
381
382 2003-02-12  Helge Hess  <helge.hess@skyrix.com>
383
384         * moved to skyrix-core (v4.2.9)
385
386 2003-01-13  Helge Hess  <helge.hess@skyrix.com>
387
388         * added some support for timezones to be able to parse Evolution
389           apt creation requests (v4.2.7)
390
391 2002-10-14  Helge Hess  <helge.hess@skyrix.com>
392
393         * added iCalDateHolder for decoding xCal date values with timezone
394           attributes to a NSCalendarDate
395
396         * iCalObject.m: ignore X- keys
397
398         * removed all the old stuff (v4.2.4)
399
400         * ICalVEvent.m: renamed -class to -eventClass since -class conflicts
401           with the NSObject method
402
403         * started XML based iCal (v4.2.3)
404
405 2002-10-10  Helge Hess  <helge.hess@skyrix.com>
406
407         * ICalParser.m: small cleanups (v4.2.2)
408
409 2002-10-04  Helge Hess  <helge.hess@skyrix.com>
410
411         * created ChangeLog, created NGiCal library into SkyCore
412
413