summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command/FileUtils.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-01-03 07:05:04 +0000
committerfukachan <fukachan>2003-01-03 07:05:04 +0000
commit36621eb98b3d05a6271ae5c339f6df3723fcb3b6 (patch)
tree0bdb7b4ac02a094cf9d29b2ea90c31d8a1f72d06 /fml/lib/FML/Command/FileUtils.pm
parent55dc071d41fbc98b4e851b374f69983c24503ac9 (diff)
downloadfml8-36621eb98b3d05a6271ae5c339f6df3723fcb3b6.tar.gz
fml8-36621eb98b3d05a6271ae5c339f6df3723fcb3b6.tar.bz2
fml8-36621eb98b3d05a6271ae5c339f6df3723fcb3b6.zip
modified to use FML::Restriction::Base->regexp().
modify messages.
Diffstat (limited to 'fml/lib/FML/Command/FileUtils.pm')
-rw-r--r--fml/lib/FML/Command/FileUtils.pm14
1 files changed, 6 insertions, 8 deletions
diff --git a/fml/lib/FML/Command/FileUtils.pm b/fml/lib/FML/Command/FileUtils.pm
index 2f358e6f..149a1267 100644
--- a/fml/lib/FML/Command/FileUtils.pm
+++ b/fml/lib/FML/Command/FileUtils.pm
@@ -1,10 +1,10 @@
#-*- perl -*-
#
-# Copyright (C) 2002 Ken'ichi Fukamachi
+# Copyright (C) 2002,2003 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: FileUtils.pm,v 1.7 2002/12/18 04:46:22 fukachan Exp $
+# $FML: FileUtils.pm,v 1.8 2002/12/24 10:19:43 fukachan Exp $
#
package FML::Command::FileUtils;
@@ -42,8 +42,7 @@ sub new
my $me = {};
use FML::Restriction::Base;
- my $safe = new FML::Restriction::Base;
- $me->{ _basic_variable } = $safe->basic_variable();
+ $me->{ _safe } = new FML::Restriction::Base;
return bless $me, $type;
}
@@ -85,9 +84,8 @@ sub remove
my $argv = $du_args->{ options };
my $is_error = 0;
- # regexp
- my $basic_variable = $self->{ _basic_variable };
- my $file_regexp = $basic_variable->{ file };
+ # regexp allowed here for file
+ my $file_regexp = $self->{ _safe }->regexp( 'file' );
# chdir $ml_home_dir firstly. return ASAP if failed.
my $ml_home_dir = $config->{ ml_home_dir };
@@ -143,7 +141,7 @@ Ken'ichi Fukamachi
=head1 COPYRIGHT
-Copyright (C) 2002 Ken'ichi Fukamachi
+Copyright (C) 2002,2003 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.