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
b7345222
Commit
b7345222
authored
Jul 21, 2023
by
Emmy Vouriot
Committed by
Jérome Perrin
Apr 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change bytes to str WIP
parent
37699cf8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
bt5/erp5_crm/TestTemplateItem/portal_components/test.erp5.testEditorField.py
...mplateItem/portal_components/test.erp5.testEditorField.py
+7
-3
No files found.
bt5/erp5_crm/TestTemplateItem/portal_components/test.erp5.testEditorField.py
View file @
b7345222
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
from
__future__
import
print_function
from
__future__
import
print_function
import
unittest
import
unittest
import
six
from
AccessControl.SecurityManagement
import
newSecurityManager
from
AccessControl.SecurityManagement
import
newSecurityManager
from
Testing
import
ZopeTestCase
from
Testing
import
ZopeTestCase
...
@@ -128,6 +129,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
...
@@ -128,6 +129,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
text_content -- the embedded text content
text_content -- the embedded text content
"""
"""
if
six
.
PY2
:
html_text
=
html_text
.
encode
(
'utf-8'
)
html_text
=
html_text
.
encode
(
'utf-8'
)
match_string1
=
'data-gadget-editable="field_%s"'
%
field_id
match_string1
=
'data-gadget-editable="field_%s"'
%
field_id
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
...
@@ -153,6 +155,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
...
@@ -153,6 +155,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
text_content -- the embedded text content
text_content -- the embedded text content
"""
"""
if
six
.
PY2
:
html_text
=
html_text
.
encode
(
'utf-8'
)
html_text
=
html_text
.
encode
(
'utf-8'
)
match_string1
=
'data-gadget-editable="field_%s"'
%
field_id
match_string1
=
'data-gadget-editable="field_%s"'
%
field_id
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
...
@@ -179,6 +182,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
...
@@ -179,6 +182,7 @@ class TestEditorField(ERP5TypeTestCase, ZopeTestCase.Functional):
document -- the document which content is displayed in
document -- the document which content is displayed in
read only mode
read only mode
"""
"""
if
six
.
PY2
:
html_text
=
html_text
.
encode
(
'utf-8'
)
html_text
=
html_text
.
encode
(
'utf-8'
)
match_string1
=
"data-gadget-editable="
match_string1
=
"data-gadget-editable="
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
match_string2
=
'data-gadget-value="%s"'
%
html_quote
(
text_content
)
...
...
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