Monotone-Parent: ab7765d8d9cabd9c3da98a32f5907faaf59a4e5b

Monotone-Revision: 473e23aa8952f82b8ef8ebcb95fd3ad46226c3be

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-12-05T22:29:50
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-12-05 22:29:50 +00:00
parent 462432c50a
commit ca57a6c158
4 changed files with 13 additions and 3 deletions
+9
View File
@@ -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).
+2 -1
View File
@@ -593,9 +593,10 @@
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];
}
+1 -1
View File
@@ -344,7 +344,7 @@
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];
+1 -1
View File
@@ -338,7 +338,7 @@
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];