Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laurent S
erp5
Commits
b307e4c4
Commit
b307e4c4
authored
Aug 20, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use unrestricted_apply for predicate script
Predicate security is checked at higher levels
parent
d2349b68
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
product/ERP5Type/Core/Predicate.py
product/ERP5Type/Core/Predicate.py
+2
-1
No files found.
product/ERP5Type/Core/Predicate.py
View file @
b307e4c4
...
@@ -45,6 +45,7 @@ from Products.ERP5Type.TransactionalVariable import getTransactionalVariable
...
@@ -45,6 +45,7 @@ from Products.ERP5Type.TransactionalVariable import getTransactionalVariable
from
Products.ZSQLCatalog.SQLCatalog
import
SQLQuery
from
Products.ZSQLCatalog.SQLCatalog
import
SQLQuery
from
Products.ERP5Type.Globals
import
PersistentMapping
from
Products.ERP5Type.Globals
import
PersistentMapping
from
Products.ERP5Type.UnrestrictedMethod
import
UnrestrictedMethod
from
Products.ERP5Type.UnrestrictedMethod
import
UnrestrictedMethod
from
Products.ERP5Type.UnrestrictedMethod
import
unrestricted_apply
from
Products.CMFCore.Expression
import
Expression
from
Products.CMFCore.Expression
import
Expression
class
Predicate
(
XMLObject
):
class
Predicate
(
XMLObject
):
...
@@ -596,7 +597,7 @@ class Predicate(XMLObject):
...
@@ -596,7 +597,7 @@ class Predicate(XMLObject):
try
:
try
:
return
cache
[
key
]
return
cache
[
key
]
except
KeyError
:
except
KeyError
:
self
=
self
.
_getTypeBasedMethod
(
"asPredicate"
,
"_asPredicate"
)(
)
self
=
unrestricted_apply
(
self
.
_getTypeBasedMethod
(
"asPredicate"
,
"_asPredicate"
)
)
cache
[
key
]
=
self
cache
[
key
]
=
self
return
self
return
self
...
...
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