# HG changeset patch # User Mads Kiilerich # Date 1358208312 -3600 # Node ID 590056e0ec2f32106ea174da915d4de534fc4a2c # Parent 87923db0ecffaf9c231bde69058e005225b2a2fc hgweb: send Content-Length 0 for zero length response Before, Content-Length wasn't sent for 0 length responses. Now it is. This could in principle prevent some unnecessary http connection close. diff -r 87923db0ecff -r 590056e0ec2f mercurial/hgweb/request.py --- a/mercurial/hgweb/request.py Tue Jan 15 01:05:12 2013 +0100 +++ b/mercurial/hgweb/request.py Tue Jan 15 01:05:12 2013 +0100 @@ -70,7 +70,7 @@ for s in util.filechunkiter(self.inp, limit=length): pass - def respond(self, status, type=None, filename=None, length=0): + def respond(self, status, type=None, filename=None, length=None): if self._start_response is not None: self.httphdr(type, filename, length) @@ -125,7 +125,7 @@ def header(self, headers=[('Content-Type','text/html')]): self.headers.extend(headers) - def httphdr(self, type=None, filename=None, length=0, headers={}): + def httphdr(self, type=None, filename=None, length=None, headers={}): headers = headers.items() if type is not None: headers.append(('Content-Type', type)) @@ -134,7 +134,7 @@ .replace('\\', '\\\\').replace('"', '\\"')) headers.append(('Content-Disposition', 'inline; filename="%s"' % filename)) - if length: + if length is not None: headers.append(('Content-Length', str(length))) self.header(headers)