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.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 20
21 () 21 ()
22} 22}
55 }); 55 });
56 }; 56 };
57 57
58 for ($text) { 58 for ($text) {
59 $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/ });
60
61 urxvt::safe
62 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ }); 60 $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
63 61
64 /^(\S+):(\d+):?$/ 62 /^(\S+):(\d+):?$/
65 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/ });
66 64
67 /%[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]/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines