| Trees | Indices | Help | 
        
  | 
  
|---|
| 
       | 
  
twisted.web.resource.Resource --+
                                |
                               HTMLLog
| Nested Classes | |
| 
     Inherited from   | 
  
| Instance Methods | |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
| 
     Inherited from   | 
  |||
| Class Variables | |
        __implemented__ = <implementedBy buildbot.status.web.logs.HTML
     | 
  |
| 
     Inherited from   | 
  |
| Method Details | 
  
 Initialize. 
  | 
  
 Render a given resource. See  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. 
  | 
  
 Special descriptor for class __provides__ The descriptor caches the implementedBy info, so that we can get declarations for objects without instance-specific interfaces a bit quicker. For example: >>> from zope.interface import Interface >>> class IFooFactory(Interface): ... pass >>> class IFoo(Interface): ... pass >>> class C(object): ... implements(IFoo) ... classProvides(IFooFactory) >>> [i.getName() for i in C.__provides__] ['IFooFactory'] >>> [i.getName() for i in C().__provides__] ['IFoo'] 
  | 
| Class Variable Details | 
  __implemented__
  | 
| Trees | Indices | Help | 
        
  | 
  
|---|
| Generated by Epydoc 3.0.1 on Sun Jul 17 13:45:27 2011 | http://epydoc.sourceforge.net |