##// END OF EJS Templates
test-strip-cross: test handling of linkrev crosses in the manifest
test-strip-cross: test handling of linkrev crosses in the manifest

File last commit:

r5888:956afc02 default
r5912:d67cfe0d default
Show More
request.py
99 lines | 3.4 KiB | text/x-python | PythonLexer
Eric Hopper
Fixing up comment headers for split up code.
r2391 # hgweb/request.py - An http request from either CGI or the standalone server.
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 #
# Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
Vadim Gelfer
update copyrights.
r2859 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 #
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
Benoit Boissinot
remove various unused import
r3963 import socket, cgi, errno
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 from mercurial.i18n import gettext as _
Bryan O'Sullivan
hgweb: fix breaking tests on Python < 2.5
r5563 from common import ErrorResponse, statusmessage
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355
Dirkjan Ochtman
Less indirection in the WSGI web interface. This simplifies some code, and makes it more compliant with WSGI.
r5566 class wsgirequest(object):
def __init__(self, wsgienv, start_response):
Eric Hopper
This patch make several WSGI related alterations....
r2506 version = wsgienv['wsgi.version']
Thomas Arendsen Hein
white space and line break cleanups
r3673 if (version < (1, 0)) or (version >= (2, 0)):
Thomas Arendsen Hein
Cleanup of whitespace, indentation and line continuation.
r4633 raise RuntimeError("Unknown and unsupported WSGI version %d.%d"
Eric Hopper
This patch make several WSGI related alterations....
r2506 % version)
self.inp = wsgienv['wsgi.input']
self.server_write = None
self.err = wsgienv['wsgi.errors']
self.threaded = wsgienv['wsgi.multithread']
self.multiprocess = wsgienv['wsgi.multiprocess']
self.run_once = wsgienv['wsgi.run_once']
self.env = wsgienv
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 self.form = cgi.parse(self.inp, self.env, keep_blank_values=1)
Dirkjan Ochtman
hgweb: separate out start_response() calling
r5888 self._start_response = start_response
Eric Hopper
This patch make several WSGI related alterations....
r2506 self.headers = []
def __iter__(self):
return iter([])
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355
Vadim Gelfer
push over http: server support....
r2464 def read(self, count=-1):
return self.inp.read(count)
Dirkjan Ochtman
hgweb: separate out start_response() calling
r5888 def start_response(self, status):
if self._start_response is not None:
if not self.headers:
raise RuntimeError("request.write called before headers sent" +
" (%s)." % thing)
if isinstance(status, ErrorResponse):
status = statusmessage(status.code)
elif isinstance(status, int):
status = statusmessage(status)
self.server_write = self._start_response(status, self.headers)
self._start_response = None
self.headers = []
Bryan O'Sullivan
hgweb: return meaningful HTTP status codes instead of nonsense
r5561 def respond(self, status, *things):
Dirkjan Ochtman
hgweb: separate out start_response() calling
r5888 if not things:
self.start_response(status)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 for thing in things:
if hasattr(thing, "__iter__"):
for part in thing:
Bryan O'Sullivan
hgweb: return meaningful HTTP status codes instead of nonsense
r5561 self.respond(status, part)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 else:
Eric Hopper
Really fix http headers for web UI and issue 254....
r2514 thing = str(thing)
Dirkjan Ochtman
hgweb: separate out start_response() calling
r5888 self.start_response(status)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 try:
Eric Hopper
Really fix http headers for web UI and issue 254....
r2514 self.server_write(thing)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 except socket.error, inst:
if inst[0] != errno.ECONNRESET:
raise
Thomas Arendsen Hein
Removed tabs and trailing whitespace in python files
r5760
Bryan O'Sullivan
hgweb: return meaningful HTTP status codes instead of nonsense
r5561 def write(self, *things):
self.respond('200 Script output follows', *things)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355
Alexis S. L. Carvalho
avoid _wsgioutputfile <-> _wsgirequest circular reference...
r4246 def writelines(self, lines):
for line in lines:
self.write(line)
def flush(self):
return None
def close(self):
return None
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 def header(self, headers=[('Content-type','text/html')]):
Eric Hopper
This patch make several WSGI related alterations....
r2506 self.headers.extend(headers)
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355
Vadim Gelfer
push over http: server side authorization support....
r2466 def httphdr(self, type, filename=None, length=0, headers={}):
headers = headers.items()
headers.append(('Content-type', type))
Vadim Gelfer
http server: support persistent connections....
r2434 if filename:
headers.append(('Content-disposition', 'attachment; filename=%s' %
filename))
if length:
headers.append(('Content-length', str(length)))
Eric Hopper
Splitting up hgweb so it's easier to change.
r2355 self.header(headers)
Dirkjan Ochtman
Less indirection in the WSGI web interface. This simplifies some code, and makes it more compliant with WSGI.
r5566
def wsgiapplication(app_maker):
Dirkjan Ochtman
hgweb: return iterable, add deprecation note
r5887 '''For compatibility with old CGI scripts. A plain hgweb() or hgwebdir()
can and should now be used as a WSGI application.'''
Thomas Arendsen Hein
Removed tabs and trailing whitespace in python files
r5760 application = app_maker()
def run_wsgi(env, respond):
Dirkjan Ochtman
hgweb: return iterable, add deprecation note
r5887 return application(env, respond)
Thomas Arendsen Hein
Removed tabs and trailing whitespace in python files
r5760 return run_wsgi