Convert UIxComponentEditor to a SOGoDirectAction

Cleaning up unused templates.
This commit is contained in:
Francis Lachapelle
2018-05-18 12:10:10 -04:00
parent a0582c7e1e
commit 03b36e0bcd
8 changed files with 39 additions and 627 deletions
+12 -8
View File
@@ -27,6 +27,7 @@
#import <NGCards/NSCalendarDate+NGCards.h>
#import <NGObjWeb/SoSecurityManager.h>
#import <NGObjWeb/NSException+HTTP.h>
#import <NGObjWeb/WOContext+SoObjects.h>
#import <NGObjWeb/WORequest.h>
#import <NGObjWeb/WOResponse.h>
#import <NGExtensions/NSCalendarDate+misc.h>
@@ -125,17 +126,20 @@ static NSArray *reminderValues = nil;
[super dealloc];
}
- (void) setClientObject: (id)_client
- (id) initWithContext: (WOContext *) _context
{
[super setClientObject: _client]; // WOComponent+SoObjects
if ((self = [super initWithContext: _context]))
{
component = [[self clientObject] occurence];
[[component parent] retain];
component = [[self clientObject] occurence];
[[component parent] retain];
componentCalendar = [[self clientObject] container];
if ([componentCalendar isKindOfClass: [SOGoCalendarComponent class]])
componentCalendar = [componentCalendar container];
[componentCalendar retain];
}
componentCalendar = [[self clientObject] container];
if ([componentCalendar isKindOfClass: [SOGoCalendarComponent class]])
componentCalendar = [componentCalendar container];
[componentCalendar retain];
return self;
}
- (BOOL) isChildOccurrence