From 2613152d4c5af38f75f227973f44cf7214af9dde Mon Sep 17 00:00:00 2001 From: milkbone57 Date: Fri, 3 Oct 2003 23:08:45 +0000 Subject: [PATCH] Core cleanup --- guid/tk.pl | 41 ++++++++++++++++ guid/tktest.pl | 35 ++++++++++++++ lib/Milkbone.pm | 107 ++--------------------------------------- lib/Milkbone/Plugin.pm | 6 ++- lib/Milkbone/Util.pm | 102 +++++++++++++++++++++++++++++++++++++++ milkbone | 8 +-- sample.conf | 5 ++ 7 files changed, 195 insertions(+), 109 deletions(-) create mode 100644 guid/tk.pl create mode 100644 guid/tktest.pl create mode 100644 lib/Milkbone/Util.pm create mode 100644 sample.conf diff --git a/guid/tk.pl b/guid/tk.pl new file mode 100644 index 0000000..d032510 --- /dev/null +++ b/guid/tk.pl @@ -0,0 +1,41 @@ +# ----------------------------------------------------------------------------- +# tk.pl +# Desc: Default guidance script; loads and intializes the Tk interface +# ----------------------------------------------------------------------------- + +use strict; +use warnings; + +use Milkbone::Hooks qw(create_logon_prompt pre_mainloop mainloop + post_mainloop); + +Milkbone->init; + +# the main GUI module - code for ticking, etc. +load_plugin "Tk-GUI"; + +# load each GUI component +load_plugin "Tk-About"; +load_plugin "Tk-AddBuddy"; +load_plugin "Tk-BList"; +load_plugin "Tk-Convo"; +load_plugin "Tk-Chat"; +load_plugin "Tk-Conf"; +load_plugin "Tk-File"; +load_plugin "Tk-Logon"; +load_plugin "Tk-PluginsConf"; +load_plugin "Tk-Profile"; + +load_plugin "Net-OSCAR"; + +# display the logon prompt +create_logon_prompt; + +pre_mainloop; + +# begin ticking +mainloop; + +post_mainloop; + +return 1; diff --git a/guid/tktest.pl b/guid/tktest.pl new file mode 100644 index 0000000..dba250c --- /dev/null +++ b/guid/tktest.pl @@ -0,0 +1,35 @@ +# ----------------------------------------------------------------------------- +# tktest.pl +# Desc: Testing guidance script; loads and intializes the Tk interfacey +# ----------------------------------------------------------------------------- + +use Milkbone::Hooks qw(create_logon_prompt pre_mainloop mainloop + post_mainloop protocol_signon); + +Milkbone->init; + +load_plugin "Tk-GUI"; + +load_plugin "Tk-About"; +load_plugin "Tk-AddBuddy"; +load_plugin "Tk-BList"; +load_plugin "Tk-Convo"; +load_plugin "Tk-Chat"; +load_plugin "Tk-Conf"; +load_plugin "Tk-File"; +load_plugin "Tk-Logon"; +load_plugin "Tk-PluginsConf"; +load_plugin "Tk-Profile"; + +# begin unit testing code + +protocol_signon -user => 'test', -pass => 'test'; +data("me") = "lala"; + +# end unit testing code + +pre_mainloop; +mainloop; +post_mainloop; + +1; diff --git a/lib/Milkbone.pm b/lib/Milkbone.pm index 02024e0..fa23b89 100644 --- a/lib/Milkbone.pm +++ b/lib/Milkbone.pm @@ -15,6 +15,8 @@ require Exporter; # include the rest of the core use Milkbone::HookEntry; +use Milkbone::Util; +use Milkbone::Plugin; # equal to the version of the current milkbone release our $VERSION = "0.37"; @@ -26,10 +28,12 @@ push @INC, "./plugins"; # exports our @ISA = qw( Exporter ); -our @EXPORT = qw(hook is_running abort register_hook option data slurp +our @EXPORT = qw(@Milkbone::Util::EXPORT hook is_running abort register_hook + option data slurp deregister_hook strip_html user_file set_option unload_plugin load_plugin reload_core reload_plugin nix win32 %ARGS); +our @EXPORT_OK = qw(@Milkbone::Util::EXPORT_OK); # global variables my ($running, $dirty); @@ -340,113 +344,12 @@ sub error # Utilities # ------------------------------------------ -sub path -{ - my ($in) = @_; - - if($^O =~ /Win32/) - { - $in =~ s~/~\\~g; - } - else - { - $in =~ s~\\~/~g; - } - return $in; -} - sub data : lvalue { $data{$_[0]}; } -sub slurp -{ - my ($file, $no_chomp) = @_; - open(FILE, $file) or return "FAILED"; - my @all = ; - close(FILE) or return "FAILED"; - - chomp @all unless $no_chomp; - - if(wantarray) - { - return @all; - } - else - { - return join('', @all); - } -} - -sub strip_html -{ - $_ = shift; - s/
/\n/gi; - s/<.*?>//gi; - s/&/&/gi; - s/>/>/gi; - s/</ '', + name => '', + package => '' + }; bless $self, $class; } diff --git a/lib/Milkbone/Util.pm b/lib/Milkbone/Util.pm new file mode 100644 index 0000000..597f5b7 --- /dev/null +++ b/lib/Milkbone/Util.pm @@ -0,0 +1,102 @@ +# ----------------------------------------------------------------------------- +# Milkbone::Util +# Generic Milkbone utilities +# ----------------------------------------------------------------------------- + +package Milkbone::Util; + +use strict; +use warnings; + +our @ISA = qw(Exporter); +our @EXPORT_OK = qw(slurp win32 nix nt loaded_files user_path strip_html); + +# read a file in one big slurp +sub slurp +{ + my ($file, $no_chomp) = @_; + open(my $handle, $file) or die "Failed loading $file"; + my @all = <$handle>; + close($handle); + + chomp @all unless $no_chomp; + + if(wantarray) { + return @all; + } + else { + return join('', @all); + } +} + +# general heuristic for removing html from a string +sub strip_html +{ + $_ = shift; + s/
/\n/gi; + s/<.*?>//gi; + s/&/&/gi; + s/>/>/gi; + s/</ + + sorry gotta go + + \ No newline at end of file