Mercurial > public > mercurial-scm > hg
comparison mercurial/revlog.py @ 2138:f5046cab9e2e
Fix revlog-ng interaction with old-http.
revlog.py wasn't trying to detect the version of a revlog file that
doesn't exist on the filesystem (as is the case with old-http).
Additionally, there was an off-by-one error in httprangereader.read
(ranges in HTTP Range headers are inclusive), making it get more data
than what was asked for. This made a struct.unpack complain that
"unpack str size does not match format".
Finally, with the two fixes above, test-static-http fails, since
BaseHTTPServer doesn't understand ranges and returns too much data.
Work around that by reading only the specified amount.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Wed, 26 Apr 2006 22:42:07 -0700 |
parents | cb99c711c59f |
children | ed631e83fa06 |
comparison
equal
deleted
inserted
replaced
2137:5fefab118f7e | 2138:f5046cab9e2e |
---|---|
331 and st.st_ino == oldst.st_ino | 331 and st.st_ino == oldst.st_ino |
332 and st.st_mtime == oldst.st_mtime | 332 and st.st_mtime == oldst.st_mtime |
333 and st.st_ctime == oldst.st_ctime): | 333 and st.st_ctime == oldst.st_ctime): |
334 return | 334 return |
335 self.indexstat = st | 335 self.indexstat = st |
336 if len(i) > 0: | 336 if len(i) > 0: |
337 v = struct.unpack(versionformat, i)[0] | 337 v = struct.unpack(versionformat, i)[0] |
338 flags = v & ~0xFFFF | 338 flags = v & ~0xFFFF |
339 fmt = v & 0xFFFF | 339 fmt = v & 0xFFFF |
340 if fmt == 0: | 340 if fmt == 0: |
341 if flags: | 341 if flags: |
342 raise RevlogError(_("index %s invalid flags %x for format v0" % | 342 raise RevlogError(_("index %s invalid flags %x for format v0" % |