summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-01 16:56:31 +0000
committercvs2svn <cvs2svn@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-01 16:56:31 +0000
commit98f1adb1ea1a08191e11980649bd9aaa9320aab7 (patch)
tree63f3b05841ec4f29cb2e6756f320c9935e021119
parentcf1a3560bb656f65f328b90545f6deade943ae0a (diff)
downloadrdiff-backup-r1-2-3.tar.gz
This commit was manufactured by cvs2svn to create tag 'r1-2-3'.r1-2-3
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/tags/r1-2-3@989 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/CHANGELOG7
-rw-r--r--rdiff-backup/Windows-README.txt15
-rw-r--r--rdiff-backup/rdiff_backup/fs_abilities.py12
3 files changed, 0 insertions, 34 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index a74494c..cb0ed0b 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -1,10 +1,3 @@
-New in v1.2.4 (2009/01/01)
----------------------------
-
-Disable escaping trailing spaces and periods for now since it broke remote
-restores. Thanks to Dominic for reporting the issue. (Andrew Ferguson)
-
-
New in v1.2.3 (2008/12/28)
---------------------------
diff --git a/rdiff-backup/Windows-README.txt b/rdiff-backup/Windows-README.txt
index e86e81e..7fa5ae7 100644
--- a/rdiff-backup/Windows-README.txt
+++ b/rdiff-backup/Windows-README.txt
@@ -9,21 +9,6 @@ your PATH. Everything is included in the binary (including Python) for local
operation. For remote operation, you will need to install a Windows SSH
program. You will also need to install rdiff-backup on the remote system(s).
-You will need the Microsoft Visual C++ 2008 redistributables. If these are
-not installed on your system, rdiff-backup will be unable to run and Windows
-will display a message such as "The system cannot execute the specified
-program". To install the redistributables for all users, install the package
-available from Microsoft.com (search for "visual c 2008 redistributable").
-
-Alternatively, you can install the redistributable in a "side-by-side"
-configuration, which does not require administrator privelges. Simply
-download the DLL package from:
-http://download.savannah.gnu.org/releases/rdiff-backup/Microsoft.VC90.zip
-and copy the four enclosed files to the same directory as rdiff-backup.exe.
-
-You will need to follow either method only once.
-
-
ADDITIONAL ISSUES:
Currently, rdiff-backup's --include and --exclude options do not support
diff --git a/rdiff-backup/rdiff_backup/fs_abilities.py b/rdiff-backup/rdiff_backup/fs_abilities.py
index d303d7a..aeb0125 100644
--- a/rdiff-backup/rdiff_backup/fs_abilities.py
+++ b/rdiff-backup/rdiff_backup/fs_abilities.py
@@ -571,10 +571,6 @@ class FSAbilities:
self.escape_dos_devices = 1
def set_escape_trailing_spaces(self, subdir):
- # Disable this for 1.2.4
- self.escape_trailing_spaces = 0
- return
-
"""If file with trailing space can't be created, escape such files"""
try:
space_rp = subdir.append("test ")
@@ -701,10 +697,6 @@ class BackupSetGlobals(SetGlobals):
def set_must_escape_trailing_spaces(self, rbdir):
"""If local ets or src ets, then must escape """
- # Disable this for 1.2.4
- SetConnections.UpdateGlobal('must_escape_trailing_spaces', 0)
- return
-
try:
space_rp = rbdir.append("test ")
space_rp.touch()
@@ -835,10 +827,6 @@ class RestoreSetGlobals(SetGlobals):
def set_must_escape_trailing_spaces(self, rbdir):
"""If local ets or src ets, then must escape """
- # Disable this for 1.2.4
- SetConnections.UpdateGlobal('must_escape_trailing_spaces', 0)
- return
-
if getattr(self, "src_fsa", None) is not None:
src_ets = self.src_fsa.escape_trailing_spaces
else: