Changeset 3365
- Timestamp:
- 06/14/08 19:27:34 (3 months ago)
- Files:
-
- trunk/formats/plain.c (modified) (1 diff)
- trunk/formats/xmlformat-doc.c (modified) (1 diff)
- trunk/formats/xmlformat.h (modified) (1 diff)
- trunk/opensync/CMakeLists.txt (modified) (4 diffs)
- trunk/opensync/engine/opensync_engine.c (modified) (1 diff)
- trunk/opensync/engine/opensync_obj_engine.c (modified) (1 diff)
- trunk/opensync/merger/opensync-merger_internals.h (modified) (1 diff)
- trunk/opensync/merger/opensync_merger.c (modified) (2 diffs)
- trunk/opensync/opensync-merger.h (modified) (1 diff)
- trunk/opensync/xmlformat (added)
- trunk/opensync/xmlformat/opensync_xmlfield.c (moved) (moved from trunk/opensync/merger/opensync_xmlfield.c) (1 diff, 1 prop)
- trunk/opensync/xmlformat/opensync_xmlfield.h (moved) (moved from trunk/opensync/merger/opensync_xmlfield.h) (1 prop)
- trunk/opensync/xmlformat/opensync_xmlfield_internals.h (moved) (moved from trunk/opensync/merger/opensync_xmlfield_internals.h) (1 prop)
- trunk/opensync/xmlformat/opensync_xmlfieldlist.c (moved) (moved from trunk/opensync/merger/opensync_xmlfieldlist.c) (1 diff, 1 prop)
- trunk/opensync/xmlformat/opensync_xmlfieldlist.h (moved) (moved from trunk/opensync/merger/opensync_xmlfieldlist.h) (1 prop)
- trunk/opensync/xmlformat/opensync_xmlfieldlist_internals.h (moved) (moved from trunk/opensync/merger/opensync_xmlfieldlist_internals.h) (1 prop)
- trunk/opensync/xmlformat/opensync_xmlformat.c (moved) (moved from trunk/opensync/merger/opensync_xmlformat.c) (1 diff, 1 prop)
- trunk/opensync/xmlformat/opensync_xmlformat.h (moved) (moved from trunk/opensync/merger/opensync_xmlformat.h) (1 prop)
- trunk/opensync/xmlformat/opensync_xmlformat_internals.h (moved) (moved from trunk/opensync/merger/opensync_xmlformat_internals.h) (1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/formats/plain.c
r3364 r3365 24 24 #include <opensync/opensync-serializer.h> 25 25 #include <opensync/opensync-format.h> 26 #include <opensync/opensync- merger.h>26 #include <opensync/opensync-xmlformat.h> 27 27 #include <glib.h> 28 28 trunk/formats/xmlformat-doc.c
r3364 r3365 24 24 #include <opensync/opensync.h> 25 25 #include <opensync/opensync_internals.h> 26 #include <opensync/opensync- merger.h>26 #include <opensync/opensync-xmlformat.h> 27 27 #include <opensync/opensync-format.h> 28 28 trunk/formats/xmlformat.h
r3364 r3365 30 30 #include <opensync/opensync.h> 31 31 #include <opensync/opensync_internals.h> 32 #include <opensync/opensync- merger.h>32 #include <opensync/opensync-xmlformat.h> 33 33 #include <opensync/opensync-serializer.h> 34 34 #include <opensync/opensync-format.h> trunk/opensync/CMakeLists.txt
r3364 r3365 44 44 merger/opensync_capability.c 45 45 merger/opensync_merger.c 46 merger/opensync_xmlfield.c47 merger/opensync_xmlfieldlist.c48 merger/opensync_xmlformat.c49 46 module/opensync_module.c 50 47 plugin/opensync_plugin_authentication.c … … 58 55 plugin/opensync_sink.c 59 56 version/opensync_version.c 57 xmlformat/opensync_xmlfield.c 58 xmlformat/opensync_xmlfieldlist.c 59 xmlformat/opensync_xmlformat.c 60 60 ) 61 61 … … 89 89 plugin 90 90 version 91 xmlforrmat 91 92 DESTINATION ${OPENSYNC_INCLUDE_DIR}/opensync 92 93 PATTERN "*/*_internals.h" EXCLUDE … … 116 117 opensync-time.h 117 118 opensync-version.h 119 opensync-xmlformat.h 118 120 DESTINATION ${OPENSYNC_INCLUDE_DIR}/opensync ) 119 121 trunk/opensync/engine/opensync_engine.c
r3364 r3365 31 31 #include "opensync-archive.h" 32 32 #include "opensync-merger.h" 33 #include "opensync-xmlformat.h" 33 34 34 35 #include "opensync_obj_engine.h" trunk/opensync/engine/opensync_obj_engine.c
r3321 r3365 31 31 #include "opensync-merger.h" 32 32 #include "opensync-plugin.h" 33 #include "opensync-xmlformat.h" 33 34 34 35 #include "opensync_sink_engine_internals.h" trunk/opensync/merger/opensync-merger_internals.h
r3364 r3365 28 28 #include "opensync_capabilities_internals.h" 29 29 #include "opensync_capability_internals.h" 30 #include "opensync_xmlformat_internals.h"31 #include "opensync_xmlfield_internals.h"32 #include "opensync_xmlfieldlist_internals.h"33 30 #include "opensync_merger_internals.h" 34 31 trunk/opensync/merger/opensync_merger.c
r3364 r3365 24 24 #include "opensync_internals.h" 25 25 26 #include "opensync-xmlformat.h" 27 /* FIXME: osync_merge_merge() requires direct xmlNode access -> dirty! */ 28 #include "../xmlformat/opensync-xmlformat_internals.h" 29 26 30 #include "opensync-merger.h" 27 31 #include "opensync-merger_internals.h" 32 28 33 29 34 /** … … 126 131 ret = strcmp(osync_xmlfield_get_name(new_cur), osync_xmlfield_get_name(old_cur)); 127 132 if(ret < 0) { 128 if( new_cur->next!= NULL) {133 if(osync_xmlfield_get_next(new_cur) != NULL) { 129 134 new_cur = osync_xmlfield_get_next(new_cur); 130 135 continue; trunk/opensync/opensync-merger.h
r3364 r3365 26 26 #include "merger/opensync_capabilities.h" 27 27 #include "merger/opensync_capability.h" 28 #include "merger/opensync_xmlformat.h"29 #include "merger/opensync_xmlfield.h"30 #include "merger/opensync_xmlfieldlist.h"31 28 #include "merger/opensync_merger.h" 32 29 trunk/opensync/xmlformat/opensync_xmlfield.c
- Property svn:mergeinfo set
r3364 r3365 24 24 #include "opensync_internals.h" 25 25 26 #include "opensync- merger.h"27 #include "opensync- merger_internals.h"26 #include "opensync-xmlformat.h" 27 #include "opensync-xmlformat_internals.h" 28 28 29 29 /** trunk/opensync/xmlformat/opensync_xmlfield.h
- Property svn:mergeinfo set
trunk/opensync/xmlformat/opensync_xmlfield_internals.h
- Property svn:mergeinfo set
trunk/opensync/xmlformat/opensync_xmlfieldlist.c
- Property svn:mergeinfo set
r3364 r3365 24 24 #include "opensync_internals.h" 25 25 26 #include "opensync- merger.h"27 #include "opensync- merger_internals.h"26 #include "opensync-xmlformat.h" 27 #include "opensync-xmlformat_internals.h" 28 28 29 29 /** trunk/opensync/xmlformat/opensync_xmlfieldlist.h
- Property svn:mergeinfo set
trunk/opensync/xmlformat/opensync_xmlfieldlist_internals.h
- Property svn:mergeinfo set
trunk/opensync/xmlformat/opensync_xmlformat.c
- Property svn:mergeinfo set
r3364 r3365 24 24 #include "opensync_internals.h" 25 25 26 #include "opensync- merger.h"27 #include "opensync- merger_internals.h"26 #include "opensync-xmlformat.h" 27 #include "opensync-xmlformat_internals.h" 28 28 29 29 /** trunk/opensync/xmlformat/opensync_xmlformat.h
- Property svn:mergeinfo set
trunk/opensync/xmlformat/opensync_xmlformat_internals.h
- Property svn:mergeinfo set
