Commit a0f97a9d authored by Matt Behrens's avatar Matt Behrens

#178: don't compile PythonScripts in skins directories

parent 84ba997d
......@@ -115,6 +115,8 @@ Zope Changes
- Stop leaking FastCGI Authorization header in environment to
prevent password compromise
- #178: Don't compile PythonScripts in skins directories
Features Added
- <dtml-var name> and &dtml.-name; will now automatically HTML-quote
......
......@@ -35,7 +35,7 @@ def compile_non_test(dir):
fullname = os.path.join(dir, name)
if (name != os.curdir and name != os.pardir and
os.path.isdir(fullname) and not os.path.islink(fullname) and
name != 'test' and name != 'tests'):
name != 'test' and name != 'tests' and name != 'skins'):
success = success and compile_non_test(fullname)
return success
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment