class documentation

class ForbiddenResource(ErrorPage): (source)

View In Hierarchy

ForbiddenResource is a specialization of ErrorPage which returns the FORBIDDEN HTTP response code.
Method __init__ Initialize.

Inherited from ErrorPage:

Method getChild Retrieve a 'child' resource from me.
Method render Render a given resource. See IResource's render method.
Instance Variable brief A short string which will be included in the response body as the page title.
Instance Variable code An integer status code which will be used for the response.
Instance Variable detail A longer string which will be included in the response body.
Instance Variable template A native string which will have a dictionary interpolated into it to generate the response body. The dictionary has the following keys:

Inherited from Resource (via ErrorPage):

Method delEntity Undocumented
Method getChildForRequest Undocumented
Method getChildWithDefault Retrieve a static or dynamically generated child resource from me.
Method getDynamicEntity Undocumented
Method getStaticEntity Undocumented
Method listDynamicEntities Undocumented
Method listDynamicNames Undocumented
Method listEntities Undocumented
Method listNames Undocumented
Method listStaticEntities Undocumented
Method listStaticNames Undocumented
Method putChild Register a static child.
Method reallyPutEntity Undocumented
Method render_HEAD Default handling of HEAD method.
Class Variable isLeaf Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
Class Variable server Undocumented
Instance Variable children Undocumented
def __init__(self, message='Sorry, resource is forbidden.'): (source)