diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-10 20:20:12 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-10 20:20:12 +0000 |
commit | 9bd8711ad413911b63321860a82fc43d6cb760d2 (patch) | |
tree | cb6d716bcaa48fed039a1a2a9021b44b3c2d4d10 /docs/Irssi/Rawlog.pm | |
parent | Forgot to add a whole bunch of files (diff) | |
download | irssi-scripts-9bd8711ad413911b63321860a82fc43d6cb760d2.tar.gz irssi-scripts-9bd8711ad413911b63321860a82fc43d6cb760d2.zip |
more reformattingm, added a guide.pm for general stuff
Diffstat (limited to '')
-rw-r--r-- | docs/Irssi/Rawlog.pm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/Irssi/Rawlog.pm b/docs/Irssi/Rawlog.pm new file mode 100644 index 0000000..7f89c64 --- /dev/null +++ b/docs/Irssi/Rawlog.pm @@ -0,0 +1,40 @@ +__END__ + +=head1 NAME + +Irssi::Rawlog + +=head1 FIELDS + + +Rawlog->{} + logging - The rawlog is being written to file currently + nlines - Number of lines in rawlog + +=head1 METHODS + + +Rawlog::destroy() + Destroy the rawlog. + +Rawlog::get_lines() + Returns all lines in rawlog. + +Rawlog::open(filename) + Start logging new messages in rawlog to specified file. + +Rawlog::close() + Stop logging to file. + +Rawlog::save(filename) + Save the current rawlog history to specified file. + +Rawlog::input(str) + Send `str' to raw log as input text. + +Rawlog::output(str) + Send `str' to raw log as output text. + +Rawlog::redirect(str) + Send `str' to raw log as redirection text. + |