Changeset 3362

Show
Ignore:
Timestamp:
06/14/08 15:56:06 (3 months ago)
Author:
bricks
Message:

Moved the xmlformat code from merger into a seperated module

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/formats/plain.c

    r2796 r3362  
    2424#include <opensync/opensync-serializer.h> 
    2525#include <opensync/opensync-format.h> 
    26 #include <opensync/opensync-merger.h> 
     26#include <opensync/opensync-xmlformat.h> 
    2727#include <glib.h> 
    2828 
  • trunk/formats/xmlformat-doc.c

    r2499 r3362  
    2424#include <opensync/opensync.h> 
    2525#include <opensync/opensync_internals.h> 
    26 #include <opensync/opensync-merger.h> 
     26#include <opensync/opensync-xmlformat.h> 
    2727#include <opensync/opensync-format.h> 
    2828 
  • trunk/formats/xmlformat.h

    r2070 r3362  
    3030#include <opensync/opensync.h> 
    3131#include <opensync/opensync_internals.h> 
    32 #include <opensync/opensync-merger.h> 
     32#include <opensync/opensync-xmlformat.h> 
    3333#include <opensync/opensync-serializer.h> 
    3434#include <opensync/opensync-format.h> 
  • trunk/opensync/CMakeLists.txt

    r3315 r3362  
    4444   merger/opensync_capability.c 
    4545   merger/opensync_merger.c 
    46    merger/opensync_xmlfield.c 
    47    merger/opensync_xmlfieldlist.c 
    48    merger/opensync_xmlformat.c 
     46   xmlformat/opensync_xmlfield.c 
     47   xmlformat/opensync_xmlfieldlist.c 
     48   xmlformat/opensync_xmlformat.c 
    4949   module/opensync_module.c 
    5050   plugin/opensync_plugin_authentication.c 
     
    8686  mapping 
    8787  merger 
     88  xmlformat 
    8889  module 
    8990  plugin 
     
    110111   opensync-mapping.h 
    111112   opensync-merger.h 
     113   opensync-xmlformat.h 
    112114   opensync-module.h 
    113115   opensync-plugin.h 
  • trunk/opensync/engine/opensync_engine.c

    r3349 r3362  
    3131#include "opensync-archive.h" 
    3232#include "opensync-merger.h" 
     33#include "opensync-xmlformat.h" 
    3334 
    3435#include "opensync_obj_engine.h" 
  • trunk/opensync/merger/opensync-merger_internals.h

    r2541 r3362  
    2828#include "opensync_capabilities_internals.h" 
    2929#include "opensync_capability_internals.h" 
    30 #include "opensync_xmlformat_internals.h" 
    31 #include "opensync_xmlfield_internals.h" 
    32 #include "opensync_xmlfieldlist_internals.h" 
    3330#include "opensync_merger_internals.h" 
    3431 
  • trunk/opensync/merger/opensync_merger.c

    r3174 r3362  
    2626#include "opensync-merger.h" 
    2727#include "opensync-merger_internals.h" 
     28 
     29#include "opensync-xmlformat.h" 
     30#include "../xmlformat/opensync-xmlformat_internals.h" 
    2831 
    2932/** 
  • trunk/opensync/opensync-merger.h

    r3172 r3362  
    2626#include "merger/opensync_capabilities.h" 
    2727#include "merger/opensync_capability.h" 
    28 #include "merger/opensync_xmlformat.h" 
    29 #include "merger/opensync_xmlfield.h" 
    30 #include "merger/opensync_xmlfieldlist.h" 
    3128#include "merger/opensync_merger.h" 
    3229