Tue, 27 Nov 2007 23:55:03 +0100 hgweb.server: flush log files after every access
Patrick Mezard <pmezard@gmail.com> [Tue, 27 Nov 2007 23:55:03 +0100] rev 5549
hgweb.server: flush log files after every access
Sun, 25 Nov 2007 12:17:30 +0100 test-import: test fuzziness, ambiguous patch locations
Patrick Mezard <pmezard@gmail.com> [Sun, 25 Nov 2007 12:17:30 +0100] rev 5548
test-import: test fuzziness, ambiguous patch locations
Sun, 25 Nov 2007 11:49:34 +0100 patch: fix sort() comparator argument
Jim Hague <jim.hague@acm.org> [Sun, 25 Nov 2007 11:49:34 +0100] rev 5547
patch: fix sort() comparator argument 'hg import' fails under Python 2.3. The name of the compare function parameter in the call to list.sort() is 'cmpfunc' in Python 2.3 and 'cmp' in Python 2.4+. Passing the compare function as a named parameter is therefore problematic.
Sat, 24 Nov 2007 12:35:02 -0600 Merge with crew
Matt Mackall <mpm@selenic.com> [Sat, 24 Nov 2007 12:35:02 -0600] rev 5546
Merge with crew
Sat, 24 Nov 2007 17:56:15 +0100 cmdutil: always expose "files_add", "files_del" and "manifest" templater properties
Patrick Mezard <pmezard@gmail.com> [Sat, 24 Nov 2007 17:56:15 +0100] rev 5545
cmdutil: always expose "files_add", "files_del" and "manifest" templater properties
Sat, 24 Nov 2007 12:13:32 -0600 revlog: make revlogv0 loading more robust against corruption
Matt Mackall <mpm@selenic.com> [Sat, 24 Nov 2007 12:13:32 -0600] rev 5544
revlog: make revlogv0 loading more robust against corruption
Wed, 21 Nov 2007 13:26:18 -0600 push/pull: abort if we try to visit a missing or empty revlog
Matt Mackall <mpm@selenic.com> [Wed, 21 Nov 2007 13:26:18 -0600] rev 5543
push/pull: abort if we try to visit a missing or empty revlog
Tue, 20 Nov 2007 15:54:25 -0600 i18n: fix complaints from pygettext
Matt Mackall <mpm@selenic.com> [Tue, 20 Nov 2007 15:54:25 -0600] rev 5542
i18n: fix complaints from pygettext
Tue, 20 Nov 2007 15:46:20 -0600 verify: improve handling of empty or missing files
Matt Mackall <mpm@selenic.com> [Tue, 20 Nov 2007 15:46:20 -0600] rev 5541
verify: improve handling of empty or missing files - explicitly notice empty or missing changeset, manifest or file revlogs - shortcircuit warnings relating to missing changeset or manifest revlogs - fix changeset/manifest crosscheck swapped variables - properly sort crosscheck messages
Tue, 20 Nov 2007 14:41:47 +0100 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Tue, 20 Nov 2007 14:41:47 +0100] rev 5540
Merge with crew-stable
Sun, 18 Nov 2007 17:25:28 +0100 convert: read CVS files in chunks (issue 800)
Patrick Mezard <pmezard@gmail.com> [Sun, 18 Nov 2007 17:25:28 +0100] rev 5539
convert: read CVS files in chunks (issue 800) socket.makefile() fails on large read requests (more than 10MB) with MemoryError.
Sat, 17 Nov 2007 18:41:31 +0100 test-convert-svn-sink: test directory additions
Patrick Mezard <pmezard@gmail.com> [Sat, 17 Nov 2007 18:41:31 +0100] rev 5538
test-convert-svn-sink: test directory additions
Sat, 17 Nov 2007 18:41:31 +0100 convert: add directories to subversion from root to leaves
Patrick Mezard <pmezard@gmail.com> [Sat, 17 Nov 2007 18:41:31 +0100] rev 5537
convert: add directories to subversion from root to leaves
Sun, 11 Nov 2007 19:34:00 +0100 convert: force svn:executable when execute-bit is not supported
Patrick Mezard <pmezard@gmail.com> [Sun, 11 Nov 2007 19:34:00 +0100] rev 5536
convert: force svn:executable when execute-bit is not supported The util.is_exec fallback would be to ask subversion for the current value of svn:executable. Setting it directly is just simpler.
Sun, 11 Nov 2007 14:17:30 +0100 convert: fix svn file:// URL generation under Windows
Patrick Mezard <pmezard@gmail.com> [Sun, 11 Nov 2007 14:17:30 +0100] rev 5535
convert: fix svn file:// URL generation under Windows
Tue, 20 Nov 2007 14:31:58 +0100 mq: avoid qnew committing everything on invalid paths (issue 803)
Patrick Mezard <pmezard@gmail.com> [Tue, 20 Nov 2007 14:31:58 +0100] rev 5534
mq: avoid qnew committing everything on invalid paths (issue 803) If paths are supplied but resolve to nothing, localrepo.commit() is called with an empty set and commits the whole dirstate. Avoid this by passing the match function to commit.
Mon, 12 Nov 2007 10:49:26 -0800 highlight: clean up coding style a little
Bryan O'Sullivan <bos@serpentine.com> [Mon, 12 Nov 2007 10:49:26 -0800] rev 5533
highlight: clean up coding style a little
Sat, 10 Nov 2007 17:54:57 -0500 extension for synax highlighting in the hgweb file revision view
Adam Hupp <adam@hupp.org> [Sat, 10 Nov 2007 17:54:57 -0500] rev 5532
extension for synax highlighting in the hgweb file revision view Depends on the pygments syntax highlighting library: http://pygments.org/
Sat, 10 Nov 2007 21:30:59 +0100 Change standard streams mode to binary at hg startup
Patrick Mezard <pmezard@gmail.com> [Sat, 10 Nov 2007 21:30:59 +0100] rev 5531
Change standard streams mode to binary at hg startup Standard streams are expected to operate in binary mode everywhere, especially with archive, cat, diff and export commands. Rewriting these to separate informational output from binary content is complicated to do and to maintain, nonwithstanding mode switching reliability. Changing all output mode to binary should not have much impact on Windows were stream processing tools are barely used and usually cope with unix style endings. Streams mode being process wide, the switch is performed in the startup script to avoid polluting existing API users who may have solved this issue already or ignored it at least for the mercurial part.
Sat, 10 Nov 2007 21:30:43 +0100 test-import: read email payload in binary mode
Patrick Mezard <pmezard@gmail.com> [Sat, 10 Nov 2007 21:30:43 +0100] rev 5530
test-import: read email payload in binary mode
Sat, 10 Nov 2007 17:09:56 +0100 convert: fix util.popen regression in darcs converter
Patrick Mezard <pmezard@gmail.com> [Sat, 10 Nov 2007 17:09:56 +0100] rev 5529
convert: fix util.popen regression in darcs converter
Fri, 09 Nov 2007 21:24:25 -0200 merge with crew-stable
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 09 Nov 2007 21:24:25 -0200] rev 5528
merge with crew-stable
Fri, 09 Nov 2007 20:21:35 -0200 mq: really remove undo after a qpush (and after a strip)
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 09 Nov 2007 20:21:35 -0200] rev 5527
mq: really remove undo after a qpush (and after a strip) For qpush, removeundo has to be called after the transaction has finished. strip may use unbundle, which also leaves an undo file. Fixes issue780.
Fri, 09 Nov 2007 20:21:35 -0200 httprepo: give self._url and the netloc to the password manager
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 09 Nov 2007 20:21:35 -0200] rev 5526
httprepo: give self._url and the netloc to the password manager This should hide some differences between different python versions.
(0) -3000 -1000 -300 -100 -50 -24 +24 +50 +100 +300 +1000 +3000 +10000 +30000 tip