Ticket #1484772 (closed Feature Requests: fixed)

Opened 10 months ago

Last modified 8 months ago

TinyMCE 3.0

Reported by: tinymce Owned by: estadtherr
Priority: 5 Milestone: 0.2-alpha
Component: Client Scripts Version: 0.1-rc2
Severity: normal Keywords:
Cc: estadtherr

Description

TinyMCE 3.0 final is released. It would be great if we could switch to it.

Change History

Changed 10 months ago by till

  • owner set to estadtherr

Assigning to Eric.

He will have to decide if any TinyMCE stuff makes it into 0.1-stable.

Changed 10 months ago by till

  • milestone changed from 0.1-stable to 0.1.1

Changed 10 months ago by seansan

  • cc estadtherr added

Added code suggestion to incorporate rtl (from dev@)

1. program/js/editor.js

   add 'directionality' keyword to plugins array ( it may be there already )
   and 'rtl,ltr' to theme_advanced_buttons2 array  ( I put them last but you may
    choose any order )
   the latest version of tinymce contains directionality plugin.
   just verify that it exists in the subdir called plugins.

    DO NOT FORGET THE COMMA AT THE END OF THE ARRAY'S DEFINITION !
           plugins : 'directionality,emotions.......),
           theme_advanced_buttons2 : '.......,ltr,rtl',
		   
2. If you wish to use ENTER key and not SHIFT-ENTER for line feed in the html editor,
    append the following text to the css files:
	
     skins/default/editor_ui.css
     skins/default/editor_content.css
     skins/default/editor_popup.css
	 
   and/or any skins/<any language>/ you wish

3. This is the text to append - from the next line till the end of the document

/* Fix for MS Office style paragraphs (MsoNormal) and to simulate ENTER for linefeed */
p { margin: 0px; padding: 0px; }

/* Fix for MS Office unindeted lists and to simulate ENTER for linefeed */
.unIndentedList { margin: 0px; padding: 0px; list-style-position: inside; }

.unIndentedList li { padding: 0px; }

/* Fix for MS Office UL lists and to simulate ENTER for linefeed */
ul { margin-top: 0px; margin-bottom: 0px; }

Changed 8 months ago by estadtherr

  • status changed from new to closed
  • resolution set to fixed

Upgraded to TinyMCE 3.0 and added the directionality plugin as requested.

Note: See TracTickets for help on using tickets.