/[rdiff-backup]/rdiff-backup/rdiff_backup/FilenameMapping.py
ViewVC logotype

Diff of /rdiff-backup/rdiff_backup/FilenameMapping.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by bescoto, Mon Jun 30 03:00:17 2003 UTC revision 1.9 by bescoto, Wed Nov 23 23:16:32 2005 UTC
# Line 32  handle that error.) Line 32  handle that error.)
32  import re, types  import re, types
33  import Globals, log, rpath  import Globals, log, rpath
34    
 max_filename_length = 255  
   
35  # If true, enable character quoting, and set characters making  # If true, enable character quoting, and set characters making
36  # regex-style range.  # regex-style range.
37  chars_to_quote = None  chars_to_quote = None
# Line 114  class QuotedRPath(rpath.RPath): Line 112  class QuotedRPath(rpath.RPath):
112          """          """
113          def __init__(self, connection, base, index = (), data = None):          def __init__(self, connection, base, index = (), data = None):
114                  """Make new QuotedRPath"""                  """Make new QuotedRPath"""
115                  quoted_index = tuple(map(quote, index))                  self.quoted_index = tuple(map(quote, index))
116                  rpath.RPath.__init__(self, connection, base, quoted_index, data)                  rpath.RPath.__init__(self, connection, base, self.quoted_index, data)
117                  self.index = index                  self.index = index
118    
119          def listdir(self):          def listdir(self):

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26