Changeset 3362
- Timestamp:
- 06/14/08 15:56:06 (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) (3 diffs)
- trunk/opensync/engine/opensync_engine.c (modified) (1 diff)
- trunk/opensync/merger/opensync-merger_internals.h (modified) (1 diff)
- trunk/opensync/merger/opensync_merger.c (modified) (1 diff)
- trunk/opensync/merger/opensync_xmlfield.c (deleted)
- trunk/opensync/merger/opensync_xmlfield.h (deleted)
- trunk/opensync/merger/opensync_xmlfield_internals.h (deleted)
- trunk/opensync/merger/opensync_xmlfieldlist.c (deleted)
- trunk/opensync/merger/opensync_xmlfieldlist.h (deleted)
- trunk/opensync/merger/opensync_xmlfieldlist_internals.h (deleted)
- trunk/opensync/merger/opensync_xmlformat.c (deleted)
- trunk/opensync/merger/opensync_xmlformat.h (deleted)
- trunk/opensync/merger/opensync_xmlformat_internals.h (deleted)
- trunk/opensync/opensync-merger.h (modified) (1 diff)
- trunk/opensync/opensync-xmlformat.h (added)
- trunk/opensync/xmlformat (added)
- trunk/opensync/xmlformat/opensync-xmlformat_internals.h (added)
- trunk/opensync/xmlformat/opensync_xmlfield.c (added)
- trunk/opensync/xmlformat/opensync_xmlfield.h (added)
- trunk/opensync/xmlformat/opensync_xmlfield_internals.h (added)
- trunk/opensync/xmlformat/opensync_xmlfieldlist.c (added)
- trunk/opensync/xmlformat/opensync_xmlfieldlist.h (added)
- trunk/opensync/xmlformat/opensync_xmlfieldlist_internals.h (added)
- trunk/opensync/xmlformat/opensync_xmlformat.c (added)
- trunk/opensync/xmlformat/opensync_xmlformat.h (added)
- trunk/opensync/xmlformat/opensync_xmlformat_internals.h (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/formats/plain.c
r2796 r3362 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
r2499 r3362 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
r2070 r3362 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
r3315 r3362 44 44 merger/opensync_capability.c 45 45 merger/opensync_merger.c 46 merger/opensync_xmlfield.c47 merger/opensync_xmlfieldlist.c48 merger/opensync_xmlformat.c46 xmlformat/opensync_xmlfield.c 47 xmlformat/opensync_xmlfieldlist.c 48 xmlformat/opensync_xmlformat.c 49 49 module/opensync_module.c 50 50 plugin/opensync_plugin_authentication.c … … 86 86 mapping 87 87 merger 88 xmlformat 88 89 module 89 90 plugin … … 110 111 opensync-mapping.h 111 112 opensync-merger.h 113 opensync-xmlformat.h 112 114 opensync-module.h 113 115 opensync-plugin.h trunk/opensync/engine/opensync_engine.c
r3349 r3362 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/merger/opensync-merger_internals.h
r2541 r3362 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
r3174 r3362 26 26 #include "opensync-merger.h" 27 27 #include "opensync-merger_internals.h" 28 29 #include "opensync-xmlformat.h" 30 #include "../xmlformat/opensync-xmlformat_internals.h" 28 31 29 32 /** trunk/opensync/opensync-merger.h
r3172 r3362 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
