Changeset 5356
- Timestamp:
- 10/22/09 15:19:47 (2 years ago)
- Location:
- branches/Release01x00/WysiwygPlugin
- Files:
-
- 3 edited
-
data/System/WysiwygPlugin.txt (modified) (1 diff)
-
data/System/WysiwygPluginSettings.txt (modified) (1 diff)
-
lib/Foswiki/Plugins/WysiwygPlugin.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/Release01x00/WysiwygPlugin/data/System/WysiwygPlugin.txt
r4982 r5356 170 170 | Release: | %$RELEASE% | 171 171 | Change History: | | 172 | 22 Oct 2009 | Foswikitask:Item2183: Protect div style= by default | 172 173 | 18 Sep 2009 | Foswikitask:Item1980: Prevent dataloss when saving a topic in Wysiwyg where there are a pair of sticky tags inside verbatim tags | 173 174 | 28 Jun 2009 | Foswikitask:Item1770: Protect XML tags registered by plugins, and not just the content between them (Michael Tempest) | -
branches/Release01x00/WysiwygPlugin/data/System/WysiwygPluginSettings.txt
r5309 r5356 56 56 COLGROUP=align,char,charoff,span,valign,width; 57 57 DIR=compact; 58 DIV=align ;58 DIV=align,style; 59 59 DL=compact; 60 60 FONT=size,face; -
branches/Release01x00/WysiwygPlugin/lib/Foswiki/Plugins/WysiwygPlugin.pm
r5239 r5356 695 695 colgroup=align,char,charoff,span,valign,width; 696 696 dir=compact; 697 div=align ;697 div=align,style; 698 698 dl=compact; 699 699 font=size,face; … … 729 729 foreach my $row (@protectedByAttr) { 730 730 if ( $tag =~ /^$row->{tag}$/i ) { 731 return 1 if ( $attr =~ /^($row->{attrs})$/i ); 731 if ( $attr =~ /^($row->{attrs})$/i ) { 732 #print STDERR "Protecting $tag with $attr matches $row->{attrs} \n"; #debug 733 return 1; 734 } 732 735 } 733 736 }
Note: See TracChangeset
for help on using the changeset viewer.
