Changeset 655
- Timestamp:
- 11/23/06 12:44:02
- Files:
-
- qPloneCaptchas/trunk/Extensions/Install.py (modified) (1 diff)
- qPloneCaptchas/trunk/config.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneCaptchas/trunk/Extensions/Install.py
r654 r655 86 86 path = skinstool.getSkinPath(skinName) 87 87 path = [i.strip() for i in path.split(',')] 88 for skin in ALL_LAYERS: 89 for l in path: 90 if (l == skin) or (l.startswith(skin+'/')): 91 path.remove(l) 92 93 skinstool.addSkinSelection(skinName, ','.join(path)) 88 pth = [x for x in path 89 if not ((x in ALL_LAYERS) or filter(lambda y:x.startswith(y), ALL_LAYERS)) 90 ] 91 skinstool.addSkinSelection(skinName, ','.join(pth)) 94 92 95 93 def generateKey(length): qPloneCaptchas/trunk/config.py
r654 r655 19 19 havePIL = False 20 20 21 static_captchas = True21 static_captchas = False
