Changeset 3973
- Timestamp:
- 05/24/09 08:35:12 (3 years ago)
- Location:
- trunk/TinyMCEPlugin
- Files:
-
- 2 edited
-
data/System/TinyMCEPlugin.txt (modified) (2 diffs, 1 prop)
-
lib/Foswiki/Plugins/TinyMCEPlugin.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/TinyMCEPlugin/data/System/TinyMCEPlugin.txt
- Property svn:mergeinfo changed (with no actual effect on merging)
r3964 r3973 107 107 <verbatim> * Set TINYMCEPLUGIN_DISABLE = 1 108 108 </verbatim> 109 The plugin also respects the global =NOWYSIWYG= setting, which affects all 110 WYSIWYG editors. 109 111 110 112 Some browsers don't support Tiny MCE. You can prevent the editor from … … 131 133 | Plugin Version: | %$VERSION% | 132 134 | Change History: | <!-- versions below in reverse order --> | 135 | 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) | 133 136 | 10 Apr 2009 | Foswikitask:Item1394: fixed colour handling Foswikitask:Item8108: added safari,inlinepopups,fullscreen plugins, fixed some minor bugs on IE | 134 137 | 3 Apr 2009 | Foswikitask:Item1383: Optimised the preferences Foswikitask:Item8094: fixed the pickaxe | -
trunk/TinyMCEPlugin/lib/Foswiki/Plugins/TinyMCEPlugin.pm
r3963 r3973 120 120 121 121 sub _notAvailable { 122 return 123 "Disabled by preference '" 124 . Foswiki::Func::getPreferencesValue('TINYMCEPLUGIN_DISABLE') . "'" 125 if Foswiki::Func::getPreferencesFlag('TINYMCEPLUGIN_DISABLE'); 122 for my $c qw(TINYMCEPLUGIN_DISABLE NOWYSIWYG) { 123 return 124 "Disabled by * Set $c = " . Foswiki::Func::getPreferencesValue($c) 125 if Foswiki::Func::getPreferencesFlag($c); 126 } 126 127 127 128 # Disable TinyMCE if we are on a specialised edit skin
Note: See TracChangeset
for help on using the changeset viewer.
