Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
a0f97a9d
Commit
a0f97a9d
authored
Aug 14, 2002
by
Matt Behrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#178: don't compile PythonScripts in skins directories
parent
84ba997d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
inst/compilezpy.py
inst/compilezpy.py
+1
-1
No files found.
doc/CHANGES.txt
View file @
a0f97a9d
...
...
@@ -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
...
...
inst/compilezpy.py
View file @
a0f97a9d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment