Monotone-Parent: c7d2906d4ff3cf078eff6da5bbb5f989b2a1cfe0

Monotone-Revision: 08a3d1af9c988be091b1138ccc0d4417a0a5db5e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-05-22T21:47:31
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-05-22 21:47:31 +00:00
parent b825d757d9
commit 7bac1a02f4
2 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
2008-05-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m ([SOGoUserFolder
-davCollectionQuery:queryContext]): fixed the owner url returned
in the list so that it matches what the regular davOwner method
returns.
* UI/MailerUI/UIxMailFolderActions.m ([UIxMailFolderActions
-renameFolderAction]): select the INBOX folder before renaming the
target folder.

View File

@@ -257,14 +257,14 @@
while ((currentFolder = [folders nextObject]))
{
[r appendContentString: @"<D:response><D:href>"];
data = [NSString stringWithFormat: @"%@%@%@", baseHREF,
data = [NSString stringWithFormat: @"%@%@%@/", baseHREF,
[currentContact objectForKey: @"c_uid"],
[currentFolder objectForKey: @"name"]];
[r appendContentString: data];
[r appendContentString: @"</D:href><D:propstat>"];
[r appendContentString: @"<D:status>HTTP/1.1 200 OK</D:status>"];
[r appendContentString: @"</D:propstat><D:owner>"];
data = [NSString stringWithFormat: @"%@users/%@", baseHREF,
data = [NSString stringWithFormat: @"%@%@", baseHREF,
[currentContact objectForKey: @"c_uid"]];
[r appendContentString: data];
[r appendContentString: @"</D:owner><ownerdisplayname>"];