summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command/Admin/newdomain.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-11-15 03:09:44 +0000
committerfukachan <fukachan>2003-11-15 03:09:44 +0000
commite5e122287328208fc4aa6a01701d05fd12d5d75f (patch)
tree6ee4f53934ae29f2a49832a579e2f1f7eca7bd75 /fml/lib/FML/Command/Admin/newdomain.pm
parentd73cc3c8ca4c470db5afe101fd4056d0129a566c (diff)
downloadfml8-e5e122287328208fc4aa6a01701d05fd12d5d75f.tar.gz
fml8-e5e122287328208fc4aa6a01701d05fd12d5d75f.tar.bz2
fml8-e5e122287328208fc4aa6a01701d05fd12d5d75f.zip
add templatenew-domain-op-base
Diffstat (limited to 'fml/lib/FML/Command/Admin/newdomain.pm')
-rw-r--r--fml/lib/FML/Command/Admin/newdomain.pm84
1 files changed, 84 insertions, 0 deletions
diff --git a/fml/lib/FML/Command/Admin/newdomain.pm b/fml/lib/FML/Command/Admin/newdomain.pm
new file mode 100644
index 00000000..e7329c2d
--- /dev/null
+++ b/fml/lib/FML/Command/Admin/newdomain.pm
@@ -0,0 +1,84 @@
+#-*- perl -*-
+#
+# Copyright (C) 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$
+#
+
+package FML::Command::Admin::newdomain;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+
+=head1 NAME
+
+FML::Command::Admin::newdomain - declare a new domain we use
+
+=head1 SYNOPSIS
+
+See C<FML::Command> for more detainewdomain.
+
+=head1 DESCRIPTION
+
+an alias of C<FML::Command::Admin::dir>.
+
+=cut
+
+
+# Descriptions: standard constructor
+# Arguments: OBJ($self)
+# Side Effects: none
+# Return Value: OBJ
+sub new
+{
+ my ($self) = @_;
+ my ($type) = ref($self) || $self;
+ my $me = {};
+ return bless $me, $type;
+}
+
+
+# Descriptions: not need lock in the first time
+# Arguments: none
+# Side Effects: none
+# Return Value: NUM( 1 or 0)
+sub need_lock { 0;}
+
+
+# Descriptions: declare a new domain we use
+# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args)
+# Side Effects: forward request to dir module
+# Return Value: none
+sub process
+{
+ my ($self, $curproc, $command_args) = @_;
+}
+
+
+=head1 CODING STYLE
+
+See C<http://www.fml.org/software/FNF/> on fml coding style guide.
+
+=head1 AUTHOR
+
+Ken'ichi Fukamachi
+
+=head1 COPYRIGHT
+
+Copyright (C) 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.
+
+=head1 HISTORY
+
+FML::Command::Admin::newdomain first appeared in fml8 mailing list driver package.
+See C<http://www.fml.org/> for more detainewdomain.
+
+=cut
+
+
+1;