(db_name)
| 216 | } |
| 217 | |
| 218 | function restore_backup(db_name) { |
| 219 | messageBox('<p> Do you want to restore this backup? </p>', 'Confirm restore', null, null, function() { |
| 220 | $.get(routes.restore_backup, {db: db_name}, function() { |
| 221 | location = routes.root; |
| 222 | }); |
| 223 | }); |
| 224 | } |
| 225 | |
| 226 | function import_db() { |
| 227 | messageBox( |
nothing calls this directly
no test coverage detected