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
Carlos Ramos Carreño
erp5
Commits
ca0f74ee
Commit
ca0f74ee
authored
Jan 31, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
web py3
parent
729f94d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
bt5/erp5_web/ExtensionTemplateItem/portal_components/extension.erp5.WebUtility.py
...mplateItem/portal_components/extension.erp5.WebUtility.py
+10
-2
bt5/erp5_web_ui_test/TestTemplateItem/portal_components/test.erp5.testStaticWebSiteRedirection.py
...rtal_components/test.erp5.testStaticWebSiteRedirection.py
+2
-3
No files found.
bt5/erp5_web/ExtensionTemplateItem/portal_components/extension.erp5.WebUtility.py
View file @
ca0f74ee
...
@@ -25,7 +25,10 @@
...
@@ -25,7 +25,10 @@
#
#
##############################################################################
##############################################################################
import
six
from
six.moves.html_parser
import
HTMLParser
from
six.moves.html_parser
import
HTMLParser
class
HtmlParseHelper
(
HTMLParser
):
class
HtmlParseHelper
(
HTMLParser
):
"""
"""
Listens to all the HTMLParser methods and push results in a list of tuple.
Listens to all the HTMLParser methods and push results in a list of tuple.
...
@@ -131,5 +134,10 @@ def parseCssForUrl(text):
...
@@ -131,5 +134,10 @@ def parseCssForUrl(text):
result.append(("data", data))
result.append(("data", data))
return result
return result
def unescape(self, html):
if six.PY2:
return HTMLParser().unescape(html)
def unescape(self, html):
return HTMLParser().unescape(html)
else:
from html import unescape as html_unescape
def unescape(self, html):
return html_unescape(self, html)
bt5/erp5_web_ui_test/TestTemplateItem/portal_components/test.erp5.testStaticWebSiteRedirection.py
View file @
ca0f74ee
...
@@ -129,14 +129,13 @@ class TestStaticWebSiteRedirection(ERP5TypeTestCase):
...
@@ -129,14 +129,13 @@ class TestStaticWebSiteRedirection(ERP5TypeTestCase):
# Test service worker URL
# Test service worker URL
self
.
assertEqual
(
response
.
status
,
six
.
moves
.
http_client
.
OK
,
'%s: %s'
%
(
response
.
status
,
url_to_check
))
self
.
assertEqual
(
response
.
status
,
six
.
moves
.
http_client
.
OK
,
'%s: %s'
%
(
response
.
status
,
url_to_check
))
self
.
assertEqual
(
response
.
getheader
(
'Content-Type'
),
'application/javascript'
)
self
.
assertEqual
(
response
.
getheader
(
'Content-Type'
),
'application/javascript'
)
self
.
assertTrue
(
'self.registration.unregister()'
in
response_body
,
self
.
assertIn
(
b'self.registration.unregister()'
,
response_body
)
response_body
)
else
:
else
:
self
.
assertEqual
(
response
.
status
,
status_to_assert
,
'%s: %s'
%
(
response
.
status
,
url_to_check
))
self
.
assertEqual
(
response
.
status
,
status_to_assert
,
'%s: %s'
%
(
response
.
status
,
url_to_check
))
self
.
assertEqual
(
response
.
getheader
(
LOCATION
),
redirect_location
)
self
.
assertEqual
(
response
.
getheader
(
LOCATION
),
redirect_location
)
self
.
assertEqual
(
response
.
getheader
(
'Content-Type'
),
'text/plain; charset=utf-8'
)
self
.
assertEqual
(
response
.
getheader
(
'Content-Type'
),
'text/plain; charset=utf-8'
)
self
.
assertEqual
(
response_body
,
redirect_location
)
self
.
assertEqual
(
response_body
.
decode
(
'utf-8'
)
,
redirect_location
)
##############################################################################
##############################################################################
...
...
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