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
aa9c0d4b
Commit
aa9c0d4b
authored
Apr 16, 2024
by
Carlos Ramos Carreño
Committed by
Jérome Perrin
May 29, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests for erp5_officejs in Python 2.
parent
f9491e04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
bt5/erp5_officejs/SkinTemplateItem/portal_skins/erp5_officejs_common/StaticWebSite_getRedirectSourceUrlForOfficeJSApplication.py
...aticWebSite_getRedirectSourceUrlForOfficeJSApplication.py
+5
-2
No files found.
bt5/erp5_officejs/SkinTemplateItem/portal_skins/erp5_officejs_common/StaticWebSite_getRedirectSourceUrlForOfficeJSApplication.py
View file @
aa9c0d4b
...
...
@@ -8,6 +8,8 @@ Redirect to domain specified as layout property on website
import
binascii
import
base64
from
Products.ERP5Type.Utils
import
bytes2str
,
str2bytes
import
six
result_dict
=
{
"error"
:
"url missing definition view path"
}
base_64
=
False
...
...
@@ -19,8 +21,9 @@ except KeyError:
return
result_dict
try
:
encoded
=
name
.
replace
(
"definition_view/"
,
""
,
1
).
encode
()
name
=
base64
.
decodebytes
(
encoded
).
decode
()
encoded
=
str2bytes
(
name
.
replace
(
"definition_view/"
,
""
,
1
))
decode_method
=
base64
.
decodebytes
if
six
.
PY3
else
base64
.
decodestring
name
=
bytes2str
(
decode_method
(
encoded
))
base_64
=
True
except
binascii
.
Error
:
pass
...
...
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