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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
6ba9acdb
Commit
6ba9acdb
authored
Jan 22, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core: PythonCodeUtils python3
parent
d43f42ac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.PythonCodeUtils.py
...eItem/portal_components/extension.erp5.PythonCodeUtils.py
+5
-3
No files found.
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.PythonCodeUtils.py
View file @
6ba9acdb
from
six
import
string_types
as
basestring
import
re
import
re
import
six
import
json
import
json
import
sys
import
sys
from
zExceptions
import
ExceptionFormatter
from
zExceptions
import
ExceptionFormatter
...
@@ -15,7 +15,7 @@ def checkPythonSourceCodeAsJSON(self, data, REQUEST=None):
...
@@ -15,7 +15,7 @@ def checkPythonSourceCodeAsJSON(self, data, REQUEST=None):
"""
"""
# XXX data is encoded as json, because jQuery serialize lists as []
# XXX data is encoded as json, because jQuery serialize lists as []
if
isinstance
(
data
,
basestring
):
if
isinstance
(
data
,
six
.
string_types
):
data
=
json
.
loads
(
data
)
data
=
json
.
loads
(
data
)
# data contains the code, the bound names and the script params. From this
# data contains the code, the bound names and the script params. From this
...
@@ -49,8 +49,10 @@ def checkPythonSourceCodeAsJSON(self, data, REQUEST=None):
...
@@ -49,8 +49,10 @@ def checkPythonSourceCodeAsJSON(self, data, REQUEST=None):
else
:
else
:
body
=
data
[
'code'
]
body
=
data
[
'code'
]
if
six
.
PY2
:
body
=
body
.
encode
(
'utf8'
)
try
:
try
:
message_list
=
checkPythonSourceCode
(
body
.
encode
(
'utf8'
)
,
data
.
get
(
'portal_type'
))
message_list
=
checkPythonSourceCode
(
body
,
data
.
get
(
'portal_type'
))
except
Exception
:
except
Exception
:
message_list
=
[{
message_list
=
[{
'type'
:
'E'
,
'type'
:
'E'
,
...
...
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