|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
TinyMCEPluginIntegration of the Tiny MCE WYSIWYG Editor
On this page:
This is an integration of the fast and highly functional ![]() The integration uses the Foswiki:Extensions.WysiwygPlugin to translate text to and from a format that TinyMCE can edit. This plugin is able to swap out standard text areas and replace them with WYSIWYG editors. This means you get WYSIWYG editors for textareas in forms, as well as for the main text of the topic. It can also co-exist alongside other WYSIWYG editors. The editor automatically "switches itself off" (i.e. reverts to the old text-only window) when editing topics that contain Foswiki content it can't handle, such as complex macros.
Editor NotesThe editor uses a translator module to convert from Foswiki Topic Markup Language (TML) to HTML and back. The translator converts special macros - such as %MACROS% - to plain text, and encloses them within HTML spans using a special style calledWYSIWYG_PROTECTED . In this way the editor can detect text that is not meant to be HTML formatted. This style is also used to protect special text you enter into the editor from being interpreted when the topic is translated back into TML. If you want to add any special features that are sensitive to formatting, such as Set statements, then you should format those regions using 'Protect on save' or 'Protect forever'.
Installation InstructionsNOTES:
First follow the installation instructions to install the Plugin: You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server. Open configure, and open the "Extensions" section. Use "Find More Extensions" to get a list of available extensions. Select "Install".
If you have any problems, or if the extension isn't available in
PreferencesNo preferences are stored in this topic. The example settings here have no effect. To learn more about setting preference variables, see the PreferenceSettings topic.
This variable holds all the options passed to the TinyMCE editor on startup. For a full explanation of available TinyMCE options, and guidance on reconfiguring TinyMCE, see the Moxicode TinyMCE Wiki.
|
Variable | Default![]() |
Description |
---|---|---|
TINYMCEPLUGIN_INIT_browser |
See Browser Specific Settings below | Add extra parameters to TINYMCEPLUGIN_INIT string for a specific _browser |
TINYMCEPLUGIN_INIT |
As above | Holds the initialization parameters used to start TinyMCE |
TINYMCEPLUGIN_BAD_BROWSERS |
(?i-xsm:Konqueror) |
A regular expression that matches the user-agent string of any browser for which TinyMCE should not be loaded. |
TINYMCEPLUGIN_DISABLE |
0 | If set to 1, disables TinyMCEPlugin. Please use NOWYSIWYG instead |
NOWYSIWYG |
0 | If this global setting is set to 1, TinyMCEPlugin (and all other WYSIWYG editors) will be disabled. |
TINYMCEPLUGIN_DEBUG |
0 | If set to 1, the uncompressed version of TinyMCE Javascript and CSS sources will be loaded by the browser. Useful for debugging. |
* Set TINYMCEPLUGIN_INIT_MSIE = paste_auto_cleanup_on_paste : falseThe defaults are:
MSIE => '', OPERA => '', GECKO => 'gecko_spellcheck : true', SAFARI => '',
Some notable plugins:
Plugin Name | Toolbar buttons | Description | Notes |
---|---|---|---|
autoresize | - | Automatically resizes the editor to the content inside it | |
emotions | emotions | Insert smiley images into the TinyMCE editable area | |
iespell | iespell | Provides spell check for Internet Explorers | |
insertdatetime | insertdate, inserttime | Provides buttons to insert customised date and time strings | |
media | media | Handles embedded media such as QuickTime, Flash, ShockWave, RealPlayer and Windows Media Player | Requires customisation of edit templates |
paste | pastetext, pasteword, selectall | Enabled by default in Foswiki | Added here to show extra toolbar buttons that are available |
spellchecker | spellchecker | Adds spellchecker functionality to TinyMCE by providing a new button that performs a AJAX call to a backend PHP page that uses PSpell/ASpell or Google spellchecker | |
style | styleprops | Adds CSS style editing support to TinyMCE, this will enable you to edit almost any CSS style property in a visual way. | Generally, HTML/CSS markup in topics is not desirable |
visualchars | visualchars | Adds the possibility to see invisible characters like |
|
wordcount | - | Display the number of words down in the right corner of the editor. | |
xhtmlxtras | cite, ins, del, abbr, acronym | Adds support for some XHTML elements, including cite, ins, del, abbr, and acronym. | Generally, XHTML markup in topics is not desirable. Foswiki plugins exist to provide similar functions with more friendly TML markup |
The topic TinyMCEFrequentlyAskedQuestions contains more help with things like: "How do I configure the buttons in my skin?", "How do I disable the WYSIWYG?" etc.
The global preference setting WYSIWYG_EXCLUDE
can be set to make the plugin sensitive to what is in a topic, before allowing it to be edited. You can set it up to veto an edit if the topic contains:
html
- HTML tags (e.g. <div>
, not including <br>), or
macros
- simple macros (e.g. %VAR%
) or
calls
- macros with parameters e.g. %MACRO{...}%
pre
blocks (<pre>
)
comments
(<!--
... -->
)
calls
in WYSIWYG_EXCLUDE
, you can still define a subset of macros that do not block edits. this is done in the global preference setting WYSIWYG_EDITABLE_CALLS
, which should be a list of macro names separated by vertical bars, with no spaces, e.g: * Set WYSIWYG_EDITABLE_CALLS = COMMENT|CALENDAR|INCLUDE
You should set WYSIWYG_EXCLUDE
and WYSIWYG_EDITABLE_CALLS
in SitePreferences, or in WebPreferences for each web.
WYSIWYGPLUGIN_STICKYBITS
to stop the
plugin from ever trying to convert specific HTML tags into
TML when certain specific attributes are present on the tag. This is most
useful when you have styling or alignment information in tags that must be
preserved.
This preference setting is used to tell the translator which attributes, when present on a tag, make it "stick" i.e. block conversion back to TML.
For example, setting it totable=background,lang;tr=valign
will stop the translator from trying to convert anytable
tag that hasbackground
orlang
attributes, and anytr
tag that has avalign
attribute back to Foswiki| table | column |
markup.
This setting is used only after the page has been processed by the editor. If the editor does not support a particular tag or attribute and the editor corrupts the tag, this setting will not be helpful. It is only used to prevent an HTML tag from being converted back to TML.
Format of the setting is tag1=attrib,attrib;tag2=attrib
. Attributes delimited by
comma, and tags delimited by semicolon.
.*=id,on.*
will ensure that any tag with an id or on*
event handler is kept as
HTML.
The default setting for this preference are hard coded in the plugin. If you wish to change the settings, the following list is the default setting coded in the plugin:
* Set WYSIWYGPLUGIN_STICKYBITS = .*=id,lang,title,dir,on.*; A=accesskey,coords,shape,target; BDO=dir; BR=clear; COL=char,charoff,span,valign,width; COLGROUP=align,char,charoff,span,valign,width; DIR=compact; DIV=align,style; DL=compact; FONT=size,face; H[0-9]=align; HR=align,noshade,size,width; LEGEND=accesskey,align; LI=value; OL=compact,start,type; P=align; PARAM=name,type,value,valuetype; PRE=width; Q=cite; TABLE=align,bgcolor,frame,rules,summary,width; TBODY=align,char,charoff,valign; TD=abbr,align,axis,bgcolor,char,charoff,headers,height,nowrap,rowspan,scope,valign,width; TFOOT=align,char,charoff,valign; TH=abbr,align,axis,bgcolor,char,charoff,height,nowrap,rowspan,scope,valign,width,headers; THEAD=align,char,charoff,valign; TR=bgcolor,char,charoff,valign; UL=compact,type
If you edit using the plain-text editor, you can use the <sticky>..</sticky> tags to delimit HTML (or TML) that you do not want to be WYSIWYG edited.
<div>
tags
Check regularly at Foswiki:Extensions.TinyMCEPlugin for updates.
Another great Foswiki extension from the WikiRing - working together to improve your wiki experience!
Author: | Crawford Currie | |||||||||
Copyright: | © 2007-2009 Crawford Currie http://c-dot.co.uk | |||||||||
License: | GPL (Gnu General Public License) | |||||||||
This package also includes the complete sources for version 3.2.7 of the TinyMCE editor which is covered by its own license. | ||||||||||
Version: | 6527 (2010-02-26) | |||||||||
Release: | 26 Feb 2010 | |||||||||
Change History: | ||||||||||
19 Feb 2010 | Foswikitask:Item8566: Fix for sites with latest JQueryPlugin where IE users get: "Unable to install TinyMCE; <META..." | |||||||||
29 Dec 2009 | Foswikitask:Item2447: Fix unable to apply "Normal" format in some browsers (notes added to System topic) Foswikitask:Item1462: Block attachments to unsaved AUTOINC topics |
|||||||||
25 Nov 2009 | Foswikitask:Item2412: Inserting images - fixed a problem where it wasn't easy (impossible unless > 1 attachments) to select the first image in the attachment list; improved layout of dialog window where preview obscures insert/cancel buttons. | |||||||||
09 Nov 2009 | Foswikitask:Item2341: Added blockquote button and rearranged toolbars slightly; cleaned up System topic | |||||||||
29 Oct 2009 | Foswikitask:Item2245: Updated documentation, removed redundant setting: paste_auto_cleanup_on_paste : true for MSIE browsers (TinyMCE now defaults to true for all browsers) |
|||||||||
21 Oct 2009 | Foswikitask:Item1558: TinyMCE project now supports Opera, so remove it from _BAD_BROWSERS | |||||||||
18 Oct 2009 | Foswikitask:Item2270: Fix wordcount plugin to show correct count when user first enters edit mode | |||||||||
17 Oct 2009 | Foswikitask:Item2245: Upgrade to TinyMCE 3.2.7 | |||||||||
20 Sep 2009 | Foswikitask:Item2121: Remove 2 MB of developer files that are not used | |||||||||
19 Sep 2009 | Foswikitask:Item2037: Fix fullscreen-to-WikiText transition | |||||||||
18 Sep 2009 | Foswikitask:Item1798: Fixed a problem where editor wants to put text elements into blocks causing unwanted new lines. Foswikitask:Item1341: Fixed a problem so that editor does not convert TML lettered and roman numeral lists back to numbered lists. |
|||||||||
03 Jul 2009 | Foswikitask:Item8178: Check that the help elements are present before hiding or showing them, as they are not present in all skins. | |||||||||
06 Jun 2009 | Foswikitask:Item5628: Make browser reload the javascript when this plugin is upgraded (Michael Tempest, Colas Nahaboo) Foswikitask:Item1529: Disable "Wiki text" button until editor has loaded topic text (Michael Tempest) | |||||||||
24 May 2009 | Foswikitask:Item1205: add support for global NOWYSIWYG flag Foswikitask:Item1341: keep TML lettered & roman numeral lists (Michael Tempest) Foswikitask:Item1534: fix typewriter text (Michael Tempest) Foswikitask:Item1548: fix data-loss warning when saving from wiki-text (Michael Tempest) | |||||||||
10 Apr 2009 | Foswikitask:Item1394: fixed colour handling Foswikitask:Item8108: added safari,inlinepopups,fullscreen plugins, fixed some minor bugs on IE | |||||||||
03 Apr 2009 | Foswikitask:Item1383: Optimised the preferences Foswikitask:Item8094: fixed the pickaxe | |||||||||
15 Mar 2009 | Foswikitask:Item930: Crawford Currie upgraded to Tiny MCE 3.2.2 and recoded all the standard plugins that had to be recoded | |||||||||
21 Jan 2009 | Foswikitask:Item833: added SYSTEMWEB to foswiki_vars, simplifying the activation of the foswikilink dialog of TinyMCEUsabilityUpgradePlugin? (if installed) - Eugen Mayer | |||||||||
06 Dec 2008 | Foswikitask:Item5859: removed XHR headers that were banjaxing NTLM - Eugen Mayer | |||||||||
03 Dec 2008 | Crawford Currie re-released for the Foswiki project | |||||||||
03 Aug 2008 | TWiki 4.2.1 release version | |||||||||
04 May 2008 | TWikibug:Item5547: Change mechanism by which TMCE recognises textareas to camp on. Use class instead of element name. | |||||||||
12 Apr 2008 | TWikibug:Item4946: I think I have finally fixed non-iso-8859-1 character sets. Painful. | |||||||||
31 Mar 2008 | TWikibug:Item5314: TWikibug:Item5457: Fixed pickaxe mode for editing UTF-8. Characters above 255 are converted to entitites, which is a bit of a PITA, but at least it no longer corrupts topics. NOTE: YOU MUST UPGRADE WysiwygPlugin TO 16600 OR LATER | |||||||||
28 Mar 2008 | TWikibug:Item5432: added upper case file extensions for images TWikibug:Item5206: fixed expansion of simple filenames entered in image popup TWikibug:Item5462: fixed hide attachment switch | |||||||||
25 Jan 2008 | TWikibug:Item5287: links entered through dialog weren't working | |||||||||
24 Jan 2008 | TWikibug:Item4840: TWikibug:Item5138: UTF8 fixes, TWikibug:Item5022: made TT font size same as verbatim. Had to add a new style to do it, as TMCE didn't want to play with TT or CODE tags. TWikibug:Item5138: post-conversion of 8-bit entities to characters to aid searching, TWikibug:Item5254: non-fatal JS error fixed, TWikibug:Item5263: remove preview on WYSIWYG edit, TWikibug:Item5116: added Opera to bad browsers filter | |||||||||
20 Dec 2007 | TWikibug:Item5047: disable save and preview during page load TWikibug:Item5111: make the entry in the format menu sensitive to where the cursor is TWikibug:Item5022: made TT font size same as verbatim. Had to add a new style to do it, as TMCE didn't want to play with TT or CODE tags. | |||||||||
19 Nov 2007 | TWikibug:Item4742: auto-disable if Wysiwyg is not enabled TWikibug:Item4820: validate mandatory fields on save TWikibug:Item4747: add <sticky> TWikibug:Item4811: noautolink looks like an HTML construct but in fact is not; the tag is infact an "on-off" switch and does not imply any HTML structure, so cannot be converted to a DIV or a span, so has to be removed. TWikibug:Item4817: added typewriter text button TWikibug:Item4850: added font colour controls TWikibug:Item4645: added attachment management features TWikibug:Item4945: added switch to raw and back | |||||||||
16 Sep 2007 | TWikibug:Item4630: polished up the way the secret string is done, to ensure synch between perl and JS. TWikibug:Item4622: added UTF-8 handling steps that fixup malformed UTF8 strings before presenting them to the editor (saves Moz) and stops the editor passing them back to TWiki (saves IE). TWikibug:Item4603: added the draft help, so we can at least build the beta without the nasty warning | |||||||||
13 Sep 2007 | TWikibug:Item4613 fixed navigate-away prompt when unchanged TWikibug:Item4583 TWikibug:Item4604 TWikibug:Item4614 TWikibug:Item4616 A clutch of issues caused by use of the wrong encoding function when passing UTF8 parameters to REST using XMLHttpRequest?. | |||||||||
12 Sep 2007 | TWikibug:Item4604 Converted to REST call for content conversion, to provide safe callback if JS is disabled in the browser TWikibug:Item4583 relaxed regex to try and make it work for UTF-8 topic names | |||||||||
11 Sep 2007 | TWikibug:Item4535 refinements to link handling to improve topic name recognition | |||||||||
07 Sep 2007 | TWikibug:Item4503 excess empty lines TWikibug:Item4486 no toc headers with unofficial syntax TWikibug:Item4560: empty lines lost TWikibug:Item4566: corrupted table on save | |||||||||
06 Sep 2007 | TWikibug:Item4557 added missing files to package | |||||||||
04 Sep 2007 | TWikibug:Item4534 TWikibug:Item4535 fixed | |||||||||
14679 | TWikibug:Item4481 TWikibug:Item4524 fixed | |||||||||
14668 | Bugfixes and refinements done as part of 4.2 release | |||||||||
14543 | Added PROTECTED style, to allow protection of special text. Disable on unsupported browsers (untested) | |||||||||
14538 | First release | |||||||||
Dependencies: |
|
|||||||||
Plugin Home: | Foswiki:Extensions.TinyMCEPlugin | |||||||||
Support: | Foswiki:Support.TinyMCEPlugin |
Many thanks to the following sponsors for supporting this work: