| | 29 | * Creole Translation |
| | 30 | * http://translate.hfoss.eu/wiki/Translation |
| | 31 | |
| | 32 | * Migrating data from Live to Dev for better testing |
| | 33 | * CSV (beware DB locks!) |
| | 34 | {{{ |
| | 35 | python web2py.py -S prod -M |
| | 36 | db.export_to_csv_file(open('db.csv','wb')) |
| | 37 | Ctrl+D |
| | 38 | python web2py.py -S dev -M |
| | 39 | db.import_from_csv_file(open('db.csv','rb')) |
| | 40 | db.commit() |
| | 41 | Ctrl+D |
| | 42 | }}} |
| | 43 | * Web services (better to avoid locks, however needs to be resource by resource) |
| | 44 | * migrate the locations first (using the xml interface), you can later migrate the orgs and offices together (through JOIN) |
| | 45 | |
| | 46 | * Convert Server to MySQL (Dan) |
| | 47 | |