Mercurial Hosting > luan
view blog/src/private/tools/backup.luan @ 619:cc3a68033179
fix hosting delete logging
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 03 Jan 2016 02:03:54 -0700 |
parents | cb6c628de583 |
children | ca169567ce07 |
line wrap: on
line source
local Io = require "luan:Io" local Http = require "luan:http/Http" local Db = require "site:/lib/Db" return function() local backup = Io.uri "site:/private/local/backup.zip" backup.delete() Db.backup(backup.to_string()) Io.stdout = Http.response.text_writer() %> <html> <body> backed up to <a href="/private/local/backup.zip">/private/local/backup.zip</a> </body> </html> <% end