Lines Matching full:documentation
4 serve pydoc-style documentation in response to HTTP
5 GET requests. This documentation is dynamically generated
69 """Produce HTML documentation for a function or method object."""
110 """Produce HTML documentation for an XML-RPC server."""
135 """Generates documentation for an XML-RPC server.
142 # setup variables used for HTML documentation
143 self.server_name = 'XML-RPC Server Documentation'
147 self.server_title = 'XML-RPC Server Documentation'
150 """Set the HTML title of the generated server documentation"""
155 """Set the name of the generated HTML server documentation"""
160 """Set the documentation string for the entire server."""
165 """generate_html_documentation() => html documentation for the server
167 Generates HTML documentation for the server using introspection for
171 argument string used in the documentation and the
173 in the documentation."""
181 method_info = [None, None] # argspec, documentation
207 documentation = documenter.docserver(
213 return documenter.page(self.server_title, documentation)
216 """XML-RPC and documentation request handler class.
222 for documentation.
229 documentation.
245 """XML-RPC and HTML documentation server.
247 Adds the ability to serve server documentation to the capabilities
260 """Handler for XML-RPC data and documentation requests passed through
267 documentation.