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
f19e3718
Commit
f19e3718
authored
Jan 06, 2010
by
Leonardo Rochael Almeida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge 107725 from 2.12: fix for LP #246983
parent
d831f227
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
82 additions
and
3 deletions
+82
-3
doc/CHANGES.rst
doc/CHANGES.rst
+3
-0
src/Products/Five/browser/tests/test_pagetemplatefile.py
src/Products/Five/browser/tests/test_pagetemplatefile.py
+2
-2
src/Products/PageTemplates/Expressions.py
src/Products/PageTemplates/Expressions.py
+15
-1
src/Products/PageTemplates/tests/testExpressions.py
src/Products/PageTemplates/tests/testExpressions.py
+42
-0
src/Products/PageTemplates/tests/testZopePageTemplate.py
src/Products/PageTemplates/tests/testZopePageTemplate.py
+20
-0
No files found.
doc/CHANGES.rst
View file @
f19e3718
...
@@ -125,6 +125,9 @@ Features Added
...
@@ -125,6 +125,9 @@ Features Added
Bugs
Fixed
Bugs
Fixed
++++++++++
++++++++++
-
LP
#
246983
:
Enabled
unicode
conflict
resolution
on
variables
inside
"string:"
expressions
in
TALES
.
-
Also
look
for
ZEXP
imports
within
the
clienthome
directory
.
This
-
Also
look
for
ZEXP
imports
within
the
clienthome
directory
.
This
provides
a
place
to
put
imports
that
won
't be clobbered by buildout
provides
a
place
to
put
imports
that
won
't be clobbered by buildout
in a buildout-based Zope instance.
in a buildout-based Zope instance.
...
...
src/Products/Five/browser/tests/test_pagetemplatefile.py
View file @
f19e3718
...
@@ -37,13 +37,13 @@ class ViewPageTemplateFileTests(unittest.TestCase):
...
@@ -37,13 +37,13 @@ class ViewPageTemplateFileTests(unittest.TestCase):
from
zope.tales.expressions
import
DeferExpr
from
zope.tales.expressions
import
DeferExpr
from
zope.tales.expressions
import
NotExpr
from
zope.tales.expressions
import
NotExpr
from
zope.tales.expressions
import
PathExpr
from
zope.tales.expressions
import
PathExpr
from
zope.tales.expressions
import
StringExpr
from
zope.tales.expressions
import
Undefs
from
zope.tales.expressions
import
Undefs
from
zope.tales.pythonexpr
import
PythonExpr
from
zope.tales.pythonexpr
import
PythonExpr
from
zope.contentprovider.tales
import
TALESProviderExpression
from
zope.contentprovider.tales
import
TALESProviderExpression
from
Products.PageTemplates.DeferExpr
import
LazyExpr
from
Products.PageTemplates.DeferExpr
import
LazyExpr
from
Products.PageTemplates.Expressions
import
TrustedZopePathExpr
from
Products.PageTemplates.Expressions
import
TrustedZopePathExpr
from
Products.PageTemplates.Expressions
import
SecureModuleImporter
from
Products.PageTemplates.Expressions
import
SecureModuleImporter
from
Products.PageTemplates.Expressions
import
UnicodeAwareStringExpr
vptf
=
self
.
_makeOne
(
'seagull.pt'
)
vptf
=
self
.
_makeOne
(
'seagull.pt'
)
engine
=
vptf
.
pt_getEngine
()
engine
=
vptf
.
pt_getEngine
()
...
@@ -51,7 +51,7 @@ class ViewPageTemplateFileTests(unittest.TestCase):
...
@@ -51,7 +51,7 @@ class ViewPageTemplateFileTests(unittest.TestCase):
self
.
assertEqual
(
engine
.
types
[
'path'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'path'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'exists'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'exists'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'nocall'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'nocall'
],
TrustedZopePathExpr
)
self
.
assertEqual
(
engine
.
types
[
'string'
],
StringExpr
)
self
.
assertEqual
(
engine
.
types
[
'string'
],
UnicodeAware
StringExpr
)
self
.
assertEqual
(
engine
.
types
[
'python'
],
PythonExpr
)
self
.
assertEqual
(
engine
.
types
[
'python'
],
PythonExpr
)
self
.
assertEqual
(
engine
.
types
[
'not'
],
NotExpr
)
self
.
assertEqual
(
engine
.
types
[
'not'
],
NotExpr
)
self
.
assertEqual
(
engine
.
types
[
'defer'
],
DeferExpr
)
self
.
assertEqual
(
engine
.
types
[
'defer'
],
DeferExpr
)
...
...
src/Products/PageTemplates/Expressions.py
View file @
f19e3718
...
@@ -372,12 +372,26 @@ class PathIterator(ZopeIterator):
...
@@ -372,12 +372,26 @@ class PathIterator(ZopeIterator):
return
False
return
False
return
ob1
==
ob2
return
ob1
==
ob2
class
UnicodeAwareStringExpr
(
StringExpr
):
def
__call__
(
self
,
econtext
):
vvals
=
[]
if
isinstance
(
self
.
_expr
,
unicode
):
# coerce values through the Unicode Conflict Resolver
evaluate
=
econtext
.
evaluateText
else
:
evaluate
=
econtext
.
evaluate
for
var
in
self
.
_vars
:
v
=
evaluate
(
var
)
vvals
.
append
(
v
)
return
self
.
_expr
%
tuple
(
vvals
)
def
createZopeEngine
(
zpe
=
ZopePathExpr
):
def
createZopeEngine
(
zpe
=
ZopePathExpr
):
e
=
ZopeEngine
()
e
=
ZopeEngine
()
e
.
iteratorFactory
=
PathIterator
e
.
iteratorFactory
=
PathIterator
for
pt
in
zpe
.
_default_type_names
:
for
pt
in
zpe
.
_default_type_names
:
e
.
registerType
(
pt
,
zpe
)
e
.
registerType
(
pt
,
zpe
)
e
.
registerType
(
'string'
,
StringExpr
)
e
.
registerType
(
'string'
,
UnicodeAware
StringExpr
)
e
.
registerType
(
'python'
,
ZRPythonExpr
.
PythonExpr
)
e
.
registerType
(
'python'
,
ZRPythonExpr
.
PythonExpr
)
e
.
registerType
(
'not'
,
NotExpr
)
e
.
registerType
(
'not'
,
NotExpr
)
e
.
registerType
(
'defer'
,
DeferExpr
)
e
.
registerType
(
'defer'
,
DeferExpr
)
...
...
src/Products/PageTemplates/tests/testExpressions.py
View file @
f19e3718
...
@@ -25,12 +25,20 @@ class EngineTestsBase(PlacelessSetup):
...
@@ -25,12 +25,20 @@ class EngineTestsBase(PlacelessSetup):
__allow_access_to_unprotected_subobjects__
=
1
__allow_access_to_unprotected_subobjects__
=
1
def
__call__
(
self
):
def
__call__
(
self
):
return
'dummy'
return
'dummy'
management_page_charset
=
'iso-8859-15'
class
DummyDocumentTemplate
:
class
DummyDocumentTemplate
:
__allow_access_to_unprotected_subobjects__
=
1
__allow_access_to_unprotected_subobjects__
=
1
isDocTemp
=
True
isDocTemp
=
True
def
__call__
(
self
,
client
=
None
,
REQUEST
=
{},
RESPONSE
=
None
,
**
kw
):
def
__call__
(
self
,
client
=
None
,
REQUEST
=
{},
RESPONSE
=
None
,
**
kw
):
return
'dummy'
return
'dummy'
def
absolute_url
(
self
,
relative
=
0
):
url
=
'dummy'
if
not
relative
:
url
=
"http://server/"
+
url
return
url
_DEFAULT_BINDINGS
=
dict
(
_DEFAULT_BINDINGS
=
dict
(
one
=
1
,
one
=
1
,
...
@@ -38,6 +46,12 @@ class EngineTestsBase(PlacelessSetup):
...
@@ -38,6 +46,12 @@ class EngineTestsBase(PlacelessSetup):
blank
=
''
,
blank
=
''
,
dummy
=
Dummy
(),
dummy
=
Dummy
(),
dummy2
=
DummyDocumentTemplate
(),
dummy2
=
DummyDocumentTemplate
(),
eightbit
=
''
,
# ZopeContext needs 'context' and 'template' keys for unicode
# conflict resolution, and 'context' needs a
# 'management_page_charset'
context
=
Dummy
(),
template
=
DummyDocumentTemplate
(),
)
)
if
bindings
is
None
:
if
bindings
is
None
:
...
@@ -146,6 +160,34 @@ class EngineTestsBase(PlacelessSetup):
...
@@ -146,6 +160,34 @@ class EngineTestsBase(PlacelessSetup):
ec
=
self
.
_makeContext
()
ec
=
self
.
_makeContext
()
self
.
assertEquals
(
ec
.
evaluate
(
'
\
n
'
),
None
)
self
.
assertEquals
(
ec
.
evaluate
(
'
\
n
'
),
None
)
def
test_unicode
(
self
):
# All our string expressions are unicode now
eng
=
self
.
_makeEngine
()
ec
=
self
.
_makeContext
()
# XXX: can't do ec.evaluate(u'string:x') directly because ZopeContext
# only bothers compiling true strings, not unicode strings
result
=
ec
.
evaluate
(
eng
.
compile
(
u'string:x'
))
self
.
assertEqual
(
result
,
u'x'
)
self
.
failUnless
(
isinstance
(
result
,
unicode
))
def
test_mixed
(
self
):
# 8-bit strings in unicode string expressions cause UnicodeDecodeErrors
eng
=
self
.
_makeEngine
()
ec
=
self
.
_makeContext
()
expr
=
eng
.
compile
(
u'string:$eightbit'
)
self
.
assertRaises
(
UnicodeDecodeError
,
ec
.
evaluate
,
expr
)
# But registering an appropriate IUnicodeEncodingConflictResolver
# should fix it
from
zope.component
import
provideUtility
from
Products.PageTemplates.unicodeconflictresolver
\
import
StrictUnicodeEncodingConflictResolver
from
Products.PageTemplates.interfaces
\
import
IUnicodeEncodingConflictResolver
provideUtility
(
StrictUnicodeEncodingConflictResolver
,
IUnicodeEncodingConflictResolver
)
self
.
assertEqual
(
ec
.
evaluate
(
expr
),
u''
)
class
UntrustedEngineTests
(
EngineTestsBase
,
unittest
.
TestCase
):
class
UntrustedEngineTests
(
EngineTestsBase
,
unittest
.
TestCase
):
def
_makeEngine
(
self
):
def
_makeEngine
(
self
):
...
...
src/Products/PageTemplates/tests/testZopePageTemplate.py
View file @
f19e3718
...
@@ -202,6 +202,26 @@ class ZPTUnicodeEncodingConflictResolution(ZopeTestCase):
...
@@ -202,6 +202,26 @@ class ZPTUnicodeEncodingConflictResolution(ZopeTestCase):
state
=
cPickle
.
dumps
(
empty
,
protocol
=
1
)
state
=
cPickle
.
dumps
(
empty
,
protocol
=
1
)
clone
=
cPickle
.
loads
(
state
)
clone
=
cPickle
.
loads
(
state
)
def
testBug246983
(
self
):
# See https://bugs.launchpad.net/bugs/246983
self
.
app
.
REQUEST
.
set
(
'HTTP_ACCEPT_CHARSET'
,
'utf-8'
)
self
.
app
.
REQUEST
.
set
(
'data'
,
u''
.
encode
(
'utf-8'
))
# Direct inclusion of encoded strings is hadled normally by the unicode
# conflict resolver
textDirect
=
"""
<tal:block content="request/data" />
"""
.
strip
()
manage_addPageTemplate
(
self
.
app
,
'test'
,
text
=
textDirect
)
zpt
=
self
.
app
[
'test'
]
self
.
assertEquals
(
zpt
.
pt_render
(),
u''
)
# Indirect inclusion of encoded strings through String Expressions
# should be resolved as well.
textIndirect
=
"""
<tal:block content="string:x ${request/data}" />
"""
.
strip
()
zpt
.
pt_edit
(
textIndirect
,
zpt
.
content_type
)
self
.
assertEquals
(
zpt
.
pt_render
(),
u'x '
)
def
testDebugFlags
(
self
):
def
testDebugFlags
(
self
):
# Test for bug 229549
# Test for bug 229549
manage_addPageTemplate
(
self
.
app
,
'test'
,
manage_addPageTemplate
(
self
.
app
,
'test'
,
...
...
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