milkbone57 22 years ago
parent
commit
d7fdadc416
  1. 2
      Milkbone.pm
  2. 1
      docs/BUGS.txt
  3. 2
      plugins/Tk-Conf/Milkbone/Conf.pm
  4. 1
      plugins/Tk-Conf/Tk-Conf.pl
  5. 7
      plugins/Tk-GUI/Tk/Browser.pm

2
Milkbone.pm

@ -24,7 +24,7 @@ require Exporter;
our @ISA = qw( Exporter ); our @ISA = qw( Exporter );
our @EXPORT = qw( hook is_running abort queued_hook register_hook option path data %ARGS slurp our @EXPORT = qw( hook is_running abort queued_hook register_hook option path data %ARGS slurp
deregister_hook strip_html user_file set_option MOSLoop set_interval unload_plugin load_plugin init_plugin reload_core reload_plugin); deregister_hook strip_html user_file set_option MOSLoop set_interval unload_plugin load_plugin init_plugin reload_core reload_plugin nix win32);
our @EXPORT_OK = qw( ); our @EXPORT_OK = qw( );
my ($running, $dirty); my ($running, $dirty);

1
docs/BUGS.txt

@ -1,4 +1,3 @@
BROWSER DOESN'T FORK ON WIN32
double type double type
warnings emitted (eg the bug in Tk::Browser) warnings emitted (eg the bug in Tk::Browser)
multiple styles in browseedit multiple styles in browseedit

2
plugins/Tk-Conf/Milkbone/Conf.pm

@ -20,6 +20,7 @@ sub ClassInit
sub init sub init
{ {
my ($self) = @_; my ($self) = @_;
$self->withdraw;
$self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->Scrolled( $self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->Scrolled(
"TextUndo", -scrollbars => 'oe', -background => 'white', -wrap => 'word')-> "TextUndo", -scrollbars => 'oe', -background => 'white', -wrap => 'word')->
@ -33,6 +34,7 @@ sub init
$self->{text}->Load('mb.conf'); $self->{text}->Load('mb.conf');
$self->deiconify;
$self->{text}->focus; $self->{text}->focus;
hook("tk_seticon", -wnd => $self); hook("tk_seticon", -wnd => $self);
} }

1
plugins/Tk-Conf/Tk-Conf.pl

@ -12,7 +12,6 @@ my $mw = hook("tk_getmain");
register_hook "dlg_edit_conf", sub { register_hook "dlg_edit_conf", sub {
my $file = $mw->MBConf; my $file = $mw->MBConf;
$file->init; $file->init;
$file->focus;
}; };
1; 1;

7
plugins/Tk-GUI/Tk/Browser.pm

@ -130,7 +130,12 @@ sub a_begin
} }
else else
{ {
system("$cmd $_[1]"); eval 'use Win32::Process; use Win32; ' .
'my ($obj, $cmd);' .
'$cmd = ' . "'" . 'C:\Program Files\Internet Explorer\iexplore.exe' . "';" .
'Win32::Process::Create($obj, "$cmd", "$cmd $_[1]", 0, 32, abs_path) or '.
'die Win32::FormatMessage( Win32::GetLastError() );'
or die "$@ $!";
} }
}, $href]); }, $href]);

Loading…
Cancel
Save