Changeset 3364
- Timestamp:
- 06/14/08 19:06:25 (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 (copied) (copied from trunk/opensync/merger/opensync_xmlfield.c)
- trunk/opensync/merger/opensync_xmlfield.h (copied) (copied from trunk/opensync/merger/opensync_xmlfield.h)
- trunk/opensync/merger/opensync_xmlfield_internals.h (copied) (copied from trunk/opensync/merger/opensync_xmlfield_internals.h)
- trunk/opensync/merger/opensync_xmlfieldlist.c (copied) (copied from trunk/opensync/merger/opensync_xmlfieldlist.c)
- trunk/opensync/merger/opensync_xmlfieldlist.h (copied) (copied from trunk/opensync/merger/opensync_xmlfieldlist.h)
- trunk/opensync/merger/opensync_xmlfieldlist_internals.h (copied) (copied from trunk/opensync/merger/opensync_xmlfieldlist_internals.h)
- trunk/opensync/merger/opensync_xmlformat.c (copied) (copied from trunk/opensync/merger/opensync_xmlformat.c)
- trunk/opensync/merger/opensync_xmlformat.h (copied) (copied from trunk/opensync/merger/opensync_xmlformat.h)
- trunk/opensync/merger/opensync_xmlformat_internals.h (copied) (copied from trunk/opensync/merger/opensync_xmlformat_internals.h)
- trunk/opensync/opensync-merger.h (modified) (1 diff)
- trunk/opensync/opensync-xmlformat.h (deleted)
- trunk/opensync/xmlformat (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/formats/plain.c
r3362 r3364 24 24 #include <opensync/opensync-serializer.h> 25 25 #include <opensync/opensync-format.h> 26 #include <opensync/opensync- xmlformat.h>26 #include <opensync/opensync-merger.h> 27 27 #include <glib.h> 28 28 trunk/formats/xmlformat-doc.c
r3362 r3364 24 24 #include <opensync/opensync.h> 25 25 #include <opensync/opensync_internals.h> 26 #include <opensync/opensync- xmlformat.h>26 #include <opensync/opensync-merger.h> 27 27 #include <opensync/opensync-format.h> 28 28 trunk/formats/xmlformat.h
r3362 r3364 30 30 #include <opensync/opensync.h> 31 31 #include <opensync/opensync_internals.h> 32 #include <opensync/opensync- xmlformat.h>32 #include <opensync/opensync-merger.h> 33 33 #include <opensync/opensync-serializer.h> 34 34 #include <opensync/opensync-format.h> trunk/opensync/CMakeLists.txt
r3362 r3364 44 44 merger/opensync_capability.c 45 45 merger/opensync_merger.c 46 xmlformat/opensync_xmlfield.c47 xmlformat/opensync_xmlfieldlist.c48 xmlformat/opensync_xmlformat.c46 merger/opensync_xmlfield.c 47 merger/opensync_xmlfieldlist.c 48 merger/opensync_xmlformat.c 49 49 module/opensync_module.c 50 50 plugin/opensync_plugin_authentication.c … … 86 86 mapping 87 87 merger 88 xmlformat89 88 module 90 89 plugin … … 111 110 opensync-mapping.h 112 111 opensync-merger.h 113 opensync-xmlformat.h114 112 opensync-module.h 115 113 opensync-plugin.h trunk/opensync/engine/opensync_engine.c
r3362 r3364 31 31 #include "opensync-archive.h" 32 32 #include "opensync-merger.h" 33 #include "opensync-xmlformat.h"34 33 35 34 #include "opensync_obj_engine.h" trunk/opensync/merger/opensync-merger_internals.h
r3362 r3364 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" 30 33 #include "opensync_merger_internals.h" 31 34 trunk/opensync/merger/opensync_merger.c
r3362 r3364 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"31 28 32 29 /** trunk/opensync/opensync-merger.h
r3362 r3364 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" 28 31 #include "merger/opensync_merger.h" 29 32
