Changeset 5333 for trunk/TinyMCEPlugin
- Timestamp:
- 10/21/09 03:37:01 (3 years ago)
- Location:
- trunk/TinyMCEPlugin
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
data/System/TinyMCEPlugin.txt (modified) (3 diffs, 1 prop)
-
lib/Foswiki/Plugins/TinyMCEPlugin.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/TinyMCEPlugin
-
Property
svn:mergeinfo
set to
/branches/Release01x00/TinyMCEPlugin merged eligible
-
Property
svn:mergeinfo
set to
-
trunk/TinyMCEPlugin/data/System/TinyMCEPlugin.txt
- Property svn:mergeinfo changed
/branches/Release01x00/TinyMCEPlugin/data/System/TinyMCEPlugin.txt merged: 5332
r5327 r5333 10 10 11 11 %TOC% 12 This is an integration of the <a href="http://tinymce.moxiecode.com?id=powered_by_tinymce_mini"><img src="http://tinymce.sourceforge.net/buttons/tinymce_button.png" border="0" width="80" height="15" alt="TinyMCE" /></a> WYSIWYG editor. This is great little editor, fast and highly functional, and supporting a wide range of browsers, including Firefox, IE and Safari. At the time of writing it doesn't work with Opera orKonqueror.12 This is an integration of the <a href="http://tinymce.moxiecode.com?id=powered_by_tinymce_mini"><img src="http://tinymce.sourceforge.net/buttons/tinymce_button.png" border="0" width="80" height="15" alt="TinyMCE" /></a> WYSIWYG editor. This is great little editor, fast and highly functional, and supporting a wide range of browsers, including Firefox, IE and Safari. At the time of writing it doesn't work with Konqueror. 13 13 14 14 The integration uses the Foswiki:Extensions.WysiwygPlugin to translate text to and from a format that !TinyMCE can edit. … … 113 113 114 114 Some browsers don't support Tiny MCE. You can prevent the editor from 115 being invoked on these browsers by setting =TINYMCEPLUGIN_BAD_BROWSERS= to a regular expression that matches the user-agent string for any broken browsers. The default is =(?i-xsm:Konqueror |Opera)=. For a full list of supported browsers see http://wiki.moxiecode.com/index.php/TinyMCE:Compatibility115 being invoked on these browsers by setting =TINYMCEPLUGIN_BAD_BROWSERS= to a regular expression that matches the user-agent string for any broken browsers. The default is =(?i-xsm:Konqueror)=. For a full list of supported browsers see http://wiki.moxiecode.com/index.php/TinyMCE:Compatibility 116 116 117 117 %INCLUDE{"%SYSTEMWEB%.WysiwygPluginSettings"}% … … 136 136 | Release: | %$RELEASE% | 137 137 | Change History: | <!-- versions below in reverse order --> | 138 | 21 Oct 2009 | Foswikitask:Item1558: Tiny MCE project now supports Opera, so remove it from _BAD_BROWSERS | 138 139 | 18 Oct 2009 | Foswikitask:Item2270: Fix wordcount plugin to show correct count when user first enters edit mode | 139 | 17 Oct 2009 | Foswikitask:Item2245: Upgrade to Tiny MCE 3.2.7 |140 | 17 Oct 2009 | Foswikitask:Item2245: Upgrade to Tiny MCE 3.2.7 | 140 141 | 20 Sep 2009 | Foswikitask:Item2121: Remove 2 MB of developer files that are not used | 141 142 | 19 Sep 2009 | Foswikitask:Item2037: Fix fullscreen-to-WikiText transition | - Property svn:mergeinfo changed
-
trunk/TinyMCEPlugin/lib/Foswiki/Plugins/TinyMCEPlugin.pm
r5318 r5333 38 38 extended_valid_elements : "li[type]", 39 39 forced_root_block : false, 40 moz_lists_hack: true, 40 41 setupcontent_callback : FoswikiTiny.setUpContent, 41 42 urlconverter_callback : "FoswikiTiny.convertLink", … … 139 140 # Check the client browser to see if it is blacklisted 140 141 my $ua = Foswiki::Func::getPreferencesValue('TINYMCEPLUGIN_BAD_BROWSERS') 141 || '(?i-xsm:Konqueror |Opera)';142 || '(?i-xsm:Konqueror)'; 142 143 return 'Unsupported browser: ' . $query->user_agent() 143 144 if $ua && $query->user_agent() && $query->user_agent() =~ /$ua/;
Note: See TracChangeset
for help on using the changeset viewer.
