diff options
| author | fukachan <fukachan> | 2006-10-07 13:05:17 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2006-10-07 13:05:17 +0000 |
| commit | 9c2fdd615846737d388d728cc441aa99a9435389 (patch) | |
| tree | 9ccb5a4989d906141a5a97e1f8311a0647cb4820 /fml/lib/FML/Command/Admin/thread.pm | |
| parent | 0433aa01ab6cab2336e17c2f0c22e2cc28df1e29 (diff) | |
| download | fml8-9c2fdd615846737d388d728cc441aa99a9435389.tar.gz fml8-9c2fdd615846737d388d728cc441aa99a9435389.tar.bz2 fml8-9c2fdd615846737d388d728cc441aa99a9435389.zip | |
fix comments.
space cosmetics.
Diffstat (limited to 'fml/lib/FML/Command/Admin/thread.pm')
| -rw-r--r-- | fml/lib/FML/Command/Admin/thread.pm | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/fml/lib/FML/Command/Admin/thread.pm b/fml/lib/FML/Command/Admin/thread.pm index b4378e1f..bb42f405 100644 --- a/fml/lib/FML/Command/Admin/thread.pm +++ b/fml/lib/FML/Command/Admin/thread.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: thread.pm,v 1.11 2005/08/17 12:08:44 fukachan Exp $ +# $FML: thread.pm,v 1.12 2006/03/04 13:48:29 fukachan Exp $ # package FML::Command::Admin::thread; @@ -27,8 +27,26 @@ show status article thread or manipulate it. =head1 METHODS +=head2 new() + +constructor. + +=head2 need_lock() + +need lock or not. + +=head2 lock_channel() + +return lock channel name. + +=head2 verify_syntax($curproc, $command_context) + +provide command specific syntax checker. + =head2 process($curproc, $command_context) +main command specific routine. + =cut @@ -72,7 +90,7 @@ sub process my $thargs = $curproc->article_thread_init(); my $thread = new Mail::Message::Thread $thargs; - $self->_new_switch($curproc, $command_context, $thread); + $self->_dispatch($curproc, $command_context, $thread); } @@ -81,7 +99,7 @@ sub process # OBJ($curproc) OBJ($command_context) OBJ($thread) # Side Effects: update $recipient_map # Return Value: none -sub _new_switch +sub _dispatch { my ($self, $curproc, $command_context, $thread) = @_; my $config = $curproc->config(); |
