summaryrefslogtreecommitdiff
path: root/repoze/bfg/interfaces.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-24 01:26:37 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-24 01:26:37 +0000
commitc6895b23b63365a983cf564fc67446913ef2bebd (patch)
tree1b679908dcf9a360f3250603eb8fedd23f46a144 /repoze/bfg/interfaces.py
parent18e5d6c8fe922bf23ccbd481d60de294d7671103 (diff)
downloadpyramid-c6895b23b63365a983cf564fc67446913ef2bebd.tar.gz
pyramid-c6895b23b63365a983cf564fc67446913ef2bebd.tar.bz2
pyramid-c6895b23b63365a983cf564fc67446913ef2bebd.zip
Roles.
Diffstat (limited to 'repoze/bfg/interfaces.py')
-rw-r--r--repoze/bfg/interfaces.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py
index 553f6775f..c322de2ff 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -4,23 +4,24 @@ from zope.interface import Interface
# public API interfaces
class IAfterTraversal(Interface):
- """ An event type that is emitted after repoze.bfg completes
- traversal but before it calls any view code."""
+ """ An event type that is emitted after :mod:`repoze.bfg`
+ completes traversal but before it calls any view code."""
request = Attribute('The request object')
class INewRequest(Interface):
- """ An event type that is emitted whenever repoze.bfg begins to
- process a new request """
+ """ An event type that is emitted whenever :mod:`repoze.bfg`
+ begins to process a new request"""
request = Attribute('The request object')
class INewResponse(Interface):
- """ An event type that is emitted whenever any repoze.bfg view
- returns a response."""
+ """ An event type that is emitted whenever any :mod:`repoze.bfg`
+ view returns a response."""
response = Attribute('The response object')
class IWSGIApplicationCreatedEvent(Interface):
- """ Event issued after the application has been created and
- configured."""
+ """ Event issued when the
+ :meth:`repoze.bfg.configuration.Configurator.make_wsgi_app` method
+ is called."""
app = Attribute(u"Published application")
# internal interfaces