Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
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
Hamza
erp5-Boxiang
Commits
8c4427ab
Commit
8c4427ab
authored
Nov 07, 2012
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify safe_html.py patch for our fork of PortalTransforms.
use HTMLParser instead of SGMLParser (cf.
0952bee6
).
parent
19e11996
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
product/PloneHotfix20121106/safe_html.py
product/PloneHotfix20121106/safe_html.py
+3
-3
No files found.
product/PloneHotfix20121106/safe_html.py
View file @
8c4427ab
import
re
from
sgmllib
import
SGMLParser
,
SG
MLParseError
from
HTMLParser
import
HTMLParser
,
HT
MLParseError
from
Products.CMFDefault.utils
import
IllegalHTML
from
Products.PortalTransforms.transforms
import
safe_html
...
...
@@ -56,8 +56,8 @@ def parse_declaration(self, i):
j
=
k
+
3
else
:
try
:
j
=
SG
MLParser
.
parse_declaration
(
self
,
i
)
except
SG
MLParseError
:
j
=
HT
MLParser
.
parse_declaration
(
self
,
i
)
except
HT
MLParseError
:
j
=
len
(
self
.
rawdata
)
return
j
safe_html
.
StrippingParser
.
parse_declaration
=
parse_declaration
...
...
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