Changes between Version 4 and Version 5 of BluePrint/Synchronisation


Ignore:
Timestamp:
12/22/08 23:43:35 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/Synchronisation

    v4 v5  
    2626 * http://groups.google.com/group/web2py/browse_thread/thread/7d639c98b5b8dcd2/c0fe17ccbdd12eb7
    2727
    28 There is a 1-table example appliance which has this functionality (however the download seems to be corrupted):
     28{{{
     29import uuid
     30SQLField('uuid',default=str(uuid.uuid4()))
     31}}}
     32
     33There is a simple 1-table example appliance which has the ability to do syncs via XML-RPC:
    2934 * http://mdp.cti.depaul.edu/appliances/default/download/app.source.312926207134.txt
    3035
     36We can use CSV to do database synchronization:
     37 * http://groups.google.com/group/web2py/browse_thread/thread/be927ccf4d9745d2/637e45ccc2cf2583
     38 * http://groups.google.com/group/web2py/browse_thread/thread/55d923a51eca2c90
     39
     40