diff options
| author | fukachan <fukachan> | 2004-01-31 04:06:31 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-01-31 04:06:31 +0000 |
| commit | 0bde78c204d00525adfb0bff6a11bc99367f593f (patch) | |
| tree | cf9edf1ff30c24855ce53100135407a88da80428 /fml/lib | |
| parent | f35f9d0b1e5edebe7458b0c1eed89ba37519e0a9 (diff) | |
| download | fml8-0bde78c204d00525adfb0bff6a11bc99367f593f.tar.gz fml8-0bde78c204d00525adfb0bff6a11bc99367f593f.tar.bz2 fml8-0bde78c204d00525adfb0bff6a11bc99367f593f.zip | |
not use "$cf_list = $curproc->get_config_files_list();".
$curproc->load_config_files($cf_list);
->
$curproc->load_config_files();
Diffstat (limited to 'fml/lib')
| -rw-r--r-- | fml/lib/FML/Process/Addr.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Alias.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/CGI/Kernel.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Calendar.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Command.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/ConfViewer.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Configure.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Digest.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Distribute.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/DocViewer.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Fake.pm | 5 | ||||
| -rw-r--r-- | fml/lib/FML/Process/HTMLify.pm | 5 |
13 files changed, 26 insertions, 39 deletions
diff --git a/fml/lib/FML/Process/Addr.pm b/fml/lib/FML/Process/Addr.pm index 417ecc17..5e0d67e4 100644 --- a/fml/lib/FML/Process/Addr.pm +++ b/fml/lib/FML/Process/Addr.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Addr.pm,v 1.15 2004/01/02 14:50:33 fukachan Exp $ +# $FML: Addr.pm,v 1.16 2004/01/02 16:08:38 fukachan Exp $ # package FML::Process::Addr; @@ -81,8 +81,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } # $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmladdr_prepare_end_hook' ); diff --git a/fml/lib/FML/Process/Alias.pm b/fml/lib/FML/Process/Alias.pm index 785d7059..b75ed2fd 100644 --- a/fml/lib/FML/Process/Alias.pm +++ b/fml/lib/FML/Process/Alias.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Alias.pm,v 1.16 2004/01/02 14:50:33 fukachan Exp $ +# $FML: Alias.pm,v 1.17 2004/01/02 16:08:39 fukachan Exp $ # package FML::Process::Alias; @@ -81,8 +81,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } # $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmlalias_prepare_end_hook' ); diff --git a/fml/lib/FML/Process/CGI/Kernel.pm b/fml/lib/FML/Process/CGI/Kernel.pm index a4678dfb..775ec1b1 100644 --- a/fml/lib/FML/Process/CGI/Kernel.pm +++ b/fml/lib/FML/Process/CGI/Kernel.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: Kernel.pm,v 1.74 2004/01/18 14:02:19 fukachan Exp $ +# $FML: Kernel.pm,v 1.75 2004/01/21 03:42:12 fukachan Exp $ # package FML::Process::CGI::Kernel; @@ -92,8 +92,7 @@ sub prepare my ($curproc, $args) = @_; $curproc->_cgi_resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); # modified for admin/*.cgi diff --git a/fml/lib/FML/Process/Calendar.pm b/fml/lib/FML/Process/Calendar.pm index ef5cf6df..8a5670e5 100644 --- a/fml/lib/FML/Process/Calendar.pm +++ b/fml/lib/FML/Process/Calendar.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Calendar.pm,v 1.10 2004/01/02 16:08:06 fukachan Exp $ +# $FML: Calendar.pm,v 1.11 2004/01/14 13:31:28 fukachan Exp $ # package FML::Process::Calendar; @@ -88,8 +88,7 @@ sub prepare # load default configurations. use FML::Config; $curproc->{ config } = new FML::Config; - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); } diff --git a/fml/lib/FML/Process/Command.pm b/fml/lib/FML/Process/Command.pm index 8c3b728f..a68f81e8 100644 --- a/fml/lib/FML/Process/Command.pm +++ b/fml/lib/FML/Process/Command.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Command.pm,v 1.96 2004/01/02 14:50:33 fukachan Exp $ +# $FML: Command.pm,v 1.97 2004/01/24 15:37:01 fukachan Exp $ # package FML::Process::Command; @@ -81,8 +81,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); $curproc->log_message_init(); diff --git a/fml/lib/FML/Process/ConfViewer.pm b/fml/lib/FML/Process/ConfViewer.pm index 09fd57e9..3e8c96a6 100644 --- a/fml/lib/FML/Process/ConfViewer.pm +++ b/fml/lib/FML/Process/ConfViewer.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: ConfViewer.pm,v 1.27 2004/01/02 14:50:34 fukachan Exp $ +# $FML: ConfViewer.pm,v 1.28 2004/01/02 16:08:39 fukachan Exp $ # package FML::Process::ConfViewer; @@ -78,8 +78,7 @@ sub prepare } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmlconf_prepare_end_hook' ); diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm index ed5e9bba..c02d2237 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 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Configure.pm,v 1.61 2004/01/02 14:50:34 fukachan Exp $ +# $FML: Configure.pm,v 1.62 2004/01/24 15:37:02 fukachan Exp $ # package FML::Process::Configure; @@ -78,8 +78,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->log_message_init(); diff --git a/fml/lib/FML/Process/Digest.pm b/fml/lib/FML/Process/Digest.pm index 80ab0f94..619a949a 100644 --- a/fml/lib/FML/Process/Digest.pm +++ b/fml/lib/FML/Process/Digest.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Digest.pm,v 1.14 2004/01/02 14:50:34 fukachan Exp $ +# $FML: Digest.pm,v 1.15 2004/01/24 15:37:02 fukachan Exp $ # package FML::Process::Digest; @@ -82,8 +82,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); diff --git a/fml/lib/FML/Process/Distribute.pm b/fml/lib/FML/Process/Distribute.pm index 96015c5e..6c1a5399 100644 --- a/fml/lib/FML/Process/Distribute.pm +++ b/fml/lib/FML/Process/Distribute.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Distribute.pm,v 1.135 2004/01/02 14:50:34 fukachan Exp $ +# $FML: Distribute.pm,v 1.136 2004/01/24 15:37:02 fukachan Exp $ # package FML::Process::Distribute; @@ -81,8 +81,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); $curproc->log_message_init(); diff --git a/fml/lib/FML/Process/DocViewer.pm b/fml/lib/FML/Process/DocViewer.pm index 3215109c..18e67830 100644 --- a/fml/lib/FML/Process/DocViewer.pm +++ b/fml/lib/FML/Process/DocViewer.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: DocViewer.pm,v 1.29 2004/01/02 14:50:35 fukachan Exp $ +# $FML: DocViewer.pm,v 1.30 2004/01/02 16:08:39 fukachan Exp $ # package FML::Process::DocViewer; @@ -81,8 +81,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } # $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmldoc_prepare_end_hook' ); diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index 22086af4..0dabc2da 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.38 2004/01/02 14:50:35 fukachan Exp $ +# $FML: Error.pm,v 1.39 2004/01/24 15:37:03 fukachan Exp $ # package FML::Process::Error; @@ -77,8 +77,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); $curproc->log_message_init(); diff --git a/fml/lib/FML/Process/Fake.pm b/fml/lib/FML/Process/Fake.pm index 48e77a48..0098594e 100644 --- a/fml/lib/FML/Process/Fake.pm +++ b/fml/lib/FML/Process/Fake.pm @@ -3,7 +3,7 @@ # Copyright (C) 2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Fake.pm,v 1.6 2004/01/04 03:25:09 fukachan Exp $ +# $FML: Fake.pm,v 1.7 2004/01/24 15:37:03 fukachan Exp $ # package FML::Process::Fake; @@ -222,8 +222,7 @@ sub _faker_init $config->set('ml_home_dir', $ml_home_dir); # init - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $curproc->scheduler_init(); $curproc->log_message_init(); diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm index 448c84aa..d8408738 100644 --- a/fml/lib/FML/Process/HTMLify.pm +++ b/fml/lib/FML/Process/HTMLify.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: HTMLify.pm,v 1.33 2004/01/02 14:50:36 fukachan Exp $ +# $FML: HTMLify.pm,v 1.34 2004/01/24 15:37:03 fukachan Exp $ # package FML::Process::HTMLify; @@ -72,8 +72,7 @@ sub prepare if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } $curproc->resolve_ml_specific_variables(); - my $cf_list = $curproc->get_config_files_list(); - $curproc->load_config_files($cf_list); + $curproc->load_config_files(); $curproc->fix_perl_include_path(); $eval = $config->get_hook( 'fmlhtmlify_prepare_end_hook' ); |
