class documentation

class _UnsafeForbiddenResource(_UnsafeErrorPage): (source)

Constructor: _UnsafeForbiddenResource(message)

View In Hierarchy

_UnsafeForbiddenResource, publicly available via the deprecated alias ForbiddenResource is a specialization of _UnsafeErrorPage which returns the FORBIDDEN HTTP response code.

Deprecated in Twisted 22.10.0 because it permits HTML injection; use twisted.web.pages.forbidden instead.

Method __init__ Initialize.

Inherited from _UnsafeErrorPage:

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 _UnsafeErrorPage):

Method delEntity Undocumented
Method getChildForRequest Deprecated in favor of getChildForRequest.
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 allowedMethods Undocumented
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)