Monotone-Parent: 0536d34a9212fa68a10f5a18d95efd01e0c46aac

Monotone-Revision: 983a04f2ca294c287e2e589108dcfb037594bd50

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-03-20T13:48:17
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-03-20 13:48:17 +00:00
parent 34619a5eda
commit 69587d6d3b
24 changed files with 116 additions and 9 deletions
+9
View File
@@ -74,6 +74,9 @@
@interface SOGoACLGermanAdditionAdvisory : SOGoACLAdditionAdvisory
@end
@interface SOGoACLItalianAdditionAdvisory : SOGoACLAdditionAdvisory
@end
@interface SOGoACLEnglishModificationAdvisory : SOGoACLModificationAdvisory
@end
@@ -83,6 +86,9 @@
@interface SOGoACLGermanModificationAdvisory : SOGoACLModificationAdvisory
@end
@interface SOGoACLItalianModificationAdvisory : SOGoACLModificationAdvisory
@end
@interface SOGoACLEnglishRemovalAdvisory : SOGoACLRemovalAdvisory
@end
@@ -92,4 +98,7 @@
@interface SOGoACLGermanRemovalAdvisory : SOGoACLRemovalAdvisory
@end
@interface SOGoACLItalianRemovalAdvisory : SOGoACLRemovalAdvisory
@end
#endif /* SOGOACLADVISORY_H */
+10
View File
@@ -255,6 +255,9 @@
@implementation SOGoACLGermanAdditionAdvisory
@end
@implementation SOGoACLItalianAdditionAdvisory
@end
@implementation SOGoACLEnglishModificationAdvisory
@end
@@ -264,6 +267,9 @@
@implementation SOGoACLGermanModificationAdvisory
@end
@implementation SOGoACLItalianModificationAdvisory
@end
@implementation SOGoACLEnglishRemovalAdvisory
@end
@@ -272,3 +278,7 @@
@implementation SOGoACLGermanRemovalAdvisory
@end
@implementation SOGoACLItalianRemovalAdvisory
@end
+7
View File
@@ -65,4 +65,11 @@
@interface SOGoFolderGermanRemovalAdvisory : SOGoFolderAdvisory
@end
@interface SOGoFolderItalianAdditionAdvisory : SOGoFolderAdvisory
@end
@interface SOGoFolderItalianRemovalAdvisory : SOGoFolderAdvisory
@end
#endif /* SOGOFOLDERADVISORY_H */
+9
View File
@@ -230,3 +230,12 @@
@implementation SOGoFolderGermanRemovalAdvisory
- (NSString *) folderMethod { return @"remove"; }
@end
@implementation SOGoFolderItalianAdditionAdvisory
- (NSString *) folderMethod { return @"add"; }
@end
@implementation SOGoFolderItalianRemovalAdvisory
- (NSString *) folderMethod { return @"remove"; }
@end