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.8 by root, Wed Jan 11 02:13:56 2006 UTC vs.
Revision 1.11 by root, Tue Jan 17 16:22:41 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
21 ()
20} 22}
21 23
22sub on_button_press { 24sub on_button_press {
23 my ($self, $event) = @_; 25 my ($self, $event) = @_;
24 26
53 }); 55 });
54 }; 56 };
55 57
56 for ($text) { 58 for ($text) {
57 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 59 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
58
59 urxvt::safe
60 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ }); 60 $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
61 61
62 /^(\S+):(\d+):?$/ 62 /^(\S+):(\d+):?$/
63 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 63 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
64 64
65 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 65 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
67 67
68 /[\\"'\ \t|&;<>()]/ 68 /[\\"'\ \t|&;<>()]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 69 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 70
71 /^(http|ftp|telnet|irc|news):\// 71 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run $self->{browser}" => sub { system "$self->{browser} \Q$_\E &" }); 72 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ });
73
74 if (/^\s*((?:0x)?\d+)\s*$/) {
75 $popup->add_title (sprintf "%20s", eval $1);
76 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
77 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
78 }
73 } 79 }
74 80
75 $popup->show; 81 $popup->show;
76 82
77 return 1; 83 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines