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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
b1f078a0
Commit
b1f078a0
authored
Nov 07, 2012
by
Kazuhiko Shiozaki
Committed by
Ivan Tyagov
Nov 07, 2012
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
dfe01151
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 @
b1f078a0
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