There are a few supported protocols like
file://
ssh://
ftp://
which need to be specified in the target URI. MAny people seem to forget about
file:// when they create local backups. In that case the parser should say:
Target URI is missing a protocol. Backups to local destinations require file://
as protocol.
This makes parsing much easier as we can parse the target URI simply like:
if file:// then ...
elseif ssh:// then ...
elseif ftp:// then ...
else showError()
Original issue reported on code.google.com by rst...@gmail.com on 3 Nov 2012 at 2:38
Original issue reported on code.google.com by
rst...@gmail.com
on 3 Nov 2012 at 2:38