Browse Source

*** empty log message ***

master
milkbone57 22 years ago
parent
commit
bcc3c57dca
  1. 32
      Milkbone.pm
  2. 19
      docs/VERSION.txt
  3. 1
      lib/Milkbone/AllHooks.pm
  4. 19
      lines.pl
  5. 3
      mb.conf
  6. 4
      milkbone.nsi
  7. 16
      plugins/Counterstrike.pl
  8. 7
      plugins/Monitor.pl
  9. 7
      plugins/Net-OSCAR/Net-OSCAR.pl
  10. 2
      plugins/Sound.pl
  11. 2
      plugins/Tk-BList/Milkbone/BList.pm
  12. 6
      plugins/Tk-Convo/Milkbone/Convo.pm
  13. 3
      plugins/Tk-Logon/Milkbone/Logon.pm
  14. 8
      plugins/Tk-PluginsConf/Milkbone/PluginsConf.pm
  15. 3
      plugins/Tk-Profile/Milkbone/Profile.pm

32
Milkbone.pm

@ -199,12 +199,15 @@ sub unload_plugin
delete $plugins{$plugin}; delete $plugins{$plugin};
for(keys %INC) for(loaded_files())
{ {
delete $INC{$_} if /^plugins\/$plugin/; if(/^plugins\/$plugin/)
{
s/plugins\///;
s/\/$plugin\///;
delete $INC{$_};
}
} }
print %plugins;
} }
sub plugin_list sub plugin_list
@ -254,7 +257,7 @@ sub hook
sub reload_core sub reload_core
{ {
delete $INC{'Milkbone.pm'}; delete $INC{'Milkbone.pm'};
eval "require 'Milkbone.pm';"; eval "require 'Milkbone.pm';" or warn "$@";
} }
sub register_hook sub register_hook
@ -403,6 +406,25 @@ sub user_file
return path("$dir/$user/$file"); return path("$dir/$user/$file");
} }
# Stolen from Devel::ptkdb - thanks!
sub loaded_files
{
my @fList = sort {
# sort comparison function block
my $fa = substr($a, 0, 1) ;
my $fb = substr($b, 0, 1) ;
return $a cmp $b if ($fa eq '/') && ($fb eq '/') ;
return -1 if ($fb eq '/') && ($fa ne '/') ;
return 1 if ($fa eq '/' ) && ($fb ne '/') ;
return $a cmp $b ;
} grep s/^_<//, keys %main::;
}
# ------------------------------------------ # ------------------------------------------
# Overrrides # Overrrides
# ------------------------------------------ # ------------------------------------------

19
docs/VERSION.txt

@ -1,6 +1,17 @@
0.355 0.355
-- --
* New interface
* Your typing status is cleared when you close a convo box
* Newlines can be sent with Ctrl-Return; also, pasted newlines are sent properly
* Milkbone::AllHooks now works, allowing shorthand access to hooks
* Fully working unloading, loading, and reloading of plugins and the core
* The buddy list logo can be disabled with HideBListLogo
* Cleaned up some random trace output
* Warning level displayed in profile (accurate to a tenth of a percent)
* Counterstrike now warns people automatically when they warns you
* Monitor can be used to send messages to cell phones
* Monitor now works (even with SMTP authentication)
* Removed PAR usage * Removed PAR usage
* Plugin reloading works pretty darned well * Plugin reloading works pretty darned well
* Uses ~/.milkbone on Linux, AppData on Win2K, XP, etc. and profiles on Win98, etc.; needs testing on NT * Uses ~/.milkbone on Linux, AppData on Win2K, XP, etc. and profiles on Win98, etc.; needs testing on NT
@ -13,7 +24,7 @@
* Removed some useless sounds * Removed some useless sounds
* Now runs on Perl 5.6 on non-Win32 machines * Now runs on Perl 5.6 on non-Win32 machines
* Tray icon now allows hiding and showing of windows (enabled by default) * Tray icon now allows hiding and showing of windows (enabled by default)
* XAMP rewritten - it's bunches cleaner now * XAMP rewritten
* Timeout renamed to AwayTimeout * Timeout renamed to AwayTimeout
* Fixed goodbye bug (again) * Fixed goodbye bug (again)
* Duplicate convo bug fixed * Duplicate convo bug fixed
@ -24,12 +35,12 @@
* < and > work in profiles and convos (you can send them as &lt and &gt for now) * < and > work in profiles and convos (you can send them as &lt and &gt for now)
* Splash screen * Splash screen
* Mouse wheel works in Linux * Mouse wheel works in Linux
* No more boxes in focused widgets on Linux * No more boxes in focused widgets on Linux warn "$ARGS{-user} has been warned";
* Sounds now play asynchronously on Linux (without starting too many play processes) * Sounds now play asynchronously on Linux (without starting too many play processes)
* Fixed weirdness with context menu on Linux * Fixed weirdness with context menu on Linux
* Fancier buttons and menus on Linux (a LOT fancier) * Fancier buttons and menus on Linux (a LOT fancier)
* Preliminary aliasing support * Alias-saving works (but is disabled because alias-reading doesn't work :) )
* Alias-saving works (but is disabled)
* Sound works on Linux (without running artsd) * Sound works on Linux (without running artsd)
* Really fixed the Busted SNAC bug * Really fixed the Busted SNAC bug

1
lib/Milkbone/AllHooks.pm

@ -9,6 +9,7 @@ use Milkbone;
sub AUTOLOAD sub AUTOLOAD
{ {
my $hook = $AUTOLOAD; my $hook = $AUTOLOAD;
$hook = (split(/::/, $hook))[-1];
hook($hook, @_); hook($hook, @_);
} }

19
lines.pl

@ -1,19 +0,0 @@
#!/usr/bin/perl
use strict;
use warnings;
use File::Find;
my $sum;
sub process
{
return if -d;
return unless /\.p(l|m)$/;
my ($res) = `wc -l $_`;
$sum += ($res =~ /(\d+)/)[0];
}
find(\&process, ".");
print $sum . "\n"

3
mb.conf

@ -2,9 +2,10 @@
Goodbye sorry, gotta, go Goodbye sorry, gotta, go
Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-AddBuddy, Tk-Convo Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-AddBuddy, Tk-Convo
Plugins Sound, XAMP, Templog, Monitor Plugins Sound, XAMP, Templog, Monitor, Counterstrike, hooktest
Port 5190 Port 5190
HeavyLogging 0 HeavyLogging 0
SoundsWhileAway 0 SoundsWhileAway 0
Timeout 60 Timeout 60
TrayIcon 1 TrayIcon 1
HideBListLogo 0

4
milkbone.nsi

@ -44,8 +44,8 @@ File images\*
SetOutPath $INSTDIR\sounds SetOutPath $INSTDIR\sounds
File sounds\* File sounds\*
SetOutPath $INSTDIR\plugins SetOutPath $INSTDIR\plugins
File plugins\*.zip File plugins\*
File plugins\*.pl File plugins\*
SetOutPath $INSTDIR SetOutPath $INSTDIR
SetShellVarContext all SetShellVarContext all

16
plugins/Counterstrike.pl

@ -0,0 +1,16 @@
package Counterattack;
use Milkbone;
register_hook("protocol_eviled", sub {
warn "$ARGS{-user} has warned you. Counterstrike initiated.";
hook("protocol_evil", -user => $ARGS{-user});
register_hook("msg_in_$ARGS{-user}", sub {
warn "Counterstrike completed";
hook("protocol_evil", -user => $ARGS{-user});
deregister_hook("msg_in_$ARGS{-user}");
});
});
1;

7
plugins/Monitor.pl

@ -15,19 +15,20 @@ sub sendmail
$smtp->mail("$user\@milkbone.org"); $smtp->mail("$user\@milkbone.org");
$smtp->to('savannah@batkins.com'); $smtp->to('savannah@batkins.com');
$text =~ s/<.*?>//g;
$smtp->data(); $smtp->data();
$smtp->datasend("To: \n"); $smtp->datasend("To: \n");
$smtp->datasend("From: Milkbone Monitor <$user\@milkbone.org>\n"); $smtp->datasend("From: Milkbone Monitor <$user\@milkbone.org>\n");
$smtp->datasend("Subject: $sub \n"); $smtp->datasend("Subject: $user - $sub \n");
$smtp->datasend("\n"); $smtp->datasend("\n");
$smtp->datasend($text); $smtp->datasend("$user - $text");
$smtp->dataend(); $smtp->dataend();
$smtp->quit; $smtp->quit;
} }
register_hook("msg_in", sub { register_hook("msg_in", sub {
print "msg received";
return unless hook("protocol_away_status"); return unless hook("protocol_away_status");
sendmail('Message Received', "Received the following message from $ARGS{-user}:\n\n$ARGS{-msg}", $ARGS{-user}); sendmail('Message Received', "Received the following message from $ARGS{-user}:\n\n$ARGS{-msg}", $ARGS{-user});
}); });

7
plugins/Net-OSCAR/Net-OSCAR.pl

@ -37,6 +37,8 @@ register_hook("protocol_chat_part", sub { $chats{$ARGS{-chat}}->part; });
register_hook("protocol_chat_send", sub { $chats{$ARGS{-chat}}->chat_send($ARGS{-msg}, !($ARGS{-reflect} or 1)) }); register_hook("protocol_chat_send", sub { $chats{$ARGS{-chat}}->chat_send($ARGS{-msg}, !($ARGS{-reflect} or 1)) });
register_hook("protocol_commit_blist", sub { $oscar->commit_buddylist; } ); register_hook("protocol_commit_blist", sub { $oscar->commit_buddylist; } );
register_hook("protocol_commit_info", \&commit_info); register_hook("protocol_commit_info", \&commit_info);
register_hook("protocol_evil", sub { $oscar->evil($ARGS{-user}); });
register_hook("protocol_evil_status", sub { return $oscar->buddy($ARGS{-user})->{evil}; } );
register_hook("protocol_get_away", sub { $oscar->{away}; } ); register_hook("protocol_get_away", sub { $oscar->{away}; } );
register_hook("protocol_get_groups", sub { [ $oscar->groups ]; } ); register_hook("protocol_get_groups", sub { [ $oscar->groups ]; } );
register_hook("protocol_get_prof", sub { $oscar->{profile} } ); register_hook("protocol_get_prof", sub { $oscar->{profile} } );
@ -103,6 +105,11 @@ sub signon
$buddies{$_[1]} = 0; $buddies{$_[1]} = 0;
} ); } );
$oscar->set_callback_evil(
sub {
hook("protocol_eviled", -user => $_[2]) if defined($_[2]);
} );
$oscar->set_callback_im_in( $oscar->set_callback_im_in(
sub { sub {
hook("msg_in", -user => $_[1], -msg => $_[2], -away => $_[3]) if $_[1]; hook("msg_in", -user => $_[1], -msg => $_[2], -away => $_[3]) if $_[1];

2
plugins/Sound.pl

@ -11,7 +11,7 @@ register_hook("msg_in", sub { play_sound("msg_in"); });
register_hook("protocol_send_im", sub { play_sound("send_im"); }); register_hook("protocol_send_im", sub { play_sound("send_im"); });
register_hook("buddy_in", sub { play_sound("buddy_in"); }); register_hook("buddy_in", sub { play_sound("buddy_in"); });
register_hook("buddy_out", sub { play_sound("buddy_out"); }); register_hook("buddy_out", sub { play_sound("buddy_out"); });
register_hook("error", sub { play_sound("error"); }); register_hook("error", sub { play_sound("error") if $ARGS{-fatal}; });
register_hook("protocol_signoff", sub { play_sound("signoff"); }); register_hook("protocol_signoff", sub { play_sound("signoff"); });
sub play_sound sub play_sound

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

@ -275,7 +275,7 @@ sub init
$self->configure(-menu => $self->{menu}); $self->configure(-menu => $self->{menu});
$self->Label(-image => $logo)->pack(-side => 'top', -fill => 'both'); $self->Label(-image => $logo)->pack(-side => 'top', -fill => 'both') unless option("HideBListLogo");
$self->{tree} = $self->Scrolled("MBTree" => $self->{tree} = $self->Scrolled("MBTree" =>
-scrollbars => 'oe', -scrollbars => 'oe',

6
plugins/Tk-Convo/Milkbone/Convo.pm

@ -32,7 +32,8 @@ sub on_send
my $self = shift; my $self = shift;
my $msg = $self->{bottom}->to_html('0.0', 'end'); my $msg = $self->{bottom}->to_html('0.0', 'end');
$msg =~ s/\n*//g; $msg =~ s/\n*$//;
$msg =~ s/\r\n?//g;
$msg =~ s/\n/<br>/g; $msg =~ s/\n/<br>/g;
return if($msg eq ""); return if($msg eq "");
@ -82,6 +83,7 @@ sub on_destroy
my ($self) = @_; my ($self) = @_;
hook("remove_convo", -user => shift->{buddy}); hook("remove_convo", -user => shift->{buddy});
$self->{rep_id}->cancel; $self->{rep_id}->cancel;
hook("protocol_set_typing_status", -user => $self->{buddy}, -status => 0);
} }
sub on_prof sub on_prof
@ -213,7 +215,7 @@ sub init
$self->{top}->tagConfigure('buddy_stamp', -foreground => 'blue', -elide => 1, -font => 'times 9 bold'); $self->{top}->tagConfigure('buddy_stamp', -foreground => 'blue', -elide => 1, -font => 'times 9 bold');
$self->{bottom}->bind("<Return>", [$self, "on_send"]); $self->{bottom}->bind("<Return>", [$self, "on_send"]);
$self->{bottom}->bind("<Control-Return>", [sub { $self->{bottom}->insert('insert', "\n")}, $self]); $self->{bottom}->bind("<Control-Return>", [sub { $self->{bottom}->insert('insert', "\r\n")}, $self]);
$self->{bottom}->bind("<Escape>", [$self, "destroy"]); $self->{bottom}->bind("<Escape>", [$self, "destroy"]);
$self->{bottom}->bind("<KeyPress>", [$self, "on_key"]); $self->{bottom}->bind("<KeyPress>", [$self, "on_key"]);
$self->bind("<F2>", [$self, "toggle_stamps"]); $self->bind("<F2>", [$self, "toggle_stamps"]);

3
plugins/Tk-Logon/Milkbone/Logon.pm

@ -13,7 +13,7 @@ Construct Tk::Widget 'MBLogon';
my $mw = hook("tk_getmain"); my $mw = hook("tk_getmain");
my $slogan = "surely this convenience entices you. it's so easy to use, and the surgery to implant it in the base of your skull is so painless that it's no wonder i'm number one. (athf)"; my $slogan = "when you run out of clever slogans,\n you get something like this";
sub ClassInit sub ClassInit
{ {
@ -134,6 +134,7 @@ sub init
$self->update; $self->update;
$self->geometry("+" . int(($mw->screenwidth() / 2) - int($self->width() / 2)) . "+" . int(($mw->screenheight() / 2) - int($self->height() / 2)) ) unless $^O =~ /linux/i; $self->geometry("+" . int(($mw->screenwidth() / 2) - int($self->width() / 2)) . "+" . int(($mw->screenheight() / 2) - int($self->height() / 2)) ) unless $^O =~ /linux/i;
$self->packPropagate(1);
$self->deiconify; $self->deiconify;
$self->bind('<Return>' => [$self, 'on_logon']); $self->bind('<Return>' => [$self, 'on_logon']);

8
plugins/Tk-PluginsConf/Milkbone/PluginsConf.pm

@ -49,7 +49,11 @@ sub on_reload
my ($self) = @_; my ($self) = @_;
my $sel = $self->{list}->curselection; my $sel = $self->{list}->curselection;
return unless $sel; unless($sel)
{
warn "Choose an item from the list.";
return;
}
my $plugin = $self->{list}->get($sel); my $plugin = $self->{list}->get($sel);
@ -87,6 +91,8 @@ sub init
$self->geometry("+" . int(($self->screenwidth() / 2) - int($self->width() / 2)) . "+" . int(($self->screenheight() / 2) - int($self->height() / 2)) ); $self->geometry("+" . int(($self->screenwidth() / 2) - int($self->width() / 2)) . "+" . int(($self->screenheight() / 2) - int($self->height() / 2)) );
$self->deiconify; $self->deiconify;
hook("tk_bindwheel", -window => $self->{list});
$self->update(); $self->update();
$self->focus; $self->focus;
} }

3
plugins/Tk-Profile/Milkbone/Profile.pm

@ -101,6 +101,9 @@ sub init
$self->Label(-text => "$who has been idle for $days days, $hrs hours, $mins minutes")->pack(-ipady => 1, -anchor => 'w'); $self->Label(-text => "$who has been idle for $days days, $hrs hours, $mins minutes")->pack(-ipady => 1, -anchor => 'w');
} }
my $warning_level = hook("protocol_evil_status", -user => $who);
$self->Label(-text => "Warning Level: $warning_level \%")->pack(-ipady => 1, -anchor => 'w');
$self->Label(-text => "Profile Text:", -font => 'arial 9 bold')->pack(-ipady => 1, -anchor => 'w'); $self->Label(-text => "Profile Text:", -font => 'arial 9 bold')->pack(-ipady => 1, -anchor => 'w');
$self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')-> $self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->

Loading…
Cancel
Save