Browse Source

drop or comment out some debugging

sort the ZipFile's children...  hmmm.  for a generic way, i could
do a sort children doUpdate class that all it does it sorts the
children when called...

[git-p4: depot-paths = "//depot/": change = 812]
v0.3
John-Mark Gurney 19 years ago
parent
commit
42b5314102
2 changed files with 4 additions and 3 deletions
  1. +1
    -1
      FSStorage.py
  2. +3
    -2
      ZipStorage.py

+ 1
- 1
FSStorage.py View File

@@ -121,7 +121,7 @@ def dofileadd(cd, parent, path, name):
if klass is None:
return

log.msg('matched:', os.path.join(path, name), `i`, `klass`)
#log.msg('matched:', os.path.join(path, name), `i`, `klass`)
return cd.addItem(parent, klass, name, **kwargs)

class FSDirectory(FSObject, StorageFolder):


+ 3
- 2
ZipStorage.py View File

@@ -152,7 +152,6 @@ class ZipItem(Item):
return self.zo.checkUpdate()

def doUpdate(self):
log.msg('doUpdate:', `self`, self.name)
self.res = Resource(self.url, 'http-get:*:%s:*' % self.mimetype)
self.res.size = self.zi.file_size
Item.doUpdate(self)
@@ -202,10 +201,12 @@ class ZipObject(FSObject, StorageFolder):
klass, i, zf = self.zip, zo = self,
name = i, mimetype = mt)

# sort our children
self.sort(lambda x, y: cmp(x.title, y.title))

def detectzipfile(path, fobj):
try:
z = zipfile.ZipFile(fobj)
log.msg(`z`)
except:
return None, None



Loading…
Cancel
Save