summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Emulate.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-06-04 08:54:53 +0000
committerfukachan <fukachan>2005-06-04 08:54:53 +0000
commit96a487c3b233295d6f11716d9369e6ef6eca1809 (patch)
treec6dbe264890b4779db46ff8784e3cc05774a679c /fml/lib/FML/Process/Emulate.pm
parentc4defffb3671868e208950509ae58779965e6e7a (diff)
downloadfml8-96a487c3b233295d6f11716d9369e6ef6eca1809.tar.gz
fml8-96a487c3b233295d6f11716d9369e6ef6eca1809.tar.bz2
fml8-96a487c3b233295d6f11716d9369e6ef6eca1809.zip
method naming fixed to $curproc->OBJ_METHOD() form (FNF).
get_article_id -> article_get_id set_article_id -> article_set_id config_files_append_to_list -> config_files_append append_to_config_files_list -> config_files_append_to_list get_config_files_list -> config_files_get_list load_config_files -> config_files_load set_config_files_list -> config_files_set_list verify_sender_credential -> credential_verify_sender get_current_process_ml_name -> current_process_get_ml_name set_current_process_ml_name -> current_process_set_ml_name fix_perl_include_path -> env_fix_perl_include_path parse_exception -> exception_parse parse_incoming_message -> incoming_message_parse clean_up_incoming_queue -> incoming_message_queue_clean_up get_cui_menu -> menu_get_cui_config_file_path get_gui_menu -> menu_get_gui_config_file_path resolve_ml_specific_variables -> ml_variables_resolve outgoing_message_open_channel -> outgoing_message_cache_open open_outgoing_message_channel -> outgoing_message_open_channel inform_reply_messages -> reply_message_inform prepare_file_to_return -> reply_message_prepare_template clean_up_tmpfiles -> tmp_files_clean_up reset_umask -> umask_reset set_umask_as_public -> umask_set_as_public
Diffstat (limited to 'fml/lib/FML/Process/Emulate.pm')
-rw-r--r--fml/lib/FML/Process/Emulate.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/fml/lib/FML/Process/Emulate.pm b/fml/lib/FML/Process/Emulate.pm
index 25432abf..3a5b8b9e 100644
--- a/fml/lib/FML/Process/Emulate.pm
+++ b/fml/lib/FML/Process/Emulate.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2004,2005 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Emulate.pm,v 1.5 2004/12/19 11:04:43 fukachan Exp $
+# $FML: Emulate.pm,v 1.6 2005/05/27 03:03:37 fukachan Exp $
#
package FML::Process::Emulate;
@@ -84,9 +84,9 @@ sub prepare
$config->load_file($default_config_cf);
# go !
- $curproc->resolve_ml_specific_variables($resolver_args);
- $curproc->load_config_files();
- $curproc->fix_perl_include_path();
+ $curproc->ml_variables_resolve($resolver_args);
+ $curproc->config_files_load();
+ $curproc->env_fix_perl_include_path();
$curproc->scheduler_init();
$curproc->log_message_init();
$curproc->_fml4_emulate();
@@ -139,7 +139,7 @@ sub _fml4_emulate_post_article_process
}
if ($config->yes('use_article_post_function')) {
- $curproc->parse_incoming_message();
+ $curproc->incoming_message_parse();
}
else {
$curproc->logerror("use of distribute program prohibited");
@@ -169,7 +169,7 @@ sub _fml4_emulate_command_mail_process
}
if ($config->yes('use_command_mail_function')) {
- $curproc->parse_incoming_message();
+ $curproc->incoming_message_parse();
}
else {
$curproc->logerror("use of command_mail program prohibited");
@@ -205,7 +205,7 @@ sub _fml4_emulate_error_process
}
if ($config->yes('use_error_mail_analyzer_function')) {
- $curproc->parse_incoming_message();
+ $curproc->incoming_message_parse();
}
else {
$curproc->logerror("use of error_mail program prohibited");