summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-09-27 03:00:15 +0000
committerfukachan <fukachan>2003-09-27 03:00:15 +0000
commit2192a6af3371cd42ade706f405639e6fd0784e99 (patch)
treef4b2a61c3851cf9549fe2f845ac0e5a26207e082 /fml/lib/FML/Command
parent2a3c64b52a5f75ba62b741b7cf5c51b965231ecb (diff)
downloadfml8-2192a6af3371cd42ade706f405639e6fd0784e99.tar.gz
fml8-2192a6af3371cd42ade706f405639e6fd0784e99.tar.bz2
fml8-2192a6af3371cd42ade706f405639e6fd0784e99.zip
FML/CGI/Admin/{List,ML,User}.pm -> FML/CGI/{List,ML,User}.pm
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/Admin/addadmin.pm6
-rw-r--r--fml/lib/FML/Command/Admin/addmoderator.pm6
-rw-r--r--fml/lib/FML/Command/Admin/deladmin.pm6
-rw-r--r--fml/lib/FML/Command/Admin/delmoderator.pm6
-rw-r--r--fml/lib/FML/Command/Admin/digest.pm6
-rw-r--r--fml/lib/FML/Command/Admin/digestoff.pm6
-rw-r--r--fml/lib/FML/Command/Admin/digeston.pm6
-rw-r--r--fml/lib/FML/Command/Admin/list.pm6
-rw-r--r--fml/lib/FML/Command/Admin/newml.pm6
-rw-r--r--fml/lib/FML/Command/Admin/off.pm6
-rw-r--r--fml/lib/FML/Command/Admin/on.pm6
-rw-r--r--fml/lib/FML/Command/Admin/rmml.pm6
-rw-r--r--fml/lib/FML/Command/Admin/subscribe.pm6
-rw-r--r--fml/lib/FML/Command/Admin/unsubscribe.pm6
14 files changed, 42 insertions, 42 deletions
diff --git a/fml/lib/FML/Command/Admin/addadmin.pm b/fml/lib/FML/Command/Admin/addadmin.pm
index ece2be51..107b9c2d 100644
--- a/fml/lib/FML/Command/Admin/addadmin.pm
+++ b/fml/lib/FML/Command/Admin/addadmin.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: addadmin.pm,v 1.11 2003/08/23 04:35:29 fukachan Exp $
+# $FML: addadmin.pm,v 1.12 2003/08/29 15:33:58 fukachan Exp $
#
package FML::Command::Admin::addadmin;
@@ -107,8 +107,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/addmoderator.pm b/fml/lib/FML/Command/Admin/addmoderator.pm
index 8c7fb273..e0b52c81 100644
--- a/fml/lib/FML/Command/Admin/addmoderator.pm
+++ b/fml/lib/FML/Command/Admin/addmoderator.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: addmoderator.pm,v 1.6 2003/08/23 04:35:29 fukachan Exp $
+# $FML: addmoderator.pm,v 1.7 2003/08/29 15:33:58 fukachan Exp $
#
package FML::Command::Admin::addmoderator;
@@ -107,8 +107,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/deladmin.pm b/fml/lib/FML/Command/Admin/deladmin.pm
index acb7f773..291fac9f 100644
--- a/fml/lib/FML/Command/Admin/deladmin.pm
+++ b/fml/lib/FML/Command/Admin/deladmin.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: deladmin.pm,v 1.10 2003/05/12 10:16:42 fukachan Exp $
+# $FML: deladmin.pm,v 1.11 2003/08/23 04:35:30 fukachan Exp $
#
package FML::Command::Admin::deladmin;
@@ -112,8 +112,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/delmoderator.pm b/fml/lib/FML/Command/Admin/delmoderator.pm
index edd65c08..d74e3038 100644
--- a/fml/lib/FML/Command/Admin/delmoderator.pm
+++ b/fml/lib/FML/Command/Admin/delmoderator.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: delmoderator.pm,v 1.9 2003/05/12 10:16:42 fukachan Exp $
+# $FML: delmoderator.pm,v 1.10 2003/08/23 04:35:30 fukachan Exp $
#
package FML::Command::Admin::delmoderator;
@@ -112,8 +112,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/digest.pm b/fml/lib/FML/Command/Admin/digest.pm
index 9ea0fe5c..dbcdb74b 100644
--- a/fml/lib/FML/Command/Admin/digest.pm
+++ b/fml/lib/FML/Command/Admin/digest.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: digest.pm,v 1.10 2003/05/12 10:16:42 fukachan Exp $
+# $FML: digest.pm,v 1.11 2003/08/23 04:35:30 fukachan Exp $
#
package FML::Command::Admin::digest;
@@ -237,8 +237,8 @@ sub cgi_menu
return;
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/digestoff.pm b/fml/lib/FML/Command/Admin/digestoff.pm
index 84af0ca3..89f5ffd2 100644
--- a/fml/lib/FML/Command/Admin/digestoff.pm
+++ b/fml/lib/FML/Command/Admin/digestoff.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: digestoff.pm,v 1.4 2003/03/18 10:42:42 fukachan Exp $
+# $FML: digestoff.pm,v 1.5 2003/08/23 04:35:30 fukachan Exp $
#
package FML::Command::Admin::digestoff;
@@ -89,8 +89,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/digeston.pm b/fml/lib/FML/Command/Admin/digeston.pm
index 35fb1331..a5b7d448 100644
--- a/fml/lib/FML/Command/Admin/digeston.pm
+++ b/fml/lib/FML/Command/Admin/digeston.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: digeston.pm,v 1.4 2003/03/18 10:42:42 fukachan Exp $
+# $FML: digeston.pm,v 1.5 2003/08/23 04:35:30 fukachan Exp $
#
package FML::Command::Admin::digeston;
@@ -89,8 +89,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/list.pm b/fml/lib/FML/Command/Admin/list.pm
index 9e43e2ee..78eaf4e9 100644
--- a/fml/lib/FML/Command/Admin/list.pm
+++ b/fml/lib/FML/Command/Admin/list.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: list.pm,v 1.15 2003/08/29 15:33:58 fukachan Exp $
+# $FML: list.pm,v 1.16 2003/09/25 11:36:24 fukachan Exp $
#
package FML::Command::Admin::list;
@@ -137,8 +137,8 @@ sub cgi_menu
# navigation bar
eval q{
- use FML::CGI::Admin::List;
- my $obj = new FML::CGI::Admin::List;
+ use FML::CGI::List;
+ my $obj = new FML::CGI::List;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/newml.pm b/fml/lib/FML/Command/Admin/newml.pm
index f3c9b2bc..b6de197d 100644
--- a/fml/lib/FML/Command/Admin/newml.pm
+++ b/fml/lib/FML/Command/Admin/newml.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: newml.pm,v 1.69 2003/09/13 09:16:59 fukachan Exp $
+# $FML: newml.pm,v 1.70 2003/09/25 11:40:59 fukachan Exp $
#
package FML::Command::Admin::newml;
@@ -553,8 +553,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::ML;
- my $obj = new FML::CGI::Admin::ML;
+ use FML::CGI::ML;
+ my $obj = new FML::CGI::ML;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/off.pm b/fml/lib/FML/Command/Admin/off.pm
index 6baada5e..242ae3bf 100644
--- a/fml/lib/FML/Command/Admin/off.pm
+++ b/fml/lib/FML/Command/Admin/off.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: off.pm,v 1.10 2003/05/12 10:16:43 fukachan Exp $
+# $FML: off.pm,v 1.11 2003/08/23 04:35:31 fukachan Exp $
#
package FML::Command::Admin::off;
@@ -105,8 +105,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/on.pm b/fml/lib/FML/Command/Admin/on.pm
index e2d7d637..aca9cdaf 100644
--- a/fml/lib/FML/Command/Admin/on.pm
+++ b/fml/lib/FML/Command/Admin/on.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: on.pm,v 1.10 2003/08/23 04:35:31 fukachan Exp $
+# $FML: on.pm,v 1.11 2003/08/29 15:33:59 fukachan Exp $
#
package FML::Command::Admin::on;
@@ -106,8 +106,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/rmml.pm b/fml/lib/FML/Command/Admin/rmml.pm
index a6cddf23..2c05a20f 100644
--- a/fml/lib/FML/Command/Admin/rmml.pm
+++ b/fml/lib/FML/Command/Admin/rmml.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: rmml.pm,v 1.18 2003/09/06 03:34:04 fukachan Exp $
+# $FML: rmml.pm,v 1.19 2003/09/13 09:16:59 fukachan Exp $
#
package FML::Command::Admin::rmml;
@@ -174,8 +174,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::ML;
- my $obj = new FML::CGI::Admin::ML;
+ use FML::CGI::ML;
+ my $obj = new FML::CGI::ML;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/subscribe.pm b/fml/lib/FML/Command/Admin/subscribe.pm
index badb60fa..0e3ab283 100644
--- a/fml/lib/FML/Command/Admin/subscribe.pm
+++ b/fml/lib/FML/Command/Admin/subscribe.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: subscribe.pm,v 1.23 2003/08/23 04:35:32 fukachan Exp $
+# $FML: subscribe.pm,v 1.24 2003/08/29 15:33:59 fukachan Exp $
#
package FML::Command::Admin::subscribe;
@@ -109,8 +109,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {
diff --git a/fml/lib/FML/Command/Admin/unsubscribe.pm b/fml/lib/FML/Command/Admin/unsubscribe.pm
index 867072f5..02d66ba2 100644
--- a/fml/lib/FML/Command/Admin/unsubscribe.pm
+++ b/fml/lib/FML/Command/Admin/unsubscribe.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: unsubscribe.pm,v 1.24 2003/08/23 04:35:32 fukachan Exp $
+# $FML: unsubscribe.pm,v 1.25 2003/08/29 15:34:00 fukachan Exp $
#
package FML::Command::Admin::unsubscribe;
@@ -110,8 +110,8 @@ sub cgi_menu
my $r = '';
eval q{
- use FML::CGI::Admin::User;
- my $obj = new FML::CGI::Admin::User;
+ use FML::CGI::User;
+ my $obj = new FML::CGI::User;
$obj->cgi_menu($curproc, $args, $command_args);
};
if ($r = $@) {