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
9a8b2139
Commit
9a8b2139
authored
Jan 11, 2010
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport fix for LP #490514: preserve tainting when calling into DTML from ZPT.
parent
8f685fa8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
lib/python/Products/PageTemplates/ZRPythonExpr.py
lib/python/Products/PageTemplates/ZRPythonExpr.py
+2
-0
lib/python/Products/PageTemplates/tests/testZRPythonExpr.py
lib/python/Products/PageTemplates/tests/testZRPythonExpr.py
+12
-0
No files found.
doc/CHANGES.txt
View file @
9a8b2139
...
...
@@ -6,6 +6,8 @@ Zope Changes
Zope 2.8.12 (2010/01/12)
- LP #490514: preserve tainting when calling into DTML from ZPT.
- LP #491224: proper escaping of rendered error message
Zope 2.8.11 (2009/08/06)
...
...
lib/python/Products/PageTemplates/ZRPythonExpr.py
View file @
9a8b2139
...
...
@@ -66,6 +66,8 @@ def call_with_ns(f, ns, arg=1):
this
=
ns
.
get
(
'context'
,
ns
.
get
(
'here'
))
td
.
this
=
this
request
=
ns
.
get
(
'request'
,
{})
if
hasattr
(
request
,
'taintWrapper'
):
request
=
request
.
taintWrapper
()
td
.
_push
(
request
)
td
.
_push
(
InstanceDict
(
td
.
this
,
td
))
td
.
_push
(
ns
)
...
...
lib/python/Products/PageTemplates/tests/testZRPythonExpr.py
View file @
9a8b2139
...
...
@@ -39,6 +39,18 @@ class MiscTests(unittest.TestCase):
result
=
call_with_ns
(
_find_request
,
names
)
self
.
assertEqual
(
result
,
{})
def
test_call_with_request_preserves_tainting
(
self
):
from
Products.PageTemplates.ZRPythonExpr
import
call_with_ns
class
Request
(
dict
):
def
taintWrapper
(
self
):
return
{
'tainted'
:
'found'
}
context
=
[
'context'
]
here
=
[
'here'
]
names
=
{
'context'
:
context
,
'here'
:
here
,
'request'
:
Request
()}
found
=
call_with_ns
(
lambda
td
:
td
[
'tainted'
],
names
)
self
.
assertEqual
(
found
,
'found'
)
def
test_suite
():
return
unittest
.
makeSuite
(
MiscTests
)
...
...
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