ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection
(Generate patch)

Comparing rxvt-unicode/src/perl/selection (file contents):
Revision 1.26 by root, Sun Jan 15 05:14:12 2006 UTC vs.
Revision 1.27 by elmex, Tue Jan 17 13:07:16 2006 UTC

1#! perl 1#! perl
2use Digest::MD5 qw/md5_hex/;
3
4my $timers = {};
5my $pastebin_cmd;
6my $pastebin_url;
7
8sub on_start {
9 my ($self) = @_;
10 $pastebin_cmd =
11 (urxvt::untaint $self->x_resource ("selection-pastebin-cmd"))
12 or "scp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
13
14 $pastebin_url =
15 (urxvt::untaint $self->x_resource ("selection-pastebin-url"))
16 or "http://www.ta-sa.org/files/txt/";
17 ();
18}
19
20sub upload_paste {
21 my ($self) = @_;
22
23 my $txt = $self->selection;
24 my $h = md5_hex ($txt);
25
26 my $fn = "/tmp/$h.txt";
27
28 my $msg = "uploaded $h.txt";
29
30 if (open my $o, ">" . $fn) {
31 print $o $txt;
32 close $o;
33 } else {
34 $msg = "couldn't write $fn: $!";
35 }
36
37 my $cmd = $pastebin_cmd;
38 $cmd =~ s/%/$fn/;
39 unless (system ($cmd) == 0) {
40 $msg = "couldn't upload, '$cmd' failed";
41 }
42
43 $self->selection ($pastebin_url . "$h.txt");
44
45 my $ov = $timers->{ov} = $self->overlay (-1, 0, length ($msg), 1, urxvt::OVERLAY_RSTYLE, 0);
46 $ov->set (0, 0, $msg);
47
48 $timers->{t1} =
49 urxvt::timer
50 ->new
51 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
52 ->interval (1)
53 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; });
54}
2 55
3sub on_keyboard_command { 56sub on_keyboard_command {
4 my ($self, $cmd) = @_; 57 my ($self, $cmd) = @_;
5 58
6 $cmd eq "selection:rot13" 59 $cmd eq "selection:rot13"
7 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 60 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
61
62 $cmd eq "selection:remote-pastebin"
63 and upload_paste ($self);
8 64
9 () 65 ()
10} 66}
11 67
12sub on_init { 68sub on_init {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines