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/Log.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 'docs/Irssi/Log.pod')
-rw-r--r-- | docs/Irssi/Log.pod | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/docs/Irssi/Log.pod b/docs/Irssi/Log.pod index 673a183..68163a2 100644 --- a/docs/Irssi/Log.pod +++ b/docs/Irssi/Log.pod @@ -6,7 +6,8 @@ Irssi::Log =head1 FIELDS -Log->{} +C<Log-E<gt>{}> + fname - Log file name real_fname - The actual opened log file (after %d.%m.Y etc. are expanded) opened - Log file is open @@ -20,27 +21,30 @@ Log->{} =head1 METHODS +=head2 C<update> + +Add log to list of logs / save changes to config file. + +=head2 C<close> + +Destroy log file. + +=head2 C<start_logging> -Log::update() - Add log to list of logs / save changes to config file. +Open log file and start logging. +=head2 C<stop_logging> -Log::close() - Destroy log file. +Close log file. -Log::start_logging() - Open log file and start logging. +=head2 C<item_add $type, $name, $server> -Log::stop_logging() - Close log file. +Add log item to log. -Log::item_add(type, name, server) - Add log item to log. +=head2 C<item_destroy $item> -Log::item_destroy(item) - Remove log item from log. +Remove log item from log. +=head2 C<item_find $type, $item, $server> -Logitem -Log::item_find(type, item, server) - Find item from log. +Find item from log. Returns L<Irssi::Logitem> |