Fixed path stripping in WriteXML

svn: r474
This commit is contained in:
Don Allingham 2001-10-15 04:19:17 +00:00
parent f45b6818b6
commit 014ea4f3a1

View File

@ -34,6 +34,7 @@ except:
gzip_ok = 0
fileroot = ""
strip_photo = 0
#-------------------------------------------------------------------------
#
@ -55,7 +56,7 @@ def sortById(first,second):
#
#-------------------------------------------------------------------------
def fix(line):
l = string.strip(line)
l = string.stripline)
l = string.replace(l,'&','&')
l = string.replace(l,'>','>')
l = string.replace(l,'<','&lt;')
@ -336,6 +337,9 @@ def write_object(g,object):
id = object.getId()
type = object.getMimeType()
path = object.getPath()
if strip_photo:
path = os.path.basename(path)
else:
l = len(fileroot)
if len(path) >= l:
if fileroot == path[0:l]: