View Issue Details

IDProjectCategoryView StatusLast Update
0001273SOGoApple Calendar (Mac OS X)public2011-04-29 15:44
ReporterMarcel Assigned Toludovic  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Versionnightly v2 
Fixed in Version1.3.7 
Summary0001273: Personal Calendar is placed in seemingly random location
Description

The personal calendar is placed in seemingly random order, while the other calendars are in alphabetical order.

Aside from the lack of beauty of such a placement, the first calendar is also used as the default calendar to accept invitations from Mail.app, which is a major annoyance.

Additional Information

The fix is rather simple: iCal.app wants the calendar order to start at 1, not 0 (0 seems to indicate "unspecified"). The following patch will put the personal calendar consistently into the first location:

#

old_revision [9b0e70cef01c0afdbc1684211507c86871122671]

#

patch "SoObjects/Appointments/SOGoAppointmentFolder.m"

from [0d77c8287292505ad328c1d5e13d8ed818111e16]

to [a94afa3cfc519246d9ead23cab3ad7199a195c6a]

#

--- SoObjects/Appointments/SOGoAppointmentFolder.m 0d77c8287292505ad328c1d5e13d8ed818111e16
+++ SoObjects/Appointments/SOGoAppointmentFolder.m a94afa3cfc519246d9ead23cab3ad7199a195c6a
@@ -1513,7 +1513,7 @@ firstInstanceCalendarDateRange: (NGCalen

order = [[container subFolders] indexOfObject: self];

  • return [NSString stringWithFormat: @"%d", order];
  • return [NSString stringWithFormat: @"%d", order+1];
    }

    • (NSException ) setDavCalendarOrder: (NSString ) newColor
TagsNo tags attached.

Issue History

Date Modified Username Field Change
2011-04-29 13:12 Marcel New Issue
2011-04-29 15:44 ludovic Note Added: 0002416
2011-04-29 15:44 ludovic Status new => resolved
2011-04-29 15:44 ludovic Fixed in Version => 1.3.7
2011-04-29 15:44 ludovic Resolution open => fixed
2011-04-29 15:44 ludovic Assigned To => ludovic
2014-09-26 18:08 ludovic Category Apple iCal.app => Apple Calendar (Mac OS X)