WysiwygPlugin Development

This is the topic to discuss development of download WysiwygPlugin

help If you need support, go to Support.WysiwygPlugin where you can ask questions and find answers to previously asked questions. warning If you want to report a bug, or a feature request, go to Tasks.WysiwygPlugin where you can see already submitted issues and where you can submit a new bug report or feature request.

Active Items

Id Summary Priority Current State Creation Date Last Edit
Item5492 Black font tags are usually unwanted Enhancement Confirmed 02 Apr 2008 - 14:01 11 Dec 2008 - 16:23
Item2489 WysiwygPlugin Constants should use export instead of aliasing it to some WC module Enhancement New 10 Dec 2009 - 12:32 10 Dec 2009 - 12:32
Item8475 Foswiki introduces errant spaces into table cells Normal Confirmed 07 Feb 2010 - 04:06 07 Feb 2010 - 11:46
Item8690 html tags inserted by the WYSIWYG editor prevent Wikiwords expansion Low New 09 Mar 2010 - 15:43 09 Mar 2010 - 15:43
Item5955 WysiwygPlugin failes to roundtrip tables that are created with align center Normal Confirmed 25 Aug 2008 - 01:47 26 Jun 2010 - 11:57
Item9726 How to disable Wysiwyg from an EditTemplate. Normal New 21 Sep 2010 - 04:56 21 Sep 2010 - 05:28
Item10239 Class Attribute is missing after Wysiwyg Transfer of Table Nodes Normal Confirmed 11 Jan 2011 - 09:52 11 Jan 2011 - 15:40
Item2123 tinymce fullscrene mode appears without save&cancel Enhancement Confirmed 21 Sep 2009 - 04:21 16 Mar 2011 - 15:18
Item9651 wysiwyg converts bold table content to table heads Normal Confirmed 09 Sep 2010 - 08:21 25 Mar 2011 - 02:08
Item10230 non-ASCII chars in HTML tag attributes incorrectly de-encoded (need to stay URI-escaped) Urgent Confirmed 06 Jan 2011 - 12:01 16 Apr 2011 - 11:36
Item10790 script error while saving a topic Normal Waiting for Feedback 25 May 2011 - 14:22 07 Jun 2011 - 16:25
Item11031 Enable the TinyMCE editor for data form textareas Enhancement New 10 Aug 2011 - 10:25 10 Aug 2011 - 15:19
Item2515 Add support for underline and line-through text decorations Enhancement New 21 Dec 2009 - 04:46 21 Dec 2011 - 00:32
Item11486 TinyMCE IE7 bugs: 1. can't set font color 2. blockquote disappearing on save Normal New 31 Jan 2012 - 03:40 31 Jan 2012 - 03:40
Item10930 When editing using the 'wiki text' editor no WYSIWYG button is shown Enhancement Confirmed 29 Jun 2011 - 13:37 16 Mar 2012 - 01:37
Item11214 can't create link to image Urgent Confirmed 29 Oct 2011 - 20:31 08 Apr 2012 - 01:53
Item11751 TinyMCE breaks numbered headers Normal Confirmed 12 Apr 2012 - 14:29 13 Apr 2012 - 14:03
Item11497 set ending multi-line pre does not detect end of pre because it is encoded on a protected set statement Normal Confirmed 03 Feb 2012 - 02:04 24 Apr 2012 - 04:57
Item5103 TMCE replaces non-breaking space with normal space Normal Confirmed 09 Dec 2007 - 22:24 27 Apr 2012 - 15:19
Item11815 Bulleted list - continue with normal - bug in the WYSIWYG Normal Confirmed 03 May 2012 - 20:01 05 May 2012 - 02:13
Item11788 Consecutive verbatim blocks are merged. Enhancement Confirmed 25 Apr 2012 - 02:48 05 May 2012 - 18:20
Item10995 Wysiwyg destroys umlaute Normal Confirmed 22 Jul 2011 - 07:48 02 Jun 2012 - 00:24
Item8032 The means to put WYSIWYG on form fields Enhancement Confirmed 22 Dec 2008 - 14:51 25 Jun 2012 - 05:08
Item12044 WysiwygPlugin: REST upload response should be retrievable in parseable format Enhancement New 15 Aug 2012 - 13:34 15 Aug 2012 - 13:34
Item12230 WysiwygPlugin: tml2html: introduces spurious hidden whitespace in HTML table cells that contain blank lines Normal New 08 Nov 2012 - 14:26 08 Nov 2012 - 18:26
Item12322 WysiwygPlugin could remove TopicEnd spans if it notices them (and maybe even anything after? Normal New 30 Dec 2012 - 11:50 30 Dec 2012 - 11:50
Item12341 WysiwygPlugin identifies spans inside protected macros with TMLhtml, but fails to remove the class during save. Normal Confirmed 10 Jan 2013 - 21:00 10 Jan 2013 - 21:46
Item10107 WYSIWYG editor protects macros inside tags by inserting spans, which then breaks the enclosing tag. Normal Confirmed 02 Dec 2010 - 01:07 11 Jan 2013 - 00:33
Item12388 HTML2TML relies on XML-specific ' entity Normal Confirmed 08 Feb 2013 - 15:30 23 Feb 2013 - 15:54
Item12448 WYSIWYG-Editor: Table Cell Background Color lost on save Urgent Confirmed 27 Mar 2013 - 09:51 19 Apr 2013 - 02:55

Discussion

Table issues

There are 3 issues with WYSIWYG editing of tables.

html table with embedded html markup - Item9259

  • Starts out as:
<table> <tbody> 
<tr> <td> <h3> b </h3> </td> </tr> 
</tbody> </table>

  • Trunk First Pass
<table> <tbody> <tr> <td>
---+++ b
</td> </tr> </tbody> </table> 

  • Trunk Second Pass
<table> <tbody> <tr> <td>---+++ b</td> </tr> </tbody> </table>

  • 1.1.5-RC1 Multiple edit passes result in the heading removed from the table: - 1.1.5-RC1
| |
---+++ b

html table with embedded tml markup - TWiki Bug Item5076

  • Starts out as:
<table border="0"><tbody><tr><td>
---++ Argh
   * Ergh 
</td><td> </td></tr><tr><td> </td><td> </td></tr></tbody></table>

  • Trunk - First pass
<table border="0"> <tbody> <tr> <td>---++ Argh * Ergh</td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table>

  • Trunk - Second Pass
| ---++ Argh * Ergh | |
| | |

  • 1.1.5-RC1 Multiple edit passes results in markup removed from the table:
| |
---++ Argh
   * Ergh

html table with blank lines - Item11312 (fixed on trunk)

  • Trunk First pass
 <table border="1" cellpadding="0" cellspacing="1"> <tbody> <tr> <td>A</td> <td>B <p> </p> C</td> <td>D</td> </tr> </tbody> </table>

  • 1.1.5-RC1 The blank line between B and C terminates the table.
| A | B |
CD
Started out as:
<table border="1" cellpadding="0" cellspacing="1"> 
   <tbody> 
      <tr> 
         <td>A</td> 
         <td>B
         
            C
         </td>  
         <td>D</td> 
      </tr>   
   </tbody> 
</table>
Topic revision: r2 - 05 Apr 2012, GeorgeClark
 
The copyright of the content on this website is held by the contributing authors, except where stated elsewhere. see CopyrightStatement. Creative Commons LicenseGet Foswiki at sourceforge.net. Fast, secure and Free Open Source software downloads