From 2813afdc4608d88b31f841f1526b2b5ab7fa7f8a Mon Sep 17 00:00:00 2001 From: bescoto Date: Tue, 25 Oct 2005 06:36:04 +0000 Subject: update to no-compression-regexp git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r1-0@657 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109 --- rdiff-backup/CHANGELOG | 6 ++++++ rdiff-backup/rdiff-backup.1 | 6 +++--- rdiff-backup/rdiff_backup/Globals.py | 5 +++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG index 47ad377..63fd5d3 100644 --- a/rdiff-backup/CHANGELOG +++ b/rdiff-backup/CHANGELOG @@ -1,3 +1,9 @@ +New in v1.0.3 (????/??/??) +-------------------------- + +Applied Alec Berryman's patch to update the no-compression regexp. + + New in v1.0.2 (2005/10/24) -------------------------- diff --git a/rdiff-backup/rdiff-backup.1 b/rdiff-backup/rdiff-backup.1 index f338777..2c4ffeb 100644 --- a/rdiff-backup/rdiff-backup.1 +++ b/rdiff-backup/rdiff-backup.1 @@ -269,9 +269,9 @@ volume can contain compressed and uncompressed increments, so using this option inconsistently is fine. .TP .B "--no-compression-regexp " regexp -Do not compress increments based on files whose filenames match regexp. -The default is -"(?i).*\\.(gz|z|bz|bz2|tgz|zip|rpm|deb|jpg|gif|png|jp2|mp3|ogg|avi|wmv|mpeg|mpg|rm|mov)$" +Do not compress increments based on files whose filenames match +regexp. The default includes many common audiovisual and archive +files, and may be found in Globals.py. .TP .B --no-file-statistics This will disable writing to the file_statistics file in the diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py index 9a34238..076c662 100644 --- a/rdiff-backup/rdiff_backup/Globals.py +++ b/rdiff-backup/rdiff_backup/Globals.py @@ -167,8 +167,9 @@ compression = 1 # case-insensitive regular expression won't be compressed (applies # to .snapshots and .diffs). The second below will be the # compiled version of the first. -no_compression_regexp_string = "(?i).*\\.(gz|z|bz|bz2|tgz|zip|rpm|deb|" \ - "jpg|gif|png|jp2|mp3|ogg|avi|wmv|mpeg|mpg|rm|mov|flac|shn)$" +no_compression_regexp_string = ("(?i).*\\.(gz|z|bz|bz2|tgz|zip|rpm|deb|" + "jpg|jpeg|gif|png|jp2|mp3|ogg|avi|wmv|mpeg|mpg|rm|mov|flac|shn|pgp|" + "gpg|rz|lzh|zoo|lharc|rar|arj|asc)$") no_compression_regexp = None # If true, filelists and directory statistics will be split on -- cgit v1.2.1