Commit d47848c5 authored by ben's avatar ben

Few miscellaneous changes of usual kind


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@179 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent bed0bb6f
New in v0.9.5 (2002/08/07)
New in v0.9.5 (2002/08/09)
--------------------------
Fixed --verbosity option (now both -v and --verbosity work). Thanks
to Chris Dumont for report.
****** IMPORTANT ****** Fixed serious permissions bug found by Robert
Weber. Previous versions in the 0.9.x branch would throw away high
bit permissions (like the setuid and setuid bits). This would be
especially bad when running with the --change-source-perms operation.
Anyone running 0.9.0 - 0.9.4 should upgrade immediately.
Complain about --change-source-perms when running as root, as this
option should not be necessary then.
Fixed bug with --windows-mode. Thanks to Chris Grindstaff for report.
New in v0.9.4 (2002/07/24)
--------------------------
......
Fix --windows-mode and FilenameMapping in rpath.py. Bug reported by
Chris Grindstaff.
Check on --verbosity.
Write some better selection test cases to test new Iterate_fast func.
---------[ Long term ]---------------------------------------
......
#!/usr/bin/env python
# rdiff-backup -- Mirror files while keeping incremental changes
# Version $version released June 24, 2002
# Version $version released August 9, 2002
# Copyright (C) 2001, 2002 Ben Escoto <bescoto@stanford.edu>
#
# This program is licensed under the GNU General Public License (GPL).
......
......@@ -623,6 +623,10 @@ insensitive), then this prefix will be removed and any character in
the string can be replaced with an upper- or lowercase version of
itself.
Remember that you may need to quote these characters when typing them
into a shell, so the shell does not interpret the globbing patterns
before rdiff-backup sees them.
The
.BI "--exclude " pattern
option matches a file iff:
......@@ -658,7 +662,7 @@ For example,
.PP
.RE
matches /usr/local, /usr/local/lib, and /usr/local/lib/netscape. It
is the same as --exclude /usr/local --exclude /usr/local/**.
is the same as --exclude /usr/local --exclude '/usr/local/**'.
.PP
.RS
.B --include
......@@ -672,7 +676,7 @@ that included subdirectories have somewhere to go. Finally,
.PP
.RS
.B --include
ignorecase:/usr/[a-z0-9]foo/*/**.py
ignorecase:'/usr/[a-z0-9]foo/*/**.py'
.PP
.RE
would match a file like /usR/5fOO/hello/there/world.py. If it did
......
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