From 9639841fd86a12c5b0fd9217c7cb8dd72cdf6d5c Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Wed, 9 Jul 2008 03:16:22 +0000 Subject: [PATCH] Monotone-Parent: 3faccfb297355b8a622a5cd6cf76be5f4134e1ec Monotone-Revision: 90c34f3f070d02780a48b3d6cb6c8b55f5610898 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2008-07-09T03:16:22 Monotone-Branch: ca.inverse.sogo --- SoObjects/SOGo/SOGoContentObject.h | 2 -- SoObjects/SOGo/SOGoContentObject.m | 15 --------------- UI/WebServerResources/UIxMailEditor.js | 3 +-- 3 files changed, 1 insertion(+), 19 deletions(-) diff --git a/SoObjects/SOGo/SOGoContentObject.h b/SoObjects/SOGo/SOGoContentObject.h index 9c7df530c..0961ae2a4 100644 --- a/SoObjects/SOGo/SOGoContentObject.h +++ b/SoObjects/SOGo/SOGoContentObject.h @@ -58,8 +58,6 @@ baseVersion: (unsigned int) _baseVersion; - (NSException *) saveContentString: (NSString *)_str; - (NSException *) delete; -- (NSException *) copyTo: (SOGoGCSFolder *) destinationFolder; -- (NSException *) moveTo: (SOGoGCSFolder *) destinationFolder; /* etag support */ diff --git a/SoObjects/SOGo/SOGoContentObject.m b/SoObjects/SOGo/SOGoContentObject.m index 111ad42b8..e3e36605c 100644 --- a/SoObjects/SOGo/SOGoContentObject.m +++ b/SoObjects/SOGo/SOGoContentObject.m @@ -213,21 +213,6 @@ 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: diff --git a/UI/WebServerResources/UIxMailEditor.js b/UI/WebServerResources/UIxMailEditor.js index b63ca9f2e..d53fa1894 100644 --- a/UI/WebServerResources/UIxMailEditor.js +++ b/UI/WebServerResources/UIxMailEditor.js @@ -359,8 +359,7 @@ function performSearch() { } if (MailEditor.currentField.value.trim().length > 0) { var urlstr = ( UserFolderURL + "Contacts/allContactSearch?search=" - + MailEditor.currentField.value ); log (urlstr); -// + escape(MailEditor.currentField.value) ); log (urlstr); + + MailEditor.currentField.value ); document.contactLookupAjaxRequest = triggerAjaxRequest(urlstr, performSearchCallback, MailEditor.currentField); }