mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-25 08:23:28 +00:00
Monotone-Parent: 96be8fb544ada3cb6a58b0caa0bfb99522dac8db
Monotone-Revision: bded46ecbec55dcfe4c434982eb0a1d07a5ce436 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2008-07-09T02:01:32 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -58,6 +58,8 @@
|
||||
baseVersion: (unsigned int) _baseVersion;
|
||||
- (NSException *) saveContentString: (NSString *)_str;
|
||||
- (NSException *) delete;
|
||||
- (NSException *) copyTo: (SOGoGCSFolder *) destinationFolder;
|
||||
- (NSException *) moveTo: (SOGoGCSFolder *) destinationFolder;
|
||||
|
||||
/* etag support */
|
||||
|
||||
|
||||
@@ -213,6 +213,21 @@
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSException *) copyTo: (SOGoGCSFolder *) destinationFolder
|
||||
{
|
||||
SOGoContentObject *newObject;
|
||||
|
||||
newObject = [SOGoContentObject objectWithName: [SOGoObject globallyUniqueObjectId]
|
||||
inContainer: destinationFolder];
|
||||
|
||||
return [newObject saveContentString: content];
|
||||
}
|
||||
|
||||
- (NSException *) moveTo: (SOGoGCSFolder *) destinationFolder
|
||||
{
|
||||
return nil;
|
||||
}
|
||||
|
||||
/* actions */
|
||||
|
||||
// - (id) lookupName:
|
||||
|
||||
Reference in New Issue
Block a user