summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw1998-06-19 19:29:16 +0000
committerbwarsaw1998-06-19 19:29:16 +0000
commitf57c73c0fb4b228b12dd0f450d249d4305196ced (patch)
tree8707fd73cb3c2d736ac4d7af167bc3bbbc8fb559
parent551fc64022f963dc7eabe6a03df53e2fcc84307b (diff)
downloadmailman-f57c73c0fb4b228b12dd0f450d249d4305196ced.tar.gz
mailman-f57c73c0fb4b228b12dd0f450d249d4305196ced.tar.zst
mailman-f57c73c0fb4b228b12dd0f450d249d4305196ced.zip
All these files have been removed, replaced by the driver script architecture.
-rw-r--r--cgi/.cvsignore1
-rw-r--r--cgi/Makefile.in72
-rwxr-xr-xcgi/admin29
-rwxr-xr-xcgi/admindb25
-rwxr-xr-xcgi/archives25
-rwxr-xr-xcgi/edithtml25
-rwxr-xr-xcgi/handle_opts25
-rwxr-xr-xcgi/listinfo26
-rwxr-xr-xcgi/options25
-rwxr-xr-xcgi/private26
-rwxr-xr-xcgi/roster26
-rwxr-xr-xcgi/subscribe27
12 files changed, 0 insertions, 332 deletions
diff --git a/cgi/.cvsignore b/cgi/.cvsignore
deleted file mode 100644
index f3c7a7c5d..000000000
--- a/cgi/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/cgi/Makefile.in b/cgi/Makefile.in
deleted file mode 100644
index e254030cc..000000000
--- a/cgi/Makefile.in
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-# NOTE: Makefile.in is converted into Makefile by the configure script
-# in the parent directory. Once configure has run, you can recreate
-# the Makefile by running just config.status.
-
-# Variables set by configure
-
-VERSION= @VERSION@
-
-VPATH= @srcdir@
-srcdir= @srcdir@
-bindir= @bindir@
-prefix= @prefix@
-exec_prefix= @exec_prefix@
-
-CC= @CC@
-CHMOD= @CHMOD@
-INSTALL= @INSTALL@
-
-DEFS= @DEFS@
-
-# Customizable but not set by configure
-
-OPT= @OPT@
-CFLAGS= $(OPT) $(DEFS)
-MAILDIR= $(exec_prefix)/mail
-SCRIPTSDIR= $(prefix)/scripts
-INSTALLDIRS= $(SCRIPTSDIR)
-
-SHELL= /bin/sh
-
-SCRIPTS= admin admindb archives edithtml handle_opts listinfo \
-options private roster subscribe
-
-# Modes for directories and executables created by the install
-# process. Default to group-writable directories but
-# user-only-writable for executables.
-DIRMODE= 775
-EXEMODE= 755
-FILEMODE= 644
-INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
-
-
-# Rules
-
-all:
-
-install:
- for f in $(SCRIPTS); \
- do \
- $(INSTALL) -m $(EXEMODE) $$f $(SCRIPTSDIR); \
- done
-
-clean:
-
-distclean:
- -rm Makefile
diff --git a/cgi/admin b/cgi/admin
deleted file mode 100755
index 5e32818ec..000000000
--- a/cgi/admin
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-
-import paths
-
-def admin():
- import Mailman.Cgi.admin
- Mailman.Cgi.admin.main()
-
-from Mailman.runcgi import *
-wrap_func(admin)
-
- \ No newline at end of file
diff --git a/cgi/admindb b/cgi/admindb
deleted file mode 100755
index c6b5bc25e..000000000
--- a/cgi/admindb
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def admindb():
- import Mailman.Cgi.admindb
-
-from Mailman.runcgi import *
-wrap_func(admindb)
diff --git a/cgi/archives b/cgi/archives
deleted file mode 100755
index 782cdcd20..000000000
--- a/cgi/archives
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def archives():
- import Mailman.Cgi.archives
-
-from Mailman.runcgi import *
-wrap_func(archives)
diff --git a/cgi/edithtml b/cgi/edithtml
deleted file mode 100755
index 7b6574da2..000000000
--- a/cgi/edithtml
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def edithtml():
- import Mailman.Cgi.edithtml
-
-from Mailman.runcgi import *
-wrap_func(edithtml)
diff --git a/cgi/handle_opts b/cgi/handle_opts
deleted file mode 100755
index f43fb99ef..000000000
--- a/cgi/handle_opts
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def handle_opts():
- import Mailman.Cgi.handle_opts
-
-from Mailman.runcgi import *
-wrap_func(handle_opts)
diff --git a/cgi/listinfo b/cgi/listinfo
deleted file mode 100755
index cdb6976a6..000000000
--- a/cgi/listinfo
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def listinfo():
- import Mailman.Cgi.listinfo
- Mailman.Cgi.listinfo.main()
-
-from Mailman.runcgi import *
-wrap_func(listinfo)
diff --git a/cgi/options b/cgi/options
deleted file mode 100755
index 60cabfd9d..000000000
--- a/cgi/options
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def options():
- import Mailman.Cgi.options
-
-from Mailman.runcgi import *
-wrap_func(options)
diff --git a/cgi/private b/cgi/private
deleted file mode 100755
index b2c4301ac..000000000
--- a/cgi/private
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def private():
- import Mailman.Cgi.private
- Mailman.Cgi.private.main()
-
-from Mailman.runcgi import *
-wrap_func(private)
diff --git a/cgi/roster b/cgi/roster
deleted file mode 100755
index 56944f24a..000000000
--- a/cgi/roster
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def roster():
- import Mailman.Cgi.roster
- Mailman.Cgi.roster.main()
-
-from Mailman.runcgi import *
-wrap_func(roster)
diff --git a/cgi/subscribe b/cgi/subscribe
deleted file mode 100755
index 6fe5a7c68..000000000
--- a/cgi/subscribe
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import paths
-
-def subscribe():
- import Mailman.Cgi.subscribe
-
-from Mailman.runcgi import *
-wrap_func(subscribe)
-
- \ No newline at end of file