source: ckeditorplugin/trunk/README.txt

Last change on this file was 10922, checked in by Franz, 12 years ago

fixes #8850, #8851, #8852: implemented a lot of new functionalities, so named this version 1.1dev

File size: 1.2 KB
RevLine 
[10922]1= General Notes =
2
3The CKEdiotrPLugin is in a beta phase.
4
5It was tested with
6 - CKEditor 3.6.2
7 - Firefox 7 + 8
8 - Internet Explorer 8 + 9
9 
10
11= Known Bugs / Limitations =
12
13 - marker and text color is not working in headers (see
14   http://groups.google.com/group/trac-dev/browse_thread/thread/a6d12d574c3544ca)
15 - when inserting an image, only image name as URL is not working
16   (even if there exists an image at that specific ticket / wiki entry)
17 - when entering a link manually, it is printed with an exclemation mark;
18   for example entering http://google.de is saved as http:!//google.de[[BR]]
19 - copying lists from MS Word (tested with Word 2003) is not always working
20   completely (in some browsers it the deep intention is lost)
21   
22
23= Improvements Suggestions =
24
25== technical improvements (suggestions) ==
26
27The following approach might be a nicer solution as parsing the fragment and make a lot of
28recursive calls. This approach is also used by bbcode-plugin
29(see /CKEditor/_source/plugins/bbcode/plugin.js, line 135 and 311).
30
31{{{
32var parser = new CKEDITOR.htmlParser();
33var parserText = '';
34
35parser.onText = function( text )
36{
37    parserText += escapeFormatChars( text );
38};
39
40wiki = parser.parse( html );
41}}}
Note: See TracBrowser for help on using the repository browser.