Request a username and password.
Apply cacheForever on this response's headers.
Apply disableCache on this response's headers.
Construct and return a copy of this HttpResponseEx.
Redirect the UA to another location
Utility function to serve HTML.
Utility function to serve arbitrary data.
Send a file from the disk
Utility function to serialize and serve an arbitrary D value as JSON. If jsonCallback is set, use JSONP instead.
Utility function to serve plain text.
Set a "Refresh" header requesting a refresh after the given interval, optionally redirecting to another location.
Serve a nice error page using this.errorTemplate, this.errorTokens, and writePageContents.
Serve this.pageTemplate as HTML, substituting "<?title?>" with title, "<?content?>" with one <p> tag per html item, and other tokens according to pageTokens.
Serve this.pageTemplate as HTML, substituting "<?title?>" with title, "<?content?>" with contentHTML, and other tokens according to pageTokens.
Return a likely reason (in English) for why a specified status code was served.
Load a template from the given file name, and fill it using the given dictionary.
Fill a template using the given dictionary, substituting "<?var?>" with dictionary["var"].
The default template for the page's contents, used for writePage.
The default template for error messages, used for writeError.
The default page template, used for writePage and error pages.
Additional variables to use when filling out error templates.
If set, this is the name of the JSONP callback function to be used in serveJson.
Additional variables to use when filling out page templates.
HTTP status code
HTTP status message, if one was supplied
What Zlib compression level to use when compressing the reply. Set to a negative value to disable compression.
Returns the message corresponding to the given HttpStatusCode, or null if the code is unknown.
Set the response status code and message
Initializes this HttpResponse with the given statusLine.
If the data is compressed, return the decompressed data
Called by the server to compress content, if possible/appropriate
Called by the server to apply range request.
HttpResponse with some code to ease creating responses