Home | Trees | Indices | Help |
|
---|
|
twisted.web.resource.Resource --+ | twisted.web.xmlrpc.XMLRPC --+ | XMLRPCServer
Nested Classes | |
Inherited from |
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
Class Variables | |
Inherited from 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.
|
Return the last N completed builds for all builders. 'num_builds' is the number of builds for each builder to return |
Return the last N completed builds for the given builder. 'builder_name' is the name of the builder to query 'num_builds' is the number of builds to return Each build is returned in the same form as xmlrpc_getAllBuildsInInterval |
Return a list of builds that have completed after the 'start' timestamp and before the 'stop' timestamp. This looks at all Builders. The timestamps are integers, interpreted as standard unix timestamps (seconds since epoch). Each Build is returned as a tuple in the form: (buildername, buildnumber, build_end, branchname, revision, results, text) The buildnumber is an integer. 'build_end' is an integer (seconds since epoch) specifying when the build finished. The branchname is a string, which may be an empty string to indicate None (i.e. the default branch). The revision is a string whose meaning is specific to the VC system in use, and comes from the 'got_revision' build property. The results are expressed as a string, one of ('success', 'warnings', 'failure', 'exception'). The text is a list of short strings that ought to be joined by spaces and include slightly more data about the results of the build. |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue May 25 17:52:53 2010 | http://epydoc.sourceforge.net |