]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1289 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 5 Dec 2007 22:30:12 +0000 (22:30 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 5 Dec 2007 22:30:12 +0000 (22:30 +0000)
ChangeLog
UI/Contacts/UIxContactEditor.m
UI/Scheduler/UIxAppointmentEditor.m
UI/Scheduler/UIxTaskEditor.m

index efbbf3bf999d127b031d4f844905b15c9702607e..af43fe95093356de9bd71b69a6c0ab7c68b371ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2007-12-05  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
 
+       * UI/Scheduler/UIxTaskEditor.m ([UIxTaskEditor -newAction]):
+       create task obejcts with the .ics extension.
+
+       * UI/Scheduler/UIxAppointmentEditor.m ([UIxAppointmentEditor
+       -newAction]): create appointment objects with the .ics extension.
+
+       * UI/Contacts/UIxContactEditor.m ([UIxContactEditor -newAction]):
+       create objects with the .vcf extension.
+
        * Main/NSException+Stacktrace.m: added missing symbols from
        NSException.m and NSDebug.m (GNUstep).
 
index f36e2bc855b2d43cd244a60a72270dec3c04b957..7181f47a6d01575be6297a5d8f14ff385065455e 100644 (file)
     return [NSException exceptionWithHTTPStatus: 500 /* Internal Error */
                         reason: @"could not create a unique ID"];
 
-  nextMethod = [NSString stringWithFormat: @"../%@/%@", 
+  nextMethod = [NSString stringWithFormat: @"../%@.vcf/%@", 
                         objectId, [self editActionName]];
   uri = [self _completeURIForMethod: nextMethod];
+
   return [self redirectToLocation: uri];
 }
 
index 911b2404a99507947097f50aea60683f4b4b63e8..cd5331e3279ccfeff52fa087f615d6f0bf3e9f41 100644 (file)
   objectId = [co globallyUniqueObjectId];
   if ([objectId length] > 0)
     {
-      method = [NSString stringWithFormat:@"%@/%@/editAsAppointment",
+      method = [NSString stringWithFormat:@"%@/%@.ics/editAsAppointment",
                          [co soURL], objectId];
       uri = [self completeHrefForMethod: method];
       result = [self redirectToLocation: uri];
index cc0aac6e8ad7af865c68f25afacf36e31bc5d4e6..7ec0b0d4067beb7dcdf8e14d48fffd57bef18729 100644 (file)
   objectId = [co globallyUniqueObjectId];
   if ([objectId length] > 0)
     {
-      method = [NSString stringWithFormat:@"%@/%@/editAsTask",
+      method = [NSString stringWithFormat:@"%@/%@.ics/editAsTask",
                          [co soURL], objectId];
       uri = [self completeHrefForMethod: method];
       result = [self redirectToLocation: uri];