diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-21 19:58:21 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-21 19:58:21 +0000 |
commit | 5a5c6461b163f00b9d4e2c8265b0ebb10c2be2e1 (patch) | |
tree | b26db98f51e33d015642a997dea1654601b918c3 /docs/Irssi/Rawlog.pod | |
parent | stubbed out empty files, mroe content in Guide (diff) | |
download | irssi-scripts-5a5c6461b163f00b9d4e2c8265b0ebb10c2be2e1.tar.gz irssi-scripts-5a5c6461b163f00b9d4e2c8265b0ebb10c2be2e1.zip |
added formats, and some copypasta from default.theme comments into theme
Diffstat (limited to '')
-rw-r--r-- | docs/Irssi/Rawlog.pod | 42 |
1 files changed, 25 insertions, 17 deletions
diff --git a/docs/Irssi/Rawlog.pod b/docs/Irssi/Rawlog.pod index 7f89c64..a5428bf 100644 --- a/docs/Irssi/Rawlog.pod +++ b/docs/Irssi/Rawlog.pod @@ -7,34 +7,42 @@ Irssi::Rawlog =head1 FIELDS -Rawlog->{} +C<Rawlog-E<gt>{}> + logging - The rawlog is being written to file currently nlines - Number of lines in rawlog =head1 METHODS +=head2 C<destroy> + +Destroy the rawlog. + +=head2 C<get_lines> + +Returns all lines in rawlog. + +=head2 C<open $filename> + +Start logging new messages in rawlog to specified file. + +=head2 C<close> + +Stop logging to file. -Rawlog::destroy() - Destroy the rawlog. +=head2 C<save $filename> -Rawlog::get_lines() - Returns all lines in rawlog. +Save the current rawlog history to specified file. -Rawlog::open(filename) - Start logging new messages in rawlog to specified file. +=head2 C<input $str> -Rawlog::close() - Stop logging to file. +Send `str' to raw log as input text. -Rawlog::save(filename) - Save the current rawlog history to specified file. +=head2 C<output $str> -Rawlog::input(str) - Send `str' to raw log as input text. +Send `str' to raw log as output text. -Rawlog::output(str) - Send `str' to raw log as output text. +=head2 C<redirect $str> -Rawlog::redirect(str) - Send `str' to raw log as redirection text. +Send `str' to raw log as redirection text. |