Trees | Indices | Help |
---|
|
twisted.web.resource.Resource --+ | extern.log.log.Loggable --+ | RTSPResource
I am a base class for all RTSP Resource classes.
|
|||
Inherited from |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
logCategory =
Implementors can provide a category to log their messages under. |
|||
Inherited from |
|
|||
tuple |
allowedMethods =
a tuple of allowed methods that can be invoked on this resource. |
|
Retrieve a 'child' resource from me. Implement this to create dynamic resource generation -- resources which are always available may be registered with self.putChild(). This will not be called if the class-level variable 'isLeaf' is set in your subclass; instead, the 'postpath' attribute of the request will be left as a list of the remaining path elements. For example, the URL /foo/bar/baz will normally be: | site.resource.getChild('foo').getChild('bar').getChild('baz'). However, if the resource returned by 'bar' has isLeaf set to true, then the getChild call will never be made on it.
|
Retrieve a static or dynamically generated child resource from me. First checks if a resource was added manually by putChild, and then call getChild to check for dynamic resources. Only override if you want to affect behaviour of all child lookups, rather than just dynamic ones. This will check to see if I have a pre-registered child resource of the given name, and call getChild if I do not.
|
Set CSeq and Date on response to given request. This should be done even for errors. |
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Aug 13 06:17:09 2013 | http://epydoc.sourceforge.net |