Skip to content
Snippets Groups Projects
Commit 8fe9f07c authored by Binjal Desai's avatar Binjal Desai Committed by Richard Mathot
Browse files

[FIX] note: small bugs

parent 768b3592
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ class pad_common(osv.osv_memory):
#get content of the real field
for record in model.browse(cr, uid, [context["object_id"]]):
if record[real_field]:
myPad.setText(path, html2plaintext(record[real_field]))
myPad.setText(path, (html2plaintext(record[real_field]).encode('utf-8')))
#Etherpad for html not functional
#myPad.setHTML(path, record[real_field])
......
......@@ -213,6 +213,7 @@ def html2plaintext(html, body_id=None, encoding='utf-8'):
html = html.replace(' ' * 2, ' ')
html = html.replace('>', '>')
html = html.replace('&lt;', '<')
html = html.replace('&amp;', '&')
# strip all lines
html = '\n'.join([x.strip() for x in html.splitlines()])
......@@ -375,4 +376,4 @@ def email_split(text):
# sometimes returns emails without at least '@'. The '@'
# is strictly required in RFC2822's `addr-spec`.
if addr[1]
if '@' in addr[1]]
\ No newline at end of file
if '@' in addr[1]]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment