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

Comparing rxvt-unicode/src/perl/selection-pastebin (file contents):
Revision 1.3 by root, Tue Jan 17 17:01:54 2006 UTC vs.
Revision 1.12 by root, Thu Jan 19 19:51:08 2006 UTC

1#! perl 1#! perl
2 2
3my $timers = {};
4my $pastebin_cmd; 3my $pastebin_cmd;
5my $pastebin_url; 4my $pastebin_url;
6
7sub on_start {
8 my ($self) = @_;
9 $pastebin_cmd =
10 $self->x_resource ("selection-pastebin.cmd")
11 or "scp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
12
13 $pastebin_url =
14 $self->x_resource ("selection-pastebin.url")
15 or "http://www.ta-sa.org/files/txt/";
16
17 ()
18}
19 5
20sub upload_paste { 6sub upload_paste {
21 my ($self) = @_; 7 my ($self) = @_;
22 8
23 require Digest::MD5; 9 require Digest::MD5;
25 my $txt = $self->selection; 11 my $txt = $self->selection;
26 my $filename = Digest::MD5::md5_hex ($txt) . ".txt"; 12 my $filename = Digest::MD5::md5_hex ($txt) . ".txt";
27 13
28 my $tmpfile = "/tmp/$filename"; 14 my $tmpfile = "/tmp/$filename";
29 15
30 my $msg = "uploaded $filename"; 16 my $msg = "uploaded as $filename";
31 17
32 if (open my $o, ">" . $tmpfile) { 18 if (open my $o, ">", $tmpfile) {
19 chmod 0644, $tmpfile;
33 print $o $txt; 20 print $o $txt;
34 close $o; 21 close $o;
35 } else { 22 } else {
36 $msg = "couldn't write $tmpfile: $!"; 23 $msg = "couldn't write $tmpfile: $!";
37 } 24 }
46 $self->selection ($url); 33 $self->selection ($url);
47 } else { 34 } else {
48 $msg = "couldn't upload, '$cmd' failed"; 35 $msg = "couldn't upload, '$cmd' failed";
49 } 36 }
50 37
38 unlink $tmpfile;
39
51 my $ov = $timers->{ov} = $self->overlay (-1, 0, length ($msg), 1, urxvt::OVERLAY_RSTYLE, 0); 40 my $ov = $self->overlay (-1, 0, length $msg, 1, urxvt::OVERLAY_RSTYLE, 0);
52 $ov->set (0, 0, $msg); 41 $ov->set (0, 0, $msg);
53 42
54 $timers->{t1} = 43 my $timer; $timer =
55 urxvt::timer 44 urxvt::timer
56 ->new 45 ->new
57 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
58 ->interval (1) 46 ->after (5)
59 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; }); 47 ->cb (sub { undef $timer; undef $ov; });
48}
49
50sub on_start {
51 my ($self) = @_;
52
53 $pastebin_cmd = $self->x_resource ("selection-pastebin.cmd")
54 || "rcp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
55
56 $pastebin_url = $self->x_resource ("selection-pastebin.url")
57 || "http://www.ta-sa.org/files/txt/%";
58
59 push @{ $self->{term}{selection_popup_hook} }, sub {
60 ("pastebin upload" => sub { $self->upload_paste })
61 };
62
63 ()
60} 64}
61 65
62sub on_keyboard_command { 66sub on_keyboard_command {
63 my ($self, $cmd) = @_; 67 my ($self, $cmd) = @_;
64 68
65 $cmd eq "selection-pastebin:remote-pastebin" 69 if ($cmd eq "selection-pastebin:remote-pastebin") {
66 and upload_paste ($self); 70 $self->upload_paste;
71 }
67 72
68 () 73 ()
69} 74}
70 75

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines