Package buildbot :: Package status :: Package web :: Module logs :: Class HTMLLog
[frames] | no frames]

Class HTMLLog

source code

twisted.web.resource.Resource --+
                                |
                               HTMLLog

Nested Classes

Inherited from twisted.web.resource.Resource: entityType

Instance Methods
 
__init__(self, original)
Initialize.
source code
 
render(self, request)
Render a given resource.
source code

Inherited from twisted.web.resource.Resource: __providedBy__, delEntity, getChild, getChildForRequest, getChildWithDefault, getDynamicEntity, getStaticEntity, listDynamicEntities, listDynamicNames, listEntities, listNames, listStaticEntities, listStaticNames, putChild, reallyPutEntity, render_HEAD

Class Variables
  __implemented__ = <implementedBy buildbot.status.web.logs.HTML...
  __provides__ = <zope.interface.declarations.ClassProvides obje...

Inherited from twisted.web.resource.Resource: isLeaf, server

Method Details

__init__(self, original)
(Constructor)

source code 

Initialize.

Overrides: twisted.web.resource.Resource.__init__
(inherited documentation)

render(self, request)

source code 

Render a given resource. See IResource's render method.

I delegate to methods of self with the form 'render_METHOD' where METHOD is the HTTP that was used to make the request. Examples: render_GET, render_HEAD, render_POST, and so on. Generally you should implement those methods instead of overriding this one.

render_METHOD methods are expected to return a string which will be the rendered page, unless the return value is twisted.web.server.NOT_DONE_YET, in which case it is this class's responsibility to write the results to request.write(data), then call request.finish().

Old code that overrides render() directly is likewise expected to return a string or NOT_DONE_YET.

Overrides: twisted.web.resource.Resource.render
(inherited documentation)

Class Variable Details

__implemented__

Value:
<implementedBy buildbot.status.web.logs.HTMLLog>

__provides__

Value:
<zope.interface.declarations.ClassProvides object at 0x328ae50>