From c6895b23b63365a983cf564fc67446913ef2bebd Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 24 Dec 2009 01:26:37 +0000 Subject: Roles. --- repoze/bfg/interfaces.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'repoze/bfg/interfaces.py') 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 -- cgit v1.2.3