summaryrefslogtreecommitdiff
path: root/camel/camel-debug.h
Commit message (Collapse)AuthorAgeFilesLines
* Update API documentation.Matthew Barnes2012-08-111-3/+5
|
* Move e_pointer_tracker to camelMilan Crha2012-07-261-0/+23
| | | | Thus it can be used in camel (and elsewhere) again.
* Coding style cleanups.Matthew Barnes2010-09-131-4/+4
|
* Add "Since: 2.32" doc tags to new symbols.Matthew Barnes2010-08-281-0/+2
|
* Update API documentation.Matthew Barnes2010-07-111-3/+6
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-081-0/+34
|
* Lock down Camel headers.Matthew Barnes2010-04-021-1/+5
| | | | | Henceforth only <camel/camel.h> may be included from outside of Camel. This also applies to Camel's own provider modules.
* Remove some deprecated API from camel.Matthew Barnes2010-03-311-4/+0
| | | | This bumps the libcamel soname to 15.0.0.
* Prefer GLib basic types over C types.Matthew Barnes2009-05-281-3/+3
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-271-2/+2
|
* ** Camel Reference Manual improvements: Tag more symbols as deprecated.Matthew Barnes2008-07-251-1/+2
| | | | | | | | | | | | | | | 2008-07-25 Matthew Barnes <mbarnes@redhat.com> ** Camel Reference Manual improvements: Tag more symbols as deprecated. The documentation already describes them as such. * camel/camel-debug.h (camel_verbose_debug): * camel/camel-store.h (CAMEL_STORE_FOLDER_INFO_FAST): * camel/camel-store.h (camel_folder_info_build): svn path=/trunk/; revision=9186
* fixed copyright noticesJeffrey Stedfast2008-06-201-1/+1
| | | | svn path=/trunk/; revision=9009
* reverted rev 8210 which just changed whitespace indentJeffrey Stedfast2008-05-071-2/+2
| | | | svn path=/trunk/; revision=8759
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-141-2/+2
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=8210
* Fix FSF address (Tobias Mueller, #470445)Ross Burton2007-08-281-1/+1
| | | | svn path=/trunk/; revision=7999
* ** Fixes bug #418852Matthew Barnes2007-04-281-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-04-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #418852 * Note, these changes touch almost every file in Camel. * Replace C++ declaration guards (extern "C" { ... }) with G_BEGIN_DECLS / G_END_DECLS, or add them to headers with no declaration guards at all. * Use GLib's i18n support instead of Camel's (now deprecated). * Use quotes and brackets consistently in #include directives. * Remove CAMEL_EXPLICIT_TRANSLATION_DOMAIN from Makefiles. * Resurrect Camel's API documentation. * Fix documentation warnings identified by Gtk-Doc. * camel.h: Expose Camel's entire "core" (non-provider) API. * camel-i18n.h: Deprecate this API. Use GLib's i18n support instead. * camel-folder.h (camel_folder_get_message_flags): * camel-folder.h (camel_folder_set_message_flags): * camel-folder.h (camel_folder_get_message_user_flag): * camel-folder.h (camel_folder_set_message_user_flag): * camel-folder.h (camel_folder_get_message_user_tag): * camel-folder.h (camel_folder_set_message_user_tag): * camel-folder.h (camel_folder_get_unread_message_count): * camel-folder.h (camel_folder_ref_message_info): Add deprecation guards around these function declarations. svn path=/trunk/; revision=7720
* Modify License to LGPLHarish Krishnaswamy2005-08-311-3/+3
|
* added some debug to dump the whole folderinfo tree if store:folder_info isNot Zed2004-03-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | 2004-03-30 Not Zed <NotZed@Ximian.com> * camel-store.c (camel_store_get_folder_info): added some debug to dump the whole folderinfo tree if store:folder_info is set. * providers/imapp/camel-imapp-driver.c: #if 0 out some code, to kill warnings. * camel-url-scanner.c: include ctype.h for isspace (wonder if it should use utf8 funcs?). 2004-03-29 Not Zed <NotZed@Ximian.com> ** See #56146. * providers/imap/camel-imap-store.c (get_folders): check the top-level folders list for duplicates as well. (get_folders_add_folders): split out the folder return merging code from get_folders. Absolute mess of crap to deal with more busted servers. * camel-debug.c (camel_debug_start, camel_debug_end): some helpers to wrap debug output for atomicicity.
* use camel debug to add some debug here.Not Zed2004-03-231-0/+46
2004-03-23 Not Zed <NotZed@Ximian.com> * camel-exception.c (camel_exception_setv): use camel debug to add some debug here. * camel.c (camel_init): call camel_debug_init(). * camel-debug.c (camel_debug_init, camel_debug): new util stuff for extended debug options. * providers/imap/camel-imap-folder.c (imap_get_message): if we're supposed to be online, check we are online before proceeding. Actually major restructure so we re-try the fetch a couple of times first before failing. i.e. silent reconnect. See #55381.