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
ec4e408d
Commit
ec4e408d
authored
Feb 11, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GadgetField: py3
parent
b1323dd9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/ERP5Form/GadgetField.py
product/ERP5Form/GadgetField.py
+2
-2
No files found.
product/ERP5Form/GadgetField.py
View file @
ec4e408d
import
io
from
Products.Formulator.Field
import
ZMIField
from
Products.Formulator.Field
import
ZMIField
from
Products.Formulator
import
Widget
from
Products.Formulator
import
Widget
from
Products.Formulator.DummyField
import
fields
from
Products.Formulator.DummyField
import
fields
from
Products.Formulator
import
Validator
from
Products.Formulator
import
Validator
from
zLOG
import
LOG
,
ERROR
from
zLOG
import
LOG
,
ERROR
from
six.moves
import
cStringIO
as
StringIO
from
json
import
dumps
from
json
import
dumps
from
Acquisition
import
aq_base
from
Acquisition
import
aq_base
from
six.moves.urllib.parse
import
urljoin
from
six.moves.urllib.parse
import
urljoin
...
@@ -151,7 +151,7 @@ class GadgetFieldValidator(Validator.Validator):
...
@@ -151,7 +151,7 @@ class GadgetFieldValidator(Validator.Validator):
if
value
is
not
None
:
if
value
is
not
None
:
if
field
.
get_value
(
'data_url'
):
if
field
.
get_value
(
'data_url'
):
value
=
value
.
split
(
","
)[
1
]
value
=
value
.
split
(
","
)[
1
]
return
String
IO
(
base64
.
b64decode
(
value
))
return
io
.
Bytes
IO
(
base64
.
b64decode
(
value
))
return
value
return
value
...
...
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