Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added a tip about intergrating Disqus comments into your blog.
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
editdiff.pm
diff --git
a/IkiWiki/Plugin/editdiff.pm
b/IkiWiki/Plugin/editdiff.pm
index 2a70ca0b81a49c3113e6074bcb797d94e41e133e..2b1fac55d18122e7a7dd335845b10b880277ff90 100644
(file)
--- a/
IkiWiki/Plugin/editdiff.pm
+++ b/
IkiWiki/Plugin/editdiff.pm
@@
-9,10
+9,19
@@
use HTML::Entities;
use IPC::Open2;
sub import { #{{{
use IPC::Open2;
sub import { #{{{
+ hook(type => "getsetup", id => "editdiff", call => \&getsetup);
hook(type => "formbuilder_setup", id => "editdiff",
call => \&formbuilder_setup);
} #}}}
hook(type => "formbuilder_setup", id => "editdiff",
call => \&formbuilder_setup);
} #}}}
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => 0,
+ },
+} #}}}
+
sub diff ($$) { #{{{
my $orig=shift;
my $content=shift;
sub diff ($$) { #{{{
my $orig=shift;
my $content=shift;
@@
-46,12
+55,11
@@
sub diff ($$) { #{{{
sub formbuilder_setup { #{{{
my %params=@_;
my $form=$params{form};
sub formbuilder_setup { #{{{
my %params=@_;
my $form=$params{form};
- my $page=$form->field("page");
- return if $form->title ne "editpage"
- || $form->field("do") ne "edit";
+ return if defined ! $form->field("do") || $form->field("do") ne "edit";
- $page = IkiWiki::titlepage(IkiWiki::possibly_foolish_untaint($page));
+ my $page=$form->field("page");
+ $page = IkiWiki::possibly_foolish_untaint($page);
return unless exists $pagesources{$page};
push @{$params{buttons}}, "Diff";
return unless exists $pagesources{$page};
push @{$params{buttons}}, "Diff";