summaryrefslogtreecommitdiff
path: root/paste/deploy/epdesc.py
diff options
context:
space:
mode:
authorAlex Gr?nholm <alex.gronholm@nextday.fi>2011-05-24 04:11:40 +0300
committerAlex Gr?nholm <alex.gronholm@nextday.fi>2011-05-24 04:11:40 +0300
commit066889b037866098e80e55ee5b7676a4220ffb28 (patch)
treea2db6b325e67efef508fc0283581ecd06d44d5e5 /paste/deploy/epdesc.py
parentfb8528a5638a60e697bc7f89c7b774a1dc0e1c00 (diff)
downloadpastedeploy-066889b037866098e80e55ee5b7676a4220ffb28.tar.gz
Removed interfaces and entry point descriptions as useless (entry points are documented in the manual anyway)
Diffstat (limited to 'paste/deploy/epdesc.py')
-rw-r--r--paste/deploy/epdesc.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/paste/deploy/epdesc.py b/paste/deploy/epdesc.py
deleted file mode 100644
index 5f05175..0000000
--- a/paste/deploy/epdesc.py
+++ /dev/null
@@ -1,42 +0,0 @@
-class AppFactoryDescription(object):
- description = """
- This gives a factory/function that can create WSGI apps
- """
-
-
-class CompositeFactoryDescription(object):
- description = """
- This gives a factory/function that can create WSGI apps, and has
- access to the application creator so that it can in turn fetch
- apps based on name.
- """
-
-
-class FilterAppFactoryDescription(object):
- description = """
- This gives a factory/function that wraps a WSGI application to
- create another WSGI application (typically applying middleware)
- """
-
-
-class FilterFactoryDescription(object):
- description = """
- This gives a factory/function that return a function that can wrap
- a WSGI application and returns another WSGI application.
- paste.filter_app_factory is the same thing with less layers.
- """
-
-
-class ServerFactoryDescription(object):
- description = """
- This gives a factory/function that creates a server, that can be
- called with a WSGI application to run indefinitely.
- paste.server_runner is the same thing with less layers.
- """
-
-
-class ServerRunnerDescription(object):
- description = """
- This gives a factory/function that, given a WSGI application and
- configuration, will serve the application indefinitely.
- """