Commit cd5e166a authored by ben's avatar ben

Final changes for 0.9.1


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@139 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent fec33c1e
New in v0.9.1 (2002/06/19)
--------------------------
Fixed some bad C. Besides being unportable and leaking memory, it may
have lead to someone's backup directory getting deleted (?).
Tweaked some error recovery code to make it more like 0.8.0.
Improved the installation a bit.
New in v0.9.0 (2002/06/17)
--------------------------
......
INSTALLATION:
Thank you for trying rdiff-backup. To install, run:
./setup.py install
The default prefix is /usr, so files are put in /usr/bin,
/usr/share/man/, etc. An alternate prefix can be specified using the
--prefix=<prefix> option. For example:
./setup.py install --prefix=/usr/local
REQUIREMENTS:
Remember that you must have Python 2.2 or later and librsync installed
(this means that "python" and "rdiff" should be in your path). To
download, see http://www.python.org and
......@@ -11,8 +22,9 @@ For remote operation, rdiff-backup should be in installed and in the
PATH on remote system(s) (see man page for more information).
If you have the above installed, and it still doesn't work, see the
web page at http://rdiff-backup.stanford.edu for more
information.
TROUBLESHOOTING:
If you have everything installed properly, and it still doesn't work,
see the enclosed FAQ.html, the web page at
http://rdiff-backup.stanford.edu, and/or the mailing list.
......@@ -4,7 +4,7 @@ Write some better selection test cases to test new Iterate_fast func.
Considering rewriting Selection Iterate(_fast) code again.
Fix up headers on source code files, update README.
Fix remaining memory leaks in cmodule.c
---------[ Long term ]---------------------------------------
......
#!/usr/bin/env python
#
# rdiff-backup -- Mirror files while keeping incremental changes
# Version 0.9.0 released June 17, 2002
# Version 0.9.1 released June 20, 2002
# Copyright (C) 2001, 2002 Ben Escoto <bescoto@stanford.edu>
#
# This program is licensed under the GNU General Public License (GPL).
# Distributions of rdiff-backup usually include a copy of the GPL in a
# file called COPYING. The GPL is also available online at
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License as published by the Free Software Foundation,
# Inc., 675 Mass Ave, Cambridge MA 02139, USA; either version 2 of the
# License, or (at your option) any later version. Distributions of
# rdiff-backup should include a copy of the GPL in a file called
# COPYING. The GPL is also available online at
# http://www.gnu.org/copyleft/gpl.html.
#
# See http://www.stanford.edu/~bescoto/rdiff-backup for more
# information. Please send mail to me or the mailing list if you find
# bugs or have any suggestions.
# See http://rdiff-backup.stanford.edu/ for more information. Please
# send mail to me or the mailing list if you find bugs or have any
# suggestions.
import sys
import rdiff_backup.Main
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment