1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#!/usr/bin/perl
package IkiWiki::Plugin::cutpaste;
use warnings;
use strict;
use IkiWiki 2.00;
use UNIVERSAL;
my %savedtext;
sub import { #{{{
hook(type => "getsetup", id => "cutpaste", call => \&getsetup);
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);
} # }}}
sub getsetup () { #{{{
return
plugin => {
safe => 1,
rebuild => undef,
},
} #}}}
sub preprocess_cut (@) { #{{{
my %params=@_;
foreach my $param (qw{id text}) {
if (! exists $params{$param}) {
error sprintf(gettext('%s parameter is required'), $param);
}
}
$savedtext{$params{page}} = {} if not exists $savedtext{$params{"page"}};
$savedtext{$params{page}}->{$params{id}} = $params{text};
return "" if defined wantarray;
} # }}}
sub preprocess_copy (@) { #{{{
my %params=@_;
foreach my $param (qw{id text}) {
if (! exists $params{$param}) {
error sprintf(gettext('%s parameter is required'), $param);
}
}
$savedtext{$params{page}} = {} if not exists $savedtext{$params{"page"}};
$savedtext{$params{page}}->{$params{id}} = $params{text};
return IkiWiki::preprocess($params{page}, $params{destpage},
IkiWiki::filter($params{page}, $params{destpage}, $params{text})) if defined wantarray;
} # }}}
sub preprocess_paste (@) { #{{{
my %params=@_;
foreach my $param (qw{id}) {
if (! exists $params{$param}) {
error sprintf(gettext('%s parameter is required'), $param);
}
}
if (! exists $savedtext{$params{page}}) {
error gettext('no text was copied in this page');
}
if (! exists $savedtext{$params{page}}->{$params{id}}) {
error sprintf(gettext('no text was copied in this page with id %s'), $params{id});
}
return IkiWiki::preprocess($params{page}, $params{destpage},
IkiWiki::filter($params{page}, $params{destpage}, $savedtext{$params{page}}->{$params{id}}));
} # }}}
1;
|