summaryrefslogtreecommitdiff
path: root/src/mailman/rest/configuration.py
diff options
context:
space:
mode:
authorBarry Warsaw2010-02-25 20:40:44 -0500
committerBarry Warsaw2010-02-25 20:40:44 -0500
commit70dd8a96cc0e01b42737b46e30cf37b5c8fa0747 (patch)
tree4fee0c35625c78a38962aeea313ec7f76462199b /src/mailman/rest/configuration.py
parentb2ae2b7795719f17cb2b6c7ed14e5b4c7c8eae47 (diff)
downloadmailman-70dd8a96cc0e01b42737b46e30cf37b5c8fa0747.tar.gz
mailman-70dd8a96cc0e01b42737b46e30cf37b5c8fa0747.tar.zst
mailman-70dd8a96cc0e01b42737b46e30cf37b5c8fa0747.zip
Diffstat (limited to 'src/mailman/rest/configuration.py')
-rw-r--r--src/mailman/rest/configuration.py87
1 files changed, 0 insertions, 87 deletions
diff --git a/src/mailman/rest/configuration.py b/src/mailman/rest/configuration.py
deleted file mode 100644
index 30e2607cb..000000000
--- a/src/mailman/rest/configuration.py
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright (C) 2009-2010 by the Free Software Foundation, Inc.
-#
-# This file is part of GNU Mailman.
-#
-# GNU Mailman 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 3 of the License, or (at your option)
-# any later version.
-#
-# GNU Mailman 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
-# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
-
-"""Mailman admin web service configuration."""
-
-from __future__ import absolute_import, unicode_literals
-
-__metaclass__ = type
-__all__ = [
- 'AdminWebServiceConfiguration',
- ]
-
-
-from lazr.config import as_boolean
-from lazr.restful.interfaces import IWebServiceConfiguration
-from lazr.restful.wsgi import BaseWSGIWebServiceConfiguration
-from zope.interface import implements
-
-from mailman import version
-from mailman.config import config
-
-
-
-# pylint: disable-msg=W0232,R0201
-class AdminWebServiceConfiguration(BaseWSGIWebServiceConfiguration):
- """A configuration object for the Mailman admin web service."""
-
- implements(IWebServiceConfiguration)
-
- @property
- def view_permission(self):
- """See `IWebServiceConfiguration`."""
- if config.webservice.view_permission.lower() == 'none':
- return None
- return config.webservice.view_permission
-
- path_override = None
-
- @property
- def use_https(self):
- """See `IWebServiceConfiguration`."""
- return as_boolean(config.webservice.use_https)
-
- # We currently have only one active version; the first entry in this list
- # should match the major.minor Mailman version. The second entry is just
- # an alias for the 'floating' development version.
- active_versions = [
- '{0.MAJOR_REV}.{0.MINOR_REV}'.format(version),
- 'dev',
- ]
- code_revision = version.VERSION
-
- @property
- def show_tracebacks(self):
- """See `IWebServiceConfiguration`."""
- return config.webservice.show_tracebacks
-
- default_batch_size = 50
- max_batch_size = 300
-
- def get_request_user(self):
- """See `IWebServiceConfiguration`."""
- return None
-
- @property
- def hostname(self):
- """See `IWebServiceConfiguration`."""
- return config.webservice.hostname
-
- @property
- def port(self):
- """See `IWebServiceConfiguration`."""
- return int(config.webservice.port)