Changesets: sogo
master ef601c04 2016-02-19 16:42 Details Diff |
Localization | ||
mod - UI/MailerUI/English.lproj/Localizable.strings | Diff File | ||
master 21dcb57c 2016-02-19 16:28 Details Diff |
Remove unrelevent #warning | ||
mod - SoObjects/Contacts/SOGoContactSourceFolder.m | Diff File | ||
master 485a9d44 2016-02-19 16:09 Details Diff |
Fix import of cn from SQL source | ||
mod - SoObjects/Contacts/NGVCard+SOGo.m | Diff File | ||
master 7c00ad71 2016-02-19 14:56 Details Diff |
Don't query content table when not required When only requesting the c_name field, limit the SQL query to the quick table. |
||
mod - SOPE/GDLContentStore/GCSFolder.m | Diff File | ||
master 95d0a18c 2016-02-19 09:07 Details Diff |
(fix) avoid truncating XML entities | ||
mod - ActiveSync/SOGoMailObject+ActiveSync.m | Diff File | ||
v2 8e94c33a 2016-02-19 09:07 Details Diff |
(fix) avoid truncating XML entities | ||
mod - ActiveSync/SOGoMailObject+ActiveSync.m | Diff File | ||
v2 8d04a837 2016-02-18 12:15 Details Diff |
Merge pull request 0000245 from zentyal/jag/html-part-not-assume-charset oc-mail: Use UTF-8 when there are parts with multiple charsets |
||
mod - OpenChange/MAPIStoreMailMessage.m | Diff File | ||
v2 d2e7fdf4 2016-02-18 05:01 Javier Amor GarcÃa Details Diff |
Tests for SOPE string-encoding-for-encoding-named-methods branch | ||
mod - Tests/Unit/GNUmakefile | Diff File | ||
add - Tests/Unit/TestNGMimeType.m | Diff File | ||
warning-removal-again 387cfb6d 2016-02-17 16:32 Patrice Levesque Details Diff |
Fix one warning: expected âstruct NSError **â but argument is of type âidâ nil is not recognized by GCC as a (NSError**), but as an (id). NULL works the same but does not spawn warnings. |
||
mod - SoObjects/Mailer/SOGoDraftObject.m | Diff File | ||
warning-removal-again ce38a9c6 2016-02-17 16:32 Patrice Levesque Details Diff |
Fix one warning: expected âstruct NSError **â but argument is of type âidâ nil is not recognized by GCC as a (NSError**), but as an (id). NULL works the same but does not spawn warnings. |
||
mod - SoObjects/Mailer/SOGoDraftObject.m | Diff File | ||
warning-removal-again f284fb71 2016-02-17 16:30 Patrice Levesque Details Diff |
Comment out sendMail method in SOGoDraftObject and replace its sole known usage by sendMailAndCopyToSent. In a 2011-09-26 commit (in Changelog.old), I understand the author wanted to phase sendMail out and replace it by sendMailAndCopyToSent. Since there are compilation warnings related to sendMail, removing the sendMail method and replacing the sole call to it seemed like the cleanest way. |
||
mod - SoObjects/Mailer/SOGoDraftObject.h | Diff File | ||
mod - SoObjects/Mailer/SOGoDraftObject.m | Diff File | ||
mod - UI/MailerUI/UIxMailEditor.m | Diff File | ||
warning-removal-again a813e388 2016-02-17 16:30 Patrice Levesque Details Diff |
Comment out sendMail method in SOGoDraftObject and replace its sole known usage by sendMailAndCopyToSent. In a 2011-09-26 commit (in Changelog.old), I understand the author wanted to phase sendMail out and replace it by sendMailAndCopyToSent. Since there are compilation warnings related to sendMail, removing the sendMail method and replacing the sole call to it seemed like the cleanest way. |
||
mod - SoObjects/Mailer/SOGoDraftObject.h | Diff File | ||
mod - SoObjects/Mailer/SOGoDraftObject.m | Diff File | ||
mod - UI/MailerUI/UIxMailEditor.m | Diff File | ||
warning-removal-again 32c146c5 2016-02-17 13:23 Patrice Levesque Details Diff |
Fix warnings; both âWORequestâ may not respond to â-httpRequestâ and no â-partsâ method found. | ||
mod - UI/Scheduler/UIxCalFolderActions.m | Diff File | ||
warning-removal-again fc9dde88 2016-02-17 13:23 Patrice Levesque Details Diff |
Fix warnings; both âWORequestâ may not respond to â-httpRequestâ and no â-partsâ method found. | ||
mod - UI/Scheduler/UIxCalFolderActions.m | Diff File | ||
warning-removal-again e3b52099 2016-02-17 13:04 Patrice Levesque Details Diff |
Fix warning: incomplete implementation of category âSOGoExtensionsâ Original method was commented out, but not its matching .h declaration; hence commenting out the .h declaration. |
||
mod - SoObjects/Appointments/iCalEntityObject+SOGo.h | Diff File | ||
warning-removal-again 281062a1 2016-02-17 13:04 Patrice Levesque Details Diff |
Fix warning: incomplete implementation of category âSOGoExtensionsâ Original method was commented out, but not its matching .h declaration; hence commenting out the .h declaration. |
||
mod - SoObjects/Appointments/iCalEntityObject+SOGo.h | Diff File | ||
warning-removal-again 40a4ea2a 2016-02-17 11:22 Patrice Levesque Details Diff |
Add missing header declarations that made the compiler spit out warnings. | ||
mod - UI/Contacts/UIxContactsListActions.h | Diff File | ||
warning-removal-again a6f698e8 2016-02-17 11:19 Patrice Levesque Details Diff |
Add missing header declarations that made the compiler spit out warnings. | ||
mod - UI/MailPartViewers/UIxMailPartICalViewer.h | Diff File | ||
warning-removal-again f55391b7 2016-02-17 11:19 Patrice Levesque Details Diff |
Add missing header declarations that made the compiler spit out warnings. | ||
mod - UI/MailPartViewers/UIxMailPartICalViewer.h | Diff File | ||
warning-removal-again c7026abe 2016-02-17 11:06 Patrice Levesque Details Diff |
Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] As previous commit, this code assumed pointers are unsigned int, for display purpose. Replaced the cast with the native '%p' token from NSMutableString::appendFormat that's provided for pointer address output. |
||
mod - SoObjects/Appointments/MSExchangeFreeBusy.m | Diff File | ||
warning-removal-again c1095a5e 2016-02-17 11:06 Patrice Levesque Details Diff |
Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] As previous commit, this code assumed pointers are unsigned int, for display purpose. Replaced the cast with the native '%p' token from NSMutableString::appendFormat that's provided for pointer address output. |
||
mod - SoObjects/Appointments/MSExchangeFreeBusy.m | Diff File | ||
warning-removal-again 9121b04d 2016-02-17 11:06 Patrice Levesque Details Diff |
Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Those are all log formatting routines that assume pointers are unsigned int, for display purpose. Replace the cast with the native '%p' token from NSString::stringWithFormat that's provided for pointer address output. |
||
mod - SoObjects/SOGo/SOGoObject.m | Diff File | ||
warning-removal-again 022fd814 2016-02-17 11:06 Patrice Levesque Details Diff |
Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Those are all log formatting routines that assume pointers are unsigned int, for display purpose. Replace the cast with the native '%p' token from NSString::stringWithFormat that's provided for pointer address output. |
||
mod - SoObjects/SOGo/SOGoObject.m | Diff File | ||
warning-removal-again 375a53dc 2016-02-17 11:05 Patrice Levesque Details Diff |
Fix warning: distinct Objective-C type in return Method is supposed to return a WOResponse pointer, but currently returns a NSException pointer; typecast the return value, just like the archiveUIDs method does. |
||
mod - SoObjects/Mailer/SOGoMailFolder.m | Diff File | ||
warning-removal-again 478b3131 2016-02-17 11:05 Patrice Levesque Details Diff |
Fix warning: distinct Objective-C type in return Method is supposed to return a WOResponse pointer, but currently returns a NSException pointer; typecast the return value, just like the archiveUIDs method does. |
||
mod - SoObjects/Mailer/SOGoMailFolder.m | Diff File |