# Copyright (C) 2006, 2008 Alex Schroeder # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use v5.10; AddModuleDescription('dojo.pl', 'Using Dojo Instead Of Wiki Markup'); our ($q, $HtmlHeaders, @MyRules, @MyInitVariables, %CookieParameters); our (@DojoPlugins, $DojoTheme); $DojoTheme = 'tundra'; # Configure toolbar example: # @DojoPlugins = qw(copy cut paste | bold); # Render all HTML tags except for }; } # theme has to match $DojoTheme (so that it gets used for the body tag) delete $CookieParameters{theme}; SetParam('theme', $DojoTheme); } *OldWysiwygGetTextArea = \&GetTextArea; *GetTextArea = \&NewWysiwygGetTextArea; sub NewWysiwygGetTextArea { my ($name, $text, $rows) = @_; if ($name eq 'text') { # The dojoeditor is the visible thing that is not submitted; we # need some javascript that will copy the content of the # dojoeditor to the dojotext field which has the right name. my %params = (-id=>'dojoeditor', -default=>$text, -rows=>$rows||25, -columns=>78, -override=>1, -dojoType=>'dijit.Editor'); $params{-plugins} = "[" . join(",", map{"'$_'"} @DojoPlugins) . "]" if @DojoPlugins; return $q->textarea(%params) . $q->hidden(-id=>'dojotext', name=>$name); } else { return OldWysiwygGetTextArea(@_); } } *OldWysiwygImproveDiff = \&ImproveDiff; *ImproveDiff = \&NewWysiwygImproveDiff; sub NewWysiwygImproveDiff { my $old = OldWysiwygImproveDiff(@_); my $new = ''; my $protected = 0; # fix diff inserting change boundaries inside tags $old =~ s!&([a-z]+);!&$1;!g; $old =~ s!&([a-z]+);!&$1;!g; # unquote named html entities $old =~ s/\&([a-z]+);/&$1;/g; foreach my $str (split(/(|<\/strong>)/, $old)) { # Don't remove HTML tags affected by changes. $protected = 1 if $str eq ''; # strip html tags and don't get confused with the < and > created # by diff! $str =~ s/\<.*?\>//g unless $protected; $protected = 0 if $str eq ''; $new .= $str; } return $new; }