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

Comparing rxvt-unicode/src/perl/selection-popup (file contents):
Revision 1.10 by root, Sat Jan 14 09:28:57 2006 UTC vs.
Revision 1.12 by root, Wed Jan 18 10:11:03 2006 UTC

12} 12}
13 13
14sub on_start { 14sub on_start {
15 my ($self) = @_; 15 my ($self) = @_;
16 16
17 $self->{browser} = urxvt::untaint $self->x_resource ("urlLauncher") || "x-www-browser"; 17 $self->{browser} = $self->x_resource ("urlLauncher") || "x-www-browser";
18 18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20 20
21 () 21 ()
22} 22}
23
24our @hook;
23 25
24sub on_button_press { 26sub on_button_press {
25 my ($self, $event) = @_; 27 my ($self, $event) = @_;
26 28
27 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) { 29 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
55 }); 57 });
56 }; 58 };
57 59
58 for ($text) { 60 for ($text) {
59 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 61 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
60
61 urxvt::safe
62 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ }); 62 $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
63 63
64 /^(\S+):(\d+):?$/ 64 /^(\S+):(\d+):?$/
65 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 65 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
66 66
67 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 67 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
70 /[\\"'\ \t|&;<>()]/ 70 /[\\"'\ \t|&;<>()]/
71 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 71 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
72 72
73 /^(http|ftp|telnet|irc|news):\// 73 /^(http|ftp|telnet|irc|news):\//
74 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ }); 74 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ });
75
76 for my $hook (@hook) {
77 if (my ($title, $cb) = $hook->($popup)) {
78 $add_button->($title, $cb);
79 }
80 }
75 81
76 if (/^\s*((?:0x)?\d+)\s*$/) { 82 if (/^\s*((?:0x)?\d+)\s*$/) {
77 $popup->add_title (sprintf "%20s", eval $1); 83 $popup->add_title (sprintf "%20s", eval $1);
78 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1); 84 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
79 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1); 85 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines