Fri, 21 Mar 2008 08:46:15 -0700 test: Add tests for webdir symlinks and walkrepos.
Eric Hopper <hopper@omnifarious.org> [Fri, 21 Mar 2008 08:46:15 -0700] rev 6341
test: Add tests for webdir symlinks and walkrepos.
Fri, 21 Mar 2008 15:44:11 -0500 mq: warn when applying a patch to somewhere other than tip
Matt Mackall <mpm@selenic.com> [Fri, 21 Mar 2008 15:44:11 -0500] rev 6340
mq: warn when applying a patch to somewhere other than tip
Fri, 21 Mar 2008 21:56:55 +0100 util: check fileno() validity in win32 set_binary()
Patrick Mezard <pmezard@gmail.com> [Fri, 21 Mar 2008 21:56:55 +0100] rev 6339
util: check fileno() validity in win32 set_binary()
Fri, 21 Mar 2008 14:52:24 +0100 clone: print "updating working directory" status message
Adrian Buehlmann <adrian@cadifra.com> [Fri, 21 Mar 2008 14:52:24 +0100] rev 6338
clone: print "updating working directory" status message With this change, "hg clone" looks like this: % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved So the user sees % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory while Mercurial is writing to disk to populate the working directory With this change, "hg clone" looks like this: % hg clone big big-work updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved
Fri, 21 Mar 2008 12:05:01 +0100 give better error message on non-existent mapfile (issue813)
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 21 Mar 2008 12:05:01 +0100] rev 6337
give better error message on non-existent mapfile (issue813)
Fri, 21 Mar 2008 11:06:02 +0100 warn about new heads on commit (issue842)
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 21 Mar 2008 11:06:02 +0100] rev 6336
warn about new heads on commit (issue842)
Fri, 21 Mar 2008 00:55:53 +0100 hgweb: only accept POST requests for unbundle
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 21 Mar 2008 00:55:53 +0100] rev 6335
hgweb: only accept POST requests for unbundle
Fri, 21 Mar 2008 00:39:39 +0100 tab/space cleanup
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 21 Mar 2008 00:39:39 +0100] rev 6334
tab/space cleanup
Thu, 20 Mar 2008 22:46:35 +0100 ui: copy overlay from both direct and indirect parentui
Dirkjan Ochtman <dirkjan@ochtman.nl> [Thu, 20 Mar 2008 22:46:35 +0100] rev 6333
ui: copy overlay from both direct and indirect parentui
Thu, 20 Mar 2008 23:32:43 +0100 convert: allow missing tools not to stop source type detection
Patrick Mezard <pmezard@gmail.com> [Thu, 20 Mar 2008 23:32:43 +0100] rev 6332
convert: allow missing tools not to stop source type detection
Thu, 20 Mar 2008 22:58:53 +0100 fix test-serve breakage for other hostnames
Dirkjan Ochtman <dirkjan@ochtman.nl> [Thu, 20 Mar 2008 22:58:53 +0100] rev 6331
fix test-serve breakage for other hostnames
Thu, 20 Mar 2008 22:41:40 +0100 util: test fileno() availability in win32 set_binary()
Patrick Mezard <pmezard@gmail.com> [Thu, 20 Mar 2008 22:41:40 +0100] rev 6330
util: test fileno() availability in win32 set_binary() Fix suggested by Alexander Belchenko <bialix@ukr.net>
Thu, 20 Mar 2008 15:59:54 -0500 tests: fix repeatability for test-filebranch with dirstate granularity
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 15:59:54 -0500] rev 6329
tests: fix repeatability for test-filebranch with dirstate granularity
Thu, 20 Mar 2008 14:14:15 -0500 tests: remove some unnecessary sleeps
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 14:14:15 -0500] rev 6328
tests: remove some unnecessary sleeps
Thu, 20 Mar 2008 13:53:59 -0500 dirstate: refactor granularity code, add a test
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 13:53:59 -0500] rev 6327
dirstate: refactor granularity code, add a test - rename option dirstate.granularity - move option reading into .write() - add a simple test
Wed, 19 Mar 2008 17:55:21 -0300 dirstate: ignore stat data for files that were updated too recently
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 19 Mar 2008 17:55:21 -0300] rev 6326
dirstate: ignore stat data for files that were updated too recently This should fix the race where hg commit foo <change foo without changing its size> happens in the same second and status is fooled into thinking foo is clean. A configuration item is used to determine the timeout, since different filesystems may have different requirements (I think VFAT needs 3s, while most Unix filesystems are fine with 1s).
Thu, 20 Mar 2008 11:12:35 -0500 pager: remove pager code from core
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 11:12:35 -0500] rev 6325
pager: remove pager code from core
Thu, 20 Mar 2008 11:12:35 -0500 pager: further simplify code, clean up comments
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 11:12:35 -0500] rev 6324
pager: further simplify code, clean up comments
Thu, 20 Mar 2008 00:57:14 +0100 Use the pager given by the environment to display long output
David Soria Parra <dsp@php.net> [Thu, 20 Mar 2008 00:57:14 +0100] rev 6323
Use the pager given by the environment to display long output Unix systems usually have a PAGER environment variable set. If it is set, mercurial will use the pager application to display output. Two configuration variables are available to influence the behaviour of the pager: pager.application sets the application to be used pager.quiet silences Broken Pipe errors that might occur when the user quits the pager before mercurial finished to write the output
Wed, 16 Jan 2008 11:50:24 +0100 hgk: don't exit if mercurial commands only print warnings
Dennis Schoen <ds@1d10t.de> [Wed, 16 Jan 2008 11:50:24 +0100] rev 6322
hgk: don't exit if mercurial commands only print warnings
Fri, 14 Mar 2008 15:38:56 -0700 tag: allow multiple tags to be added or removed
John Coomes <john.coomes@sun.com> [Fri, 14 Mar 2008 15:38:56 -0700] rev 6321
tag: allow multiple tags to be added or removed - Example: "hg tag -r 42 build-25 beta-1" will add tags build-25 and beta-1 for rev 42. - The deprecated and undocumented usage "hg tag arg1 arg2" used to emit a warning, then add tag arg1 for rev arg2 (equivalent to "hg tag -r arg2 arg1"). It will now add tags arg1 and arg2 for the current revision. - If one tag triggers an error, no tags are added/removed (all or nothing).
Mon, 17 Mar 2008 19:28:46 +0200 tests: update test-command-template for the new {isodatesec} filter
Giorgos Keramidas <keramida@ceid.upatras.gr> [Mon, 17 Mar 2008 19:28:46 +0200] rev 6320
tests: update test-command-template for the new {isodatesec} filter
Mon, 17 Mar 2008 19:17:54 +0200 Add an {isodatesec} template, to show seconds too.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Mon, 17 Mar 2008 19:17:54 +0200] rev 6319
Add an {isodatesec} template, to show seconds too.
Mon, 17 Mar 2008 12:41:14 -0700 convert: Add convert.cvsps option to set up an alternate cvsps command line.
Eric Hopper <hopper@omnifarious.org> [Mon, 17 Mar 2008 12:41:14 -0700] rev 6318
convert: Add convert.cvsps option to set up an alternate cvsps command line.
Mon, 17 Mar 2008 12:40:02 -0700 hgwebdir: Tiny fix for webdir on non-symlink capable platforms.
Eric Hopper <hopper@omnifarious.org> [Mon, 17 Mar 2008 12:40:02 -0700] rev 6317
hgwebdir: Tiny fix for webdir on non-symlink capable platforms.
Sat, 15 Mar 2008 12:22:15 -0400 Add tests for cloning from a all-history bundle
John Mulligan <phlogistonjohn@asynchrono.us> [Sat, 15 Mar 2008 12:22:15 -0400] rev 6316
Add tests for cloning from a all-history bundle
Thu, 20 Mar 2008 11:12:35 -0500 clone: use cancopy
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 11:12:35 -0500] rev 6315
clone: use cancopy
Sat, 15 Mar 2008 12:04:28 -0400 Add ability to directly clone from all-history bundles
John Mulligan <phlogistonjohn@asynchrono.us> [Sat, 15 Mar 2008 12:04:28 -0400] rev 6314
Add ability to directly clone from all-history bundles bundlerepos can be used as clone src, even if CWD is not a repo
Thu, 20 Mar 2008 11:12:35 -0500 remoterepo: no longer needed
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 11:12:35 -0500] rev 6313
remoterepo: no longer needed All users already use repo.local() to test for local, which is false in the repository base class. statichttprepository never derived from this class anyway.
Thu, 20 Mar 2008 11:12:35 -0500 repo classes: remove unused dev() method
Matt Mackall <mpm@selenic.com> [Thu, 20 Mar 2008 11:12:35 -0500] rev 6312
repo classes: remove unused dev() method
(0) -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip