2008-07-27 00:24:11 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::cutpaste;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2008-12-23 22:34:19 +01:00
|
|
|
use IkiWiki 3.00;
|
2008-07-27 00:24:11 +02:00
|
|
|
|
|
|
|
my %savedtext;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-08-03 22:40:12 +02:00
|
|
|
hook(type => "getsetup", id => "cutpaste", call => \&getsetup);
|
2008-07-27 00:24:11 +02:00
|
|
|
hook(type => "preprocess", id => "cut", call => \&preprocess_cut, scan => 1);
|
|
|
|
hook(type => "preprocess", id => "copy", call => \&preprocess_copy, scan => 1);
|
|
|
|
hook(type => "preprocess", id => "paste", call => \&preprocess_paste);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 00:24:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-08-03 22:40:12 +02:00
|
|
|
return
|
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => undef,
|
2010-02-12 12:35:52 +01:00
|
|
|
section => "widget",
|
2008-08-03 22:40:12 +02:00
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-08-03 22:40:12 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess_cut (@) {
|
2008-07-27 00:24:11 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
foreach my $param (qw{id text}) {
|
|
|
|
if (! exists $params{$param}) {
|
2008-07-27 05:15:35 +02:00
|
|
|
error sprintf(gettext('%s parameter is required'), $param);
|
2008-07-27 00:24:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$savedtext{$params{page}} = {} if not exists $savedtext{$params{"page"}};
|
|
|
|
$savedtext{$params{page}}->{$params{id}} = $params{text};
|
|
|
|
|
|
|
|
return "" if defined wantarray;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 00:24:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess_copy (@) {
|
2008-07-27 00:24:11 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
foreach my $param (qw{id text}) {
|
|
|
|
if (! exists $params{$param}) {
|
2008-07-27 05:15:35 +02:00
|
|
|
error sprintf(gettext('%s parameter is required'), $param);
|
2008-07-27 00:24:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$savedtext{$params{page}} = {} if not exists $savedtext{$params{"page"}};
|
|
|
|
$savedtext{$params{page}}->{$params{id}} = $params{text};
|
|
|
|
|
remove unnecessary and troublesome filter calls
This better defines what the filter hook is passed, to only be the raw,
complete text of a page. Not some snippet, or data read in from an
unrelated template.
Several plugins that filtered text that originates from an (already
filtered) page were modified not to do that. Note that this was not
done very consistently before; other plugins that receive text from a
page called preprocess on it w/o first calling filter.
The template plugin gets text from elsewhere, and was also changed not to
filter it. That leads to one known regression -- the embed plugin cannot
be used to embed stuff in templates now. But that plugin is deprecated
anyway.
Later we may want to increase the coverage of what is filtered. Perhaps
a good goal would be to allow writing a filter plugin that filters
out unwanted words, from any input. We're not there yet; not only
does the template plugin load unfiltered text from its templates now,
but so can the table plugin, and other plugins that use templates (like
inline!). I think we can cross that bridge when we come to it. If I wanted
such a censoring plugin, I'd probably make it use a sanitize hook instead,
for the better coverage.
For now I am concentrating on the needs of the two non-deprecated users
of filter. This should fix bugs/po_vs_templates, and it probably fixes
an obscure bug around txt's use of filter for robots.txt.
2010-07-04 21:00:51 +02:00
|
|
|
return IkiWiki::preprocess($params{page}, $params{destpage}, $params{text})
|
|
|
|
if defined wantarray;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 00:24:11 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess_paste (@) {
|
2008-07-27 00:24:11 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
foreach my $param (qw{id}) {
|
|
|
|
if (! exists $params{$param}) {
|
2008-07-27 05:15:35 +02:00
|
|
|
error sprintf(gettext('%s parameter is required'), $param);
|
2008-07-27 00:24:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! exists $savedtext{$params{page}}) {
|
2008-07-27 05:15:35 +02:00
|
|
|
error gettext('no text was copied in this page');
|
2008-07-27 00:24:11 +02:00
|
|
|
}
|
|
|
|
if (! exists $savedtext{$params{page}}->{$params{id}}) {
|
2008-07-27 05:15:35 +02:00
|
|
|
error sprintf(gettext('no text was copied in this page with id %s'), $params{id});
|
2008-07-27 00:24:11 +02:00
|
|
|
}
|
|
|
|
|
remove unnecessary and troublesome filter calls
This better defines what the filter hook is passed, to only be the raw,
complete text of a page. Not some snippet, or data read in from an
unrelated template.
Several plugins that filtered text that originates from an (already
filtered) page were modified not to do that. Note that this was not
done very consistently before; other plugins that receive text from a
page called preprocess on it w/o first calling filter.
The template plugin gets text from elsewhere, and was also changed not to
filter it. That leads to one known regression -- the embed plugin cannot
be used to embed stuff in templates now. But that plugin is deprecated
anyway.
Later we may want to increase the coverage of what is filtered. Perhaps
a good goal would be to allow writing a filter plugin that filters
out unwanted words, from any input. We're not there yet; not only
does the template plugin load unfiltered text from its templates now,
but so can the table plugin, and other plugins that use templates (like
inline!). I think we can cross that bridge when we come to it. If I wanted
such a censoring plugin, I'd probably make it use a sanitize hook instead,
for the better coverage.
For now I am concentrating on the needs of the two non-deprecated users
of filter. This should fix bugs/po_vs_templates, and it probably fixes
an obscure bug around txt's use of filter for robots.txt.
2010-07-04 21:00:51 +02:00
|
|
|
return IkiWiki::preprocess($params{page}, $params{destpage},
|
|
|
|
$savedtext{$params{page}}->{$params{id}});
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-27 00:24:11 +02:00
|
|
|
|
|
|
|
1;
|