mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
Monotone-Parent: 6b979ac068d7a09b42d5a551f9f7ec257b6a13a2
Monotone-Revision: 5402e16ca9d296346561a48b192ce3ed97373e2c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-04T20:54:07 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
12
ChangeLog
12
ChangeLog
@@ -1,3 +1,15 @@
|
||||
2010-06-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolderXML.[hm]: same as
|
||||
below for XML.
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolderICS.[hm]: new class
|
||||
module that exports personal calendars as one ICS file.
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolders.m
|
||||
(-folderObjectKeys): new method that return the "toOne..." keys
|
||||
mapping XML or ICS representation of calendars.
|
||||
|
||||
2010-06-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/generic.js (CurrentModule): new function
|
||||
|
||||
@@ -14,7 +14,7 @@ Appointments_OBJC_FILES = \
|
||||
iCalRepeatableEntityObject+SOGo.m \
|
||||
iCalEvent+SOGo.m \
|
||||
iCalEventChanges+SOGo.m \
|
||||
iCalPerson+SOGo.m \
|
||||
iCalPerson+SOGo.m \
|
||||
iCalToDo+SOGo.m \
|
||||
\
|
||||
SOGoCalendarComponent.m \
|
||||
@@ -22,10 +22,13 @@ Appointments_OBJC_FILES = \
|
||||
SOGoTaskObject.m \
|
||||
SOGoComponentOccurence.m \
|
||||
SOGoAppointmentOccurence.m \
|
||||
SOGoTaskOccurence.m \
|
||||
SOGoTaskOccurence.m \
|
||||
SOGoAppointmentFolder.m \
|
||||
SOGoAppointmentInboxFolder.m \
|
||||
SOGoWebAppointmentFolder.m \
|
||||
SOGoAppointmentFolderICS.m \
|
||||
SOGoAppointmentFolderObject.m \
|
||||
SOGoAppointmentFolderXML.m \
|
||||
SOGoAppointmentInboxFolder.m \
|
||||
SOGoWebAppointmentFolder.m \
|
||||
SOGoAppointmentFolders.m \
|
||||
SOGoFreeBusyObject.m \
|
||||
SOGoUser+Appointments.m \
|
||||
|
||||
32
SoObjects/Appointments/SOGoAppointmentFolderICS.h
Normal file
32
SoObjects/Appointments/SOGoAppointmentFolderICS.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/* SOGoAppointmentFolderICS.h - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef SOGOAPPOINTMENTFOLDERICS_H
|
||||
#define SOGOAPPOINTMENTFOLDERICS_H
|
||||
|
||||
#import "SOGoAppointmentFolderObject.h"
|
||||
|
||||
@interface SOGoAppointmentFolderICS : SOGoAppointmentFolderObject
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SOGOAPPOINTMENTFOLDERICS_H */
|
||||
41
SoObjects/Appointments/SOGoAppointmentFolderICS.m
Normal file
41
SoObjects/Appointments/SOGoAppointmentFolderICS.m
Normal file
@@ -0,0 +1,41 @@
|
||||
/* SOGoAppointmentFolderICS.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import <NGCards/iCalCalendar.h>
|
||||
|
||||
#import "SOGoAppointmentFolderICS.h"
|
||||
|
||||
@implementation SOGoAppointmentFolderICS
|
||||
|
||||
- (NSString *) contentAsString
|
||||
{
|
||||
return [[self contentCalendar] versitString];
|
||||
}
|
||||
|
||||
- (NSString *) davContentType
|
||||
{
|
||||
return @"text/calendar";
|
||||
}
|
||||
|
||||
@end
|
||||
39
SoObjects/Appointments/SOGoAppointmentFolderObject.h
Normal file
39
SoObjects/Appointments/SOGoAppointmentFolderObject.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/* SOGoAppointmentFolderObject.h - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef SOGOAPPOINTMENTFOLDEROBJECT_H
|
||||
#define SOGOAPPOINTMENTFOLDEROBJECT_H
|
||||
|
||||
#import <SOGo/SOGoObject.h>
|
||||
|
||||
@class SOGoAppointmentFolder;
|
||||
|
||||
@interface SOGoAppointmentFolderObject : SOGoObject
|
||||
{
|
||||
SOGoAppointmentFolder *folder;
|
||||
}
|
||||
|
||||
- (iCalCalendar *) contentCalendar;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SOGOAPPOINTMENTFOLDEROBJECT_H */
|
||||
185
SoObjects/Appointments/SOGoAppointmentFolderObject.m
Normal file
185
SoObjects/Appointments/SOGoAppointmentFolderObject.m
Normal file
@@ -0,0 +1,185 @@
|
||||
/* SOGoAppointmentFolderObject.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import <NGObjWeb/WOContext.h>
|
||||
#import <NGObjWeb/WOResponse.h>
|
||||
|
||||
#import <NGCards/iCalCalendar.h>
|
||||
#import <NGCards/iCalTimeZone.h>
|
||||
|
||||
#import "SOGoAppointmentFolder.h"
|
||||
#import "SOGoCalendarComponent.h"
|
||||
|
||||
#import "SOGoAppointmentFolderObject.h"
|
||||
|
||||
@implementation SOGoAppointmentFolderObject
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if ((self = [super init]))
|
||||
{
|
||||
folder = nil;
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
[folder release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
- (BOOL) isFolderish
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (SOGoAppointmentFolder *) _folder
|
||||
{
|
||||
NSString *folderName;
|
||||
int length;
|
||||
|
||||
if (!folder)
|
||||
{
|
||||
length = [nameInContainer length];
|
||||
if (length > 3)
|
||||
{
|
||||
folderName = [nameInContainer substringToIndex: length - 4];
|
||||
folder = [container lookupName: folderName
|
||||
inContext: context
|
||||
acquire: NO];
|
||||
[folder retain];
|
||||
}
|
||||
}
|
||||
|
||||
return folder;
|
||||
}
|
||||
|
||||
- (NSArray *) aclsForUser: (NSString *) login
|
||||
{
|
||||
return [[self _folder] aclsForUser: login];
|
||||
}
|
||||
|
||||
- (void) _extractTimeZones: (NSArray *) timeZones
|
||||
intoDictionary: (NSMutableDictionary *) tzDict
|
||||
{
|
||||
int count, max;
|
||||
iCalTimeZone *timeZone;
|
||||
NSString *tzId;
|
||||
|
||||
max = [timeZones count];
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
timeZone = [timeZones objectAtIndex: count];
|
||||
tzId = [timeZone tzId];
|
||||
if (![tzDict objectForKey: tzId])
|
||||
[tzDict setObject: timeZone forKey: tzId];
|
||||
}
|
||||
}
|
||||
|
||||
- (void) _extractCalendarsData: (NSArray *) calendars
|
||||
intoTimeZones: (NSMutableDictionary *) timeZones
|
||||
andComponents: (NSMutableArray *) components
|
||||
{
|
||||
int count, max;
|
||||
iCalCalendar *calendar;
|
||||
|
||||
max = [calendars count];
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
calendar = [calendars objectAtIndex: count];
|
||||
[self _extractTimeZones: [calendar timezones]
|
||||
intoDictionary: timeZones];
|
||||
[components addObjectsFromArray: [calendar allObjects]];
|
||||
}
|
||||
}
|
||||
|
||||
- (NSArray *) _folderCalendars
|
||||
{
|
||||
NSArray *names;
|
||||
int count, max;
|
||||
SOGoCalendarComponent *component;
|
||||
NSMutableArray *calendars;
|
||||
|
||||
names = [[self _folder] toOneRelationshipKeys];
|
||||
max = [names count];
|
||||
calendars = [NSMutableArray arrayWithCapacity: max];
|
||||
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
component = [folder lookupName: [names objectAtIndex: count]
|
||||
inContext: context
|
||||
acquire: NO];
|
||||
[calendars addObject: [component calendar: NO secure: YES]];
|
||||
}
|
||||
|
||||
return calendars;
|
||||
}
|
||||
|
||||
- (iCalCalendar *) contentCalendar
|
||||
{
|
||||
NSArray *calendars;
|
||||
iCalCalendar *calendar;
|
||||
NSMutableDictionary *timeZones;
|
||||
NSMutableArray *components;
|
||||
|
||||
calendars = [self _folderCalendars];
|
||||
timeZones = [NSMutableDictionary dictionaryWithCapacity: 16];
|
||||
components = [NSMutableArray arrayWithCapacity: [calendars count] * 2];
|
||||
[self _extractCalendarsData: calendars
|
||||
intoTimeZones: timeZones andComponents: components];
|
||||
|
||||
calendar = [iCalCalendar groupWithTag: @"vcalendar"];
|
||||
[calendar setMethod: @"PUBLISH"];
|
||||
[calendar setVersion: @"2.0"];
|
||||
[calendar setProdID: @"-//Inverse inc./SOGo 1.0//EN"];
|
||||
[calendar addChildren: [timeZones allValues]];
|
||||
[calendar addChildren: components];
|
||||
|
||||
return calendar;
|
||||
}
|
||||
|
||||
- (id) davEntityTag
|
||||
{
|
||||
return [[self _folder] davCollectionTag];
|
||||
}
|
||||
|
||||
- (NSString *) contentAsString
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSString *) davContentType
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
@end
|
||||
32
SoObjects/Appointments/SOGoAppointmentFolderXML.h
Normal file
32
SoObjects/Appointments/SOGoAppointmentFolderXML.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/* SOGoAppointmentFolderXML.h - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef SOGOAPPOINTMENTFOLDERXML_H
|
||||
#define SOGOAPPOINTMENTFOLDERXML_H
|
||||
|
||||
#import "SOGoAppointmentFolderObject.h"
|
||||
|
||||
@interface SOGoAppointmentFolderXML : SOGoAppointmentFolderObject
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SOGOAPPOINTMENTFOLDERXML_H */
|
||||
45
SoObjects/Appointments/SOGoAppointmentFolderXML.m
Normal file
45
SoObjects/Appointments/SOGoAppointmentFolderXML.m
Normal file
@@ -0,0 +1,45 @@
|
||||
/* SOGoAppointmentFolderXML.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2010 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import <NGCards/iCalXMLRenderer.h>
|
||||
|
||||
#import "SOGoAppointmentFolderXML.h"
|
||||
|
||||
@implementation SOGoAppointmentFolderXML
|
||||
|
||||
- (NSString *) contentAsString
|
||||
{
|
||||
iCalXMLRenderer *renderer;
|
||||
|
||||
renderer = [iCalXMLRenderer sharedXMLRenderer];
|
||||
|
||||
return [renderer render: [self contentCalendar]];
|
||||
}
|
||||
|
||||
- (NSString *) davContentType
|
||||
{
|
||||
return @"application/xml+calendar";
|
||||
}
|
||||
|
||||
@end
|
||||
@@ -28,6 +28,9 @@
|
||||
@class NSArray;
|
||||
|
||||
@interface SOGoAppointmentFolders : SOGoParentFolder
|
||||
{
|
||||
NSMutableArray *folderObjectKeys;
|
||||
}
|
||||
|
||||
- (NSArray *) webCalendarIds;
|
||||
- (void) reloadWebCalendars: (BOOL) forceReload;
|
||||
|
||||
@@ -47,6 +47,8 @@
|
||||
#import <SOGo/SOGoWebDAVAclManager.h>
|
||||
|
||||
#import "SOGoAppointmentFolder.h"
|
||||
#import "SOGoAppointmentFolderICS.h"
|
||||
#import "SOGoAppointmentFolderXML.h"
|
||||
#import "SOGoAppointmentInboxFolder.h"
|
||||
#import "SOGoWebAppointmentFolder.h"
|
||||
#import "SOGoUser+Appointments.h"
|
||||
@@ -63,6 +65,22 @@
|
||||
|
||||
@implementation SOGoAppointmentFolders
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if ((self = [super init]))
|
||||
{
|
||||
folderObjectKeys = nil;
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
[folderObjectKeys release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
+ (NSString *) gcsFolderType
|
||||
{
|
||||
return @"Appointment";
|
||||
@@ -118,6 +136,42 @@
|
||||
return keys;
|
||||
}
|
||||
|
||||
- (NSArray *) folderObjectKeys
|
||||
{
|
||||
NSArray *folders;
|
||||
SOGoAppointmentFolder *folder;
|
||||
NSString *folderObjectKey;
|
||||
int count, max;
|
||||
|
||||
if (!folderObjectKeys)
|
||||
{
|
||||
folders = [self subFolders];
|
||||
max = [folders count];
|
||||
folderObjectKeys = [[NSMutableArray alloc] initWithCapacity: max];
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
folder = [folders objectAtIndex: count];
|
||||
if ([folder isMemberOfClass: [SOGoAppointmentFolder class]]
|
||||
&& ![folder isSubscription])
|
||||
{
|
||||
folderObjectKey = [NSString stringWithFormat: @"%@.ics",
|
||||
[folder nameInContainer]];
|
||||
[folderObjectKeys addObject: folderObjectKey];
|
||||
folderObjectKey = [NSString stringWithFormat: @"%@.xml",
|
||||
[folder nameInContainer]];
|
||||
[folderObjectKeys addObject: folderObjectKey];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return folderObjectKeys;
|
||||
}
|
||||
|
||||
- (NSArray *) toOneRelationshipKeys
|
||||
{
|
||||
return [self folderObjectKeys];
|
||||
}
|
||||
|
||||
- (id) lookupName: (NSString *) name
|
||||
inContext: (WOContext *) lookupContext
|
||||
acquire: (BOOL) acquire
|
||||
@@ -127,6 +181,17 @@
|
||||
if ([name isEqualToString: @"inbox"])
|
||||
obj = [SOGoAppointmentInboxFolder objectWithName: name
|
||||
inContainer: self];
|
||||
else if ([[self folderObjectKeys] containsObject: name])
|
||||
{
|
||||
if ([name hasSuffix: @".ics"])
|
||||
obj = [SOGoAppointmentFolderICS objectWithName: name
|
||||
inContainer: self];
|
||||
else if ([name hasSuffix: @".xml"])
|
||||
obj = [SOGoAppointmentFolderXML objectWithName: name
|
||||
inContainer: self];
|
||||
else
|
||||
obj = nil;
|
||||
}
|
||||
else
|
||||
obj = [super lookupName: name inContext: lookupContext acquire: NO];
|
||||
|
||||
|
||||
@@ -22,12 +22,12 @@
|
||||
"ViewDAndTOfPublicRecords" = ( "Owner", "PublicDAndTViewer" );
|
||||
"ViewDAndTOfPrivateRecords" = ( "Owner", "PrivateDAndTViewer" );
|
||||
"ViewDAndTOfConfidentialRecords" = ( "Owner", "ConfidentialDAndTViewer" );
|
||||
"ModifyPublicRecords" = ( );
|
||||
"ModifyPrivateRecords" = ( );
|
||||
"ModifyConfidentialRecords" = ( );
|
||||
"RespondToPublicRecords" = ( );
|
||||
"RespondToPrivateRecords" = ( );
|
||||
"RespondToConfidentialRecords" = ( );
|
||||
"ModifyPublicRecords" = ( "NoOne" );
|
||||
"ModifyPrivateRecords" = ( "NoOne" );
|
||||
"ModifyConfidentialRecords" = ( "NoOne" );
|
||||
"RespondToPublicRecords" = ( "NoOne" );
|
||||
"RespondToPrivateRecords" = ( "NoOne" );
|
||||
"RespondToConfidentialRecords" = ( "NoOne" );
|
||||
};
|
||||
};
|
||||
SOGoAppointmentFolder = {
|
||||
@@ -49,10 +49,25 @@
|
||||
"RespondToConfidentialRecords" = ( "Owner", "ConfidentialModifier", "ConfidentialResponder" );
|
||||
};
|
||||
};
|
||||
SOGoAppointmentFolderObject = {
|
||||
superclass = "SOGoAppointmentFolder";
|
||||
protectedBy = "Access Contents Information";
|
||||
defaultRoles = {
|
||||
"Access Contents Information" = ( "Owner", "PublicResponder", "PublicModifier", "PublicViewer", "PublicDAndTViewer", "PrivateResponder", "PrivateModifier", "PrivateViewer", "PrivateDAndTViewer", "ConfidentialResponder", "ConfidentialModifier", "ConfidentialViewer", "ConfidentialDAndTViewer", "AuthorizedSubscriber" );
|
||||
"WebDAV Access" = ( "Owner", "Authenticated", "PublicUser" );
|
||||
"Change Images And Files" = ( "NoOne" );
|
||||
};
|
||||
};
|
||||
SOGoAppointmentFolderICS = {
|
||||
superclass = "SOGoAppointmentFolderObject";
|
||||
};
|
||||
SOGoAppointmentFolderXML = {
|
||||
superclass = "SOGoAppointmentFolderObject";
|
||||
};
|
||||
SOGoAppointmentInboxFolder = {
|
||||
superclass = "SOGoAppointmentFolder";
|
||||
defaultRoles = {
|
||||
"Access Contents Information" = ( "Owner", "AuthorizedSubscriber" );
|
||||
"Access Contents Information" = ( "Owner" );
|
||||
};
|
||||
};
|
||||
SOGoCalendarComponent = {
|
||||
|
||||
Reference in New Issue
Block a user