| Rev | Line | |
|---|
| [10922] | 1 | = General Notes = |
|---|
| 2 | |
|---|
| 3 | The CKEdiotrPLugin is in a beta phase. |
|---|
| 4 | |
|---|
| 5 | It 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 | |
|---|
| 27 | The following approach might be a nicer solution as parsing the fragment and make a lot of |
|---|
| 28 | recursive calls. This approach is also used by bbcode-plugin |
|---|
| 29 | (see /CKEditor/_source/plugins/bbcode/plugin.js, line 135 and 311). |
|---|
| 30 | |
|---|
| 31 | {{{ |
|---|
| 32 | var parser = new CKEDITOR.htmlParser(); |
|---|
| 33 | var parserText = ''; |
|---|
| 34 | |
|---|
| 35 | parser.onText = function( text ) |
|---|
| 36 | { |
|---|
| 37 | parserText += escapeFormatChars( text ); |
|---|
| 38 | }; |
|---|
| 39 | |
|---|
| 40 | wiki = parser.parse( html ); |
|---|
| 41 | }}} |
|---|
Note: See
TracBrowser
for help on using the repository browser.