summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command/UserControl.pm
AgeCommit message (Collapse)Author
2003-03-28clean up (nuke \s*$)fukachan
2003-03-23FNF: fix commentsfukachan
2003-03-18modify chaddr algorithm: "del() and add()" -> "add() and del()".fukachan
# XXX WHICH STEP IS IT BETTER TO UPDATE LIST ? # [I] 1. remove the old address only if $new_address not included. # 2. add the newadderss # [II] 1. add the newadderss # 2. remove the old address only if $new_address not included. # # Plan [II] is better for authentication without reader lock. # Consider the case the process executing chaddr is preempted, and # another distributing process starts to run.
2003-03-18remove giant lock and use fine granuality locks now.fukachan
2003-03-17implement user_chaddr() and get_user_list().fukachan
2003-02-15use FML::Restriction::Basefukachan
2003-02-13user{add,del}() checks input $address.fukachan
nuke the corresponding TODO.
2003-02-09cosmetics (white spaces)fukachan
2003-02-01try to remove address matched by $cred->has_address_in_map(), notfukachan
address specified by the function argument.
2003-02-01try exact matching just before changing user.fukachan
2003-01-09fix copyrightfukachan
2003-01-07shorten log messagesfukachan
2002-12-23fix comments.fukachan
cosmetics (sort).
2002-09-22add section on FNFfukachan
2002-09-11fml5 -> fml8fukachan
2002-08-08change arguments of credential functions to clarify the target address:fukachan
e.g. is_member($curproc, $args) -> is_member(addr) modified functions: o is_member() o is_privileged_member() o is_recipient() o match_system_accounts()
2002-08-03white spacesfukachan
2002-07-24change argv of FML::Credential::has_address_in_map():fukachan
($map, $address) -> ($map, $config, $address)
2002-07-23reconstruct SQL functions in IO::Adapterfukachan
new IO::Adapter $map, $config;
2002-07-17define printing style format such as 'text', 'html', ...fukachan
you can control it by the following access methods, get_print_style() and set_print_style(mode)
2002-07-14copy message and send it to $maintainer toofukachan
use reply_message*() with $msg_args to copy the message if needed where $msg_args = { always_cc => $maintainer } or $msg_args = { recipient => $maintinaer } pertinently.
2002-07-14use message_nl( {add,del}_{ok,fail} ... ) as a replyfukachan
2002-07-02clean up/fix commentsfukachan
2002-06-30clean up: nuke \s*$fukachan
2002-06-25userlist: print $addr, <br> if under CGIfukachan
2002-06-21ignore non-existed files, not croak()fukachan
2002-06-21use IO::Adapter->get_next_key() not getline() for member list upfukachan
2002-04-10whitespace nichefukachan
2002-04-07admin_member_passwd_maps -> admin_member_password_mapsfukachan
more friendly variable name syntax more comments, documents
2002-04-01enable "admin list" commandfukachan
2002-03-30white space cosmetics: nuke \s*$fukachan
2002-03-19define FML::Command::UserControl class to share user control codes.fukachan
modified Admin::{subscribe,unsubscribe} commands to use it.