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.28 by elmex, Tue Jan 17 13:19:45 2006 UTC vs.
Revision 1.30 by elmex, Tue Jan 17 16:53:47 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 $filename = md5_hex ($txt) . ".txt";
25
26 my $tmpfile = "/tmp/$filename";
27
28 my $msg = "uploaded $filename";
29
30 if (open my $o, ">" . $tmpfile) {
31 print $o $txt;
32 close $o;
33 } else {
34 $msg = "couldn't write $tmpfile: $!";
35 }
36
37 my $cmd = $pastebin_cmd;
38 $cmd =~ s/%/$tmpfile/;
39
40 if (system ($cmd) == 0) {
41
42 my $url = $pastebin_url;
43 $url =~ s/%/$filename/;
44
45 $self->selection ($url);
46 } else {
47 $msg = "couldn't upload, '$cmd' failed";
48 }
49
50 my $ov = $timers->{ov} = $self->overlay (-1, 0, length ($msg), 1, urxvt::OVERLAY_RSTYLE, 0);
51 $ov->set (0, 0, $msg);
52
53 $timers->{t1} =
54 urxvt::timer
55 ->new
56 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
57 ->interval (1)
58 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; });
59}
60 2
61sub on_keyboard_command { 3sub on_keyboard_command {
62 my ($self, $cmd) = @_; 4 my ($self, $cmd) = @_;
63 5
64 $cmd eq "selection:rot13" 6 $cmd eq "selection:rot13"
65 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 7 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
66
67 $cmd eq "selection:remote-pastebin"
68 and upload_paste ($self);
69 8
70 () 9 ()
71} 10}
72 11
73sub on_init { 12sub on_init {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines