Commit ef2d80fd authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

2009-08-05 Kazuhiko

* escape LINE SEPARATOR (U+2028) and PARAGRAPH SEPARATOR (U+2029) in fckeditor_wysiwyg_support otherwise FCKeditor will raise an error.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28279 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 065d7afd
......@@ -44,6 +44,8 @@
cleaninput python: cleaninput.replace(\'\\x27\',\'\\x5C\\x27\');\n
cleaninput python: cleaninput.replace(\'\\r\',\'\\x5C\\x72\');\n
cleaninput python: cleaninput.replace(\'\\n\',\'\\x5C\\x6E\');\n
cleaninput python: cleaninput.replace(\'\\xE2\\x80\\xA8\',\'\\\\u2028\');\n
cleaninput python: cleaninput.replace(\'\\xE2\\x80\\xA9\',\'\\\\u2029\');\n
site_root python: getattr(here, \'getWebSiteValue\', here.getPortalObject)();\n
portal_url python: site_root.absolute_url();\n
server_url request/BASE0;\n
......
2009-08-05 Kazuhiko
* escape LINE SEPARATOR (U+2028) and PARAGRAPH SEPARATOR (U+2029) in fckeditor_wysiwyg_support otherwise FCKeditor will raise an error.
2009-06-23 Kazuhiko
* update FCKeditor to 2.6.4.1.
......
791
\ No newline at end of file
792
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment