summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Configure.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-06-04 08:49:05 +0000
committerfukachan <fukachan>2005-06-04 08:49:05 +0000
commitdde828a99ad5c8e0afc414ddcc98068aee21831e (patch)
tree9aaefbf1d0dc89982df0d577404f036aeeeb63f1 /fml/lib/FML/Process/Configure.pm
parent798d46f20f1805d35c7a35f0a0ca6ac75926ddfa (diff)
downloadfml8-dde828a99ad5c8e0afc414ddcc98068aee21831e.tar.gz
fml8-dde828a99ad5c8e0afc414ddcc98068aee21831e.tar.bz2
fml8-dde828a99ad5c8e0afc414ddcc98068aee21831e.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/Configure.pm')
-rw-r--r--fml/lib/FML/Process/Configure.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm
index fcf1c3e4..852a175e 100644
--- a/fml/lib/FML/Process/Configure.pm
+++ b/fml/lib/FML/Process/Configure.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Configure.pm,v 1.67 2004/12/05 16:19:09 fukachan Exp $
+# $FML: Configure.pm,v 1.68 2005/05/26 12:39:11 fukachan Exp $
#
package FML::Process::Configure;
@@ -76,9 +76,9 @@ sub prepare
my $eval = $config->get_hook( 'makefml_prepare_start_hook' );
if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; }
- $curproc->resolve_ml_specific_variables();
- $curproc->load_config_files();
- $curproc->fix_perl_include_path();
+ $curproc->ml_variables_resolve();
+ $curproc->config_files_load();
+ $curproc->env_fix_perl_include_path();
$curproc->log_message_init();
$eval = $config->get_hook( 'makefml_prepare_end_hook' );
@@ -156,7 +156,7 @@ sub finish
# --allow-send-message or --allow-reply-message option specified.
if ($curproc->is_allow_reply_message()) {
- $curproc->inform_reply_messages();
+ $curproc->reply_message_inform();
$curproc->queue_flush();
}