summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-08-09Release version 0.20.obnam-0.20Lars Wirzenius5-4/+12
2011-08-09Fix test to run even in C locale.Lars Wirzenius1-1/+1
2011-08-09Update setup.py for release.Lars Wirzenius1-1/+1
2011-08-09Update debian/changelog for release.Lars Wirzenius1-0/+6
2011-08-09Update NEWS for release.Lars Wirzenius1-1/+3
2011-08-09Bump version number.Lars Wirzenius1-1/+1
2011-08-08Add support for Unix sockets.Lars Wirzenius3-1/+17
2011-08-08Only use obnamlib.Error, get rid of obnamlib.AppException.Lars Wirzenius8-24/+18
2011-08-08Fix backup to count all files, not just backed up files.Lars Wirzenius1-2/+1
The previous behavior was confusing to users, who thought the file count was the total file count. Now it is.
2011-08-08Fix Unicode/plain string confusion from sftp listdir.Lars Wirzenius3-1/+13
This manifested itself when using root on sftp, and the live data containing filenames such as Mäkelä. sftp listdir would return a unicode string, and later on, the sftp plugin would feed that to hashlib.md5, which can only deal with plain strings. We fix the problem by forcing listdir to always return plain strings, by converting any unicode ones to plain ones in utf-8. Thanks to Tapani Tarvainen for reporting the problem and finding an easily reproducible test case.
2011-08-08Exclude hard-to-test error from coverage.Lars Wirzenius1-1/+1
2011-08-05Update NEWS about better error message for missing encryptioon.Lars Wirzenius1-0/+3
2011-08-05Make better error message if trying to use encrypted repository without ↵Lars Wirzenius1-1/+8
encryption.
2011-08-05Format ls output nicer when values are wider than minimum column width.Lars Wirzenius2-7/+42
2011-08-05Update NEWS.Lars Wirzenius1-0/+8
2011-08-05Format columns so they're all of the same width.Lars Wirzenius1-6/+25
The width for each column has a minimum, and the actual width is dependent on the widest value for a given directory. (Wider, if the widest value is wider than minimum.)
2011-08-05Don't print formatted lines at once.Lars Wirzenius1-2/+6
2011-08-05Refactor formatting of fields from formatting of whole line.Lars Wirzenius1-5/+9
2011-08-05Update README on running benchmarks and looking at results.Lars Wirzenius1-5/+23
2011-08-05Remove now-useless script.Lars Wirzenius1-15/+0
2011-08-05Fix README on running automatic checks.Lars Wirzenius1-2/+2
2011-08-05Update README's description of dependencies.Lars Wirzenius1-3/+5
2011-08-03Release version 0.19.obnam-0.19Lars Wirzenius5-3/+62
2011-08-03Bump version number.Lars Wirzenius1-1/+1
2011-08-03Convert into non-native package.Lars Wirzenius2-1/+2
2011-08-03Update debian/changelog for release.Lars Wirzenius1-0/+10
2011-08-03Update NEWS for release.Lars Wirzenius1-0/+48
2011-08-03Bump version number.Lars Wirzenius1-1/+1
2011-08-03Undo logging of Repository objects.Lars Wirzenius1-3/+0
This causes logging to be done before it's configured, which is meh.
2011-08-03Log when Repository objects are created.Lars Wirzenius1-0/+3
2011-08-03Update package description to be more useful.Lars Wirzenius1-4/+16
2011-08-02Require newer version of larch, and bump repository format.Lars Wirzenius2-3/+3
The new version of larch uses a different way to store B-tree nodes on disk, and this is incompatible with older versions, so the format bump is necessary.
2011-08-02Install obnam-benchmark as well.Lars Wirzenius1-1/+1
2011-08-02Mark benchmarks done with --use-existing (in the profile name).Lars Wirzenius1-1/+7
2011-08-02Record profile name in .seivot file.Lars Wirzenius1-0/+1
2011-08-02Add --description option.Lars Wirzenius1-0/+4
2011-08-02Fix backup plugin to log why it's excluding files, and what it's backing up.Lars Wirzenius1-3/+8
2011-08-02Ignore obnam-benchmark manpage.Lars Wirzenius1-0/+1
2011-08-02Split long line into two.Lars Wirzenius1-1/+2
2011-07-31Move idpath to larch.Lars Wirzenius5-155/+3
2011-07-30Add --results option to obnam-benchmark.Lars Wirzenius1-1/+3
2011-07-29Add note about sftp URLs for live data and related dangers.Lars Wirzenius1-0/+12
2011-07-29Add network-tests Makefile target, and fix sftp related problems in code.Lars Wirzenius7-80/+147
2011-07-29Run blackboxtest using sftp for root and repo, in network-tests.Lars Wirzenius1-0/+1
2011-07-29Fix blackboxtest to not worry about st_nlink when using sftp for live data.Lars Wirzenius1-2/+7
It currently never works for paramiko, so we should never fail because of it.
2011-07-29Fake missing stat fields for sftp.Lars Wirzenius1-1/+17
2011-07-29Change lstat test to verify all necessary fields are present.Lars Wirzenius1-2/+5
2011-07-29Differentiate restored_dir and restored url, like data and repo do.Lars Wirzenius1-10/+16
However, we can't actually restore to a non-local url, so this is just a violation of YAGNI.
2011-07-29Change use of "with fs.open(...)" to not use with.Lars Wirzenius1-3/+5
Paramiko's SFTPClient does not support the "with" protocol, at least in the version in Debian squeeze, so we can't use it.
2011-07-29Handle sftp URLs in verify plugin.Lars Wirzenius1-2/+8