class documentation

class ParentRedirect(resource.Resource): (source)

View In Hierarchy

Redirect to the nearest directory and strip any query string.

This generates redirects like:

    /              →  /
    /foo           →  /
    /foo?bar       →  /
    /foo/          →  /foo/
    /foo/bar       →  /foo/
    /foo/bar?baz   →  /foo/

However, the generated Location header contains an absolute URL rather than a path.

The response is the same regardless of HTTP method.

Method render Respond to all requests by redirecting to nearest directory.
Class Variable isLeaf Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.

Inherited from Resource:

Method __init__ Initialize.
Method delEntity Undocumented
Method getChild Retrieve a 'child' resource from me.
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 server Undocumented
Instance Variable children Undocumented
def render(self, request): (source)
Respond to all requests by redirecting to nearest directory.
Parameters
request:IRequestUndocumented
Returns
bytesUndocumented
isLeaf: int = (source)
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.