From: <dg...@su...> - 2009-01-27 15:41:59
|
Author: cstender Date: Tue Jan 27 16:40:39 2009 New Revision: 5235 URL: http://www.opensync.org/changeset/5235 Log: changed TRACE_ENTRY to TRACE_INTERNAL Modified: format-plugins/vformat/src/xmlformat-common.c format-plugins/vformat/src/xmlformat-recurrence.c Modified: format-plugins/vformat/src/xmlformat-common.c ============================================================================== --- format-plugins/vformat/src/xmlformat-common.c Mon Jan 26 01:28:59 2009 (r5234) +++ format-plugins/vformat/src/xmlformat-common.c Tue Jan 27 16:40:39 2009 (r5235) @@ -23,7 +23,7 @@ #include "xmlformat-common.h" -/**** ATTRIBUTE ****/ +/* Attributes */ OSyncXMLField *handle_attribute_simple_content_timestamp(OSyncXMLFormat *xmlformat, VFormatAttribute *attr, const char *name, OSyncError **error) { osync_trace(TRACE_INTERNAL, "Handling %s attribute with timestamp", name); @@ -96,7 +96,8 @@ osync_trace(TRACE_INTERNAL, "Handling %s component attribute", name); osync_xmlfield_set_key_value(xmlfield, name, vformat_attribute_get_nth_value(attr, 0)); } -/**** XML Attributes ****/ + +/* XML Attributes */ VFormatAttribute *handle_xml_attribute_simple_content(VFormat *vformat, OSyncXMLField *xmlfield, const char *name, const char *encoding) { g_assert(vformat); @@ -130,7 +131,7 @@ return handle_xml_attribute_simple_content(vformat, xmlfield, "URL", encoding); } -/*** Encoding helpers ************/ +/* Encoding helpers */ osync_bool needs_encoding(const unsigned char *tmp, const char *encoding) { int i = 0; Modified: format-plugins/vformat/src/xmlformat-recurrence.c ============================================================================== --- format-plugins/vformat/src/xmlformat-recurrence.c Mon Jan 26 01:28:59 2009 (r5234) +++ format-plugins/vformat/src/xmlformat-recurrence.c Tue Jan 27 16:40:39 2009 (r5235) @@ -157,7 +157,7 @@ const char *rule = vformat_attribute_get_nth_value(attr, 0); - osync_trace(TRACE_ENTRY, "%s(%p, %s)", __func__, xmlfield, rule); + osync_trace(TRACE_INTERNAL, "converting vcal rrule '%s' to xml", rule); int frequency_state = 0, counter = 0; char *frequency_block = NULL, *freq_mod = NULL, *duration_block = NULL; |