Mercurial > hg
comparison mercurial/hgweb/server.py @ 14093:ce99d887585f
httprepo: long arguments support (issue2126)
Send the command arguments in the HTTP headers. The command is still part
of the URL. If the server does not have the 'httpheader' capability, the
client will send the command arguments in the URL as it did previously.
Web servers typically allow more data to be placed within the headers than
in the URL, so this approach will:
- Avoid HTTP errors due to using a URL that is too large.
- Allow Mercurial to implement a more efficient wire protocol.
An alternate approach is to send the arguments as part of the request body.
This approach has been rejected because it requires the use of POST
requests, so it would break any existing configuration that relies on the
request type for authentication or caching.
Extensibility:
- The header size is provided by the server, which makes it possible to
introduce an hgrc setting for it.
- The client ignores the capability value after the first comma, which
allows more information to be included in the future.
author | Steven Brown <StevenGBrown@gmail.com> |
---|---|
date | Sun, 01 May 2011 01:04:37 +0800 |
parents | 617a87cb7eb2 |
children | a7d5816087a9 |
comparison
equal
deleted
inserted
replaced
14092:222c8ec7a274 | 14093:ce99d887585f |
---|---|
56 def log_error(self, format, *args): | 56 def log_error(self, format, *args): |
57 self._log_any(self.server.errorlog, format, *args) | 57 self._log_any(self.server.errorlog, format, *args) |
58 | 58 |
59 def log_message(self, format, *args): | 59 def log_message(self, format, *args): |
60 self._log_any(self.server.accesslog, format, *args) | 60 self._log_any(self.server.accesslog, format, *args) |
61 | |
62 def log_request(self, code='-', size='-'): | |
63 xheaders = [h for h in self.headers.items() if h[0].startswith('x-')] | |
64 self.log_message('"%s" %s %s%s', | |
65 self.requestline, str(code), str(size), | |
66 ''.join([' %s:%s' % h for h in sorted(xheaders)])) | |
61 | 67 |
62 def do_write(self): | 68 def do_write(self): |
63 try: | 69 try: |
64 self.do_hgweb() | 70 self.do_hgweb() |
65 except socket.error, inst: | 71 except socket.error, inst: |