Thu, 01 Dec 2005 10:48:35 -0600 fix rename --after
Robin Farine <robin.farine@terminus.org> [Thu, 01 Dec 2005 10:48:35 -0600] rev 1565
fix rename --after
Thu, 01 Dec 2005 10:48:29 -0600 Re: [PATCH 2 of 3] remove walk warning about nonexistent files
Benoit Boissinot <bboissin@gmail.com> [Thu, 01 Dec 2005 10:48:29 -0600] rev 1564
Re: [PATCH 2 of 3] remove walk warning about nonexistent files On 11/15/05, Robin Farine <robin.farine@terminus.org> wrote: > # HG changeset patch > # User Robin Farine <robin.farine@terminus.org> > # Node ID ce0a3cc309a8d1e81278ec01a3c61fbb99c691f4 > # Parent feb77e0951e74d75c213e8471f107fdcc124c876 > remove walk warning about nonexistent files > > diff -r feb77e0951e7 -r ce0a3cc309a8 mercurial/dirstate.py > --- a/mercurial/dirstate.py Tue Nov 15 08:42:45 2005 +0100 > +++ b/mercurial/dirstate.py Tue Nov 15 08:59:50 2005 +0100 > @@ -336,9 +336,6 @@ > try: > st = os.lstat(f) > except OSError, inst: > - if ff not in dc: self.ui.warn('%s: %s\n' % ( > - util.pathto(self.getcwd(), ff), > - inst.strerror)) > continue > if stat.S_ISDIR(st.st_mode): > cmp1 = (lambda x, y: cmp(x[1], y[1])) this break some tests, a better fix would be to check if ff can be a directory prefix from files in dc you can try the attached patch. Benoit
Thu, 01 Dec 2005 10:48:22 -0600 export patkind() from util
Robin Farine <robin.farine@terminus.org> [Thu, 01 Dec 2005 10:48:22 -0600] rev 1563
export patkind() from util
Thu, 01 Dec 2005 10:48:18 -0600 Fix walkhelper on windows.
Christian Boos <cboos@neuf.fr> [Thu, 01 Dec 2005 10:48:18 -0600] rev 1562
Fix walkhelper on windows. The ''seen'' dictionary stores paths in canonical form, so the walkhelp must also provide paths in that form, otherwise the changed files are listed twice.
Tue, 29 Nov 2005 22:29:14 +0100 disallow '\n' and '\r' in tag names
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 29 Nov 2005 22:29:14 +0100] rev 1561
disallow '\n' and '\r' in tag names add a test for disallowed characters in tag names
Tue, 29 Nov 2005 18:06:23 +0100 Merge with http://hg.omnifarious.org/~hopper/mercurial
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 29 Nov 2005 18:06:23 +0100] rev 1560
Merge with http://hg.omnifarious.org/~hopper/mercurial
Fri, 18 Nov 2005 22:48:47 -0800 Convert all classes to new-style classes by deriving them from object.
Eric Hopper <hopper@omnifarious.org> [Fri, 18 Nov 2005 22:48:47 -0800] rev 1559
Convert all classes to new-style classes by deriving them from object.
Sun, 27 Nov 2005 16:37:18 +0100 fix run-tests' PYTHONPATH
Robin Farine <robin.farine@terminus.org> [Sun, 27 Nov 2005 16:37:18 +0100] rev 1558
fix run-tests' PYTHONPATH Specify the installation directory for python modules so we can set PYTHONPATH without guessing.
Wed, 23 Nov 2005 18:36:44 +0100 Updated help text for 'hg log'.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 23 Nov 2005 18:36:44 +0100] rev 1557
Updated help text for 'hg log'.
Wed, 23 Nov 2005 08:07:27 +0100 Space/Tab cleanup in bash_completion.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 23 Nov 2005 08:07:27 +0100] rev 1556
Space/Tab cleanup in bash_completion.
Wed, 23 Nov 2005 08:02:35 +0100 bash_completion: use hg --debug help to get the list of debug commands.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 23 Nov 2005 08:02:35 +0100] rev 1555
bash_completion: use hg --debug help to get the list of debug commands. Also, try completing with the debug commands only when there's no other candidates. Based on an idea by TK Soh.
Thu, 17 Nov 2005 19:38:57 +0100 Catch IOErrors and RepoErrors when serving repositories via hgweb.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 17 Nov 2005 19:38:57 +0100] rev 1554
Catch IOErrors and RepoErrors when serving repositories via hgweb.
Thu, 17 Nov 2005 19:18:33 +0100 Merge with mercurial/crew
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 17 Nov 2005 19:18:33 +0100] rev 1553
Merge with mercurial/crew
Wed, 16 Nov 2005 19:19:39 +0100 Added version information to "report bug" message for unknown exceptions.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 16 Nov 2005 19:19:39 +0100] rev 1552
Added version information to "report bug" message for unknown exceptions.
Wed, 16 Nov 2005 12:56:19 +0100 Fixes to "hg heads -r FOO":
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 16 Nov 2005 12:56:19 +0100] rev 1551
Fixes to "hg heads -r FOO": Make it actually work (undefined variable 'rev'; allow to pass a rev parameter). repo.branchlookup() doesn't need a copy of heads because it doesn't modify it. Use None as default argument to heads() instead of nullid. Doc string PEPification.
Wed, 16 Nov 2005 12:08:25 +0100 add a -r/--rev option to heads to show only heads descendant from rev
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 16 Nov 2005 12:08:25 +0100] rev 1550
add a -r/--rev option to heads to show only heads descendant from rev
Thu, 17 Nov 2005 19:11:13 +0100 Always escape repository name in hgweb, very important in notfound.tmpl.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 17 Nov 2005 19:11:13 +0100] rev 1549
Always escape repository name in hgweb, very important in notfound.tmpl.
Wed, 16 Nov 2005 20:53:16 +0100 fix bug in setup.py introduced in r1508.
Will <will@glozer.net> [Wed, 16 Nov 2005 20:53:16 +0100] rev 1548
fix bug in setup.py introduced in r1508. The 'console' argument is expected to be a list of strings, but was changed to just a string.
Tue, 15 Nov 2005 20:35:10 +0100 close .hg/hgrc after writing the default values on clone
TK Soh <teekaysoh@yahoo.com> [Tue, 15 Nov 2005 20:35:10 +0100] rev 1547
close .hg/hgrc after writing the default values on clone this fix a bug where Dircleanup did not work because the file was still open
Mon, 14 Nov 2005 21:47:07 +0100 close file before renaming it (since it doesn't work the other way on windows)
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Mon, 14 Nov 2005 21:47:07 +0100] rev 1546
close file before renaming it (since it doesn't work the other way on windows)
Mon, 14 Nov 2005 16:10:59 +0100 fix errors found by pychecker
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Mon, 14 Nov 2005 16:10:59 +0100] rev 1545
fix errors found by pychecker
Mon, 14 Nov 2005 15:10:10 +0100 added st as alias for status in zsh_completition
Michael Gebetsroither <michael.geb@gmx.at> [Mon, 14 Nov 2005 15:10:10 +0100] rev 1544
added st as alias for status in zsh_completition
Mon, 14 Nov 2005 15:09:34 +0100 Merge with Thomas Waldmann
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 14 Nov 2005 15:09:34 +0100] rev 1543
Merge with Thomas Waldmann
Mon, 14 Nov 2005 04:58:28 +0200 made C src formatting more consistent
twaldmann@thinkmo.de [Mon, 14 Nov 2005 04:58:28 +0200] rev 1542
made C src formatting more consistent
Mon, 14 Nov 2005 03:59:35 +0200 fixed some stuff pychecker shows, marked unclear/wrong stuff with XXX
twaldmann@thinkmo.de [Mon, 14 Nov 2005 03:59:35 +0200] rev 1541
fixed some stuff pychecker shows, marked unclear/wrong stuff with XXX
Mon, 14 Nov 2005 02:30:19 +0200 minor optimization: save some string trash
twaldmann@thinkmo.de [Mon, 14 Nov 2005 02:30:19 +0200] rev 1540
minor optimization: save some string trash
Sun, 13 Nov 2005 16:25:45 +0100 use posix compliant option for head
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 13 Nov 2005 16:25:45 +0100] rev 1539
use posix compliant option for head head -N is not posix compliant, head -n N should be used instead
Sun, 13 Nov 2005 02:08:39 +0100 Merge with upstream
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 13 Nov 2005 02:08:39 +0100] rev 1538
Merge with upstream
Sun, 13 Nov 2005 02:06:02 +0100 Added hg-ssh - a wrapper for ssh access to a limited set of mercurial repos
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 13 Nov 2005 02:06:02 +0100] rev 1537
Added hg-ssh - a wrapper for ssh access to a limited set of mercurial repos To be used in ~/.ssh/authorized_keys with the "command" option, see sshd(8): command="hg-ssh path/to/repo1 /path/to/repo2 ~/repo3 ~user/repo4" ssh-dss ... (probably together with these other useful options: no-port-forwarding,no-X11-forwarding,no-agent-forwarding) This allows pull/push over ssh to to the repositories given as arguments. If all your repositories are subdirectories of a common directory, you can allow shorter paths with: command="cd path/to/my/repositories && hg-ssh repo1 subdir/repo2"
Thu, 10 Nov 2005 16:16:28 +0100 Catch the exception raised with 'hg help <somethingambiguous>'.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 10 Nov 2005 16:16:28 +0100] rev 1536
Catch the exception raised with 'hg help <somethingambiguous>'. Example: 'hg help a'
Fri, 11 Nov 2005 18:20:24 -0800 Add revlog.strip to truncate away revisions.
mason@suse.com [Fri, 11 Nov 2005 18:20:24 -0800] rev 1535
Add revlog.strip to truncate away revisions. This updates the revlog data structures for index and nodemap in place so the .d and .i files don't need to be reread after stripping away a revision.
Fri, 11 Nov 2005 18:20:22 -0800 Optimize manifest.add
mason@suse.com [Fri, 11 Nov 2005 18:20:22 -0800] rev 1534
Optimize manifest.add Testing shows that manifest.add is spending a significant percentage of its time running calcoffsets and doing text = "".join(addlist). This patch removes the need for both of these by storying the manifest in a character array, and using a modified bisect search to find lines without the help of a separate index of line offsets. manifest.add was also reworked to push delta construction/combination into the main loop. Time to apply 2751 patches (without psyco, ext3 noatime,data=writeback): Stock hg: 4m45s real 3m32s user 55s sys patched: 2m48s real 1m53s user 43s sys quilt: 2m30s real 45s user 50s sys (quilt does much more io...)
Fri, 11 Nov 2005 18:20:19 -0800 Reduce string duplication in compression code
mason@suse.com [Fri, 11 Nov 2005 18:20:19 -0800] rev 1533
Reduce string duplication in compression code This cuts down on string copies and allows buffers (instead of strings) to be passed into the compression code
Fri, 11 Nov 2005 15:34:17 -0800 reset mtime when two files are equal
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:34:17 -0800] rev 1532
reset mtime when two files are equal
Fri, 11 Nov 2005 15:34:13 -0800 add localrepo.wlock for protecting the dirstate
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:34:13 -0800] rev 1531
add localrepo.wlock for protecting the dirstate - add localrepo.wlock - nest it in localrepo.lock - protect the code that change the dirstate
Fri, 11 Nov 2005 15:34:09 -0800 add a releasefn keyword to lock.lock
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:34:09 -0800] rev 1530
add a releasefn keyword to lock.lock releasefn is a function that will be executed when the lock is released
Fri, 11 Nov 2005 15:34:06 -0800 add dirstate.lazyread, write atomically the dirstate
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:34:06 -0800] rev 1529
add dirstate.lazyread, write atomically the dirstate - add a dirstate.lazyread function that read only if it wasn't read before and update all callers - use the atomic keyword from util.opener to atomically write the dirstate mercurial/dirstate.py
Fri, 11 Nov 2005 15:33:59 -0800 add an atomic argument to util.opener
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:33:59 -0800] rev 1528
add an atomic argument to util.opener when atomic is used, the file while be renamed on close
Fri, 11 Nov 2005 15:33:08 -0800 don't print anything about file of unsupported type unless
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 11 Nov 2005 15:33:08 -0800] rev 1527
don't print anything about file of unsupported type unless the file was specified on the command line
Fri, 11 Nov 2005 15:32:28 -0800 fix a bug where command defaults suppress global options
TK Soh <teekaysoh@yahoo.com> [Fri, 11 Nov 2005 15:32:28 -0800] rev 1526
fix a bug where command defaults suppress global options
Wed, 09 Nov 2005 13:42:16 -0800 Merge with TAH
Matt Mackall <mpm@selenic.com> [Wed, 09 Nov 2005 13:42:16 -0800] rev 1525
Merge with TAH
Wed, 09 Nov 2005 13:40:08 -0800 hgweb: fix traceback by skipping invalid repo paths
TK Soh <teekaysoh@yahoo.com> [Wed, 09 Nov 2005 13:40:08 -0800] rev 1524
hgweb: fix traceback by skipping invalid repo paths
Wed, 09 Nov 2005 13:39:56 -0800 Fix line wrapping
Matt Mackall <mpm@selenic.com> [Wed, 09 Nov 2005 13:39:56 -0800] rev 1523
Fix line wrapping
Wed, 09 Nov 2005 13:39:24 -0800 Added --date option to annotate.
lupus@debian.org [Wed, 09 Nov 2005 13:39:24 -0800] rev 1522
Added --date option to annotate.
Wed, 09 Nov 2005 13:38:46 -0800 copy the mode of the file when breaking hardlinks
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 09 Nov 2005 13:38:46 -0800] rev 1521
copy the mode of the file when breaking hardlinks
Wed, 09 Nov 2005 22:31:18 +0100 Allow ambiguous command shortcut if only an alias for the same command.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 09 Nov 2005 22:31:18 +0100] rev 1520
Allow ambiguous command shortcut if only an alias for the same command. Currently the only example for this is 'hg o' or 'hg ou' as a shortcut for 'hg out' and 'hg outgoing'.
Wed, 09 Nov 2005 12:52:05 -0800 Merge with TAH
Matt Mackall <mpm@selenic.com> [Wed, 09 Nov 2005 12:52:05 -0800] rev 1519
Merge with TAH
Mon, 07 Nov 2005 19:00:51 +0100 Improved error message for ambiguous command shortcuts.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 07 Nov 2005 19:00:51 +0100] rev 1518
Improved error message for ambiguous command shortcuts.
Mon, 07 Nov 2005 18:39:25 +0100 Canonicalize command when using aliases or prefix matching.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 07 Nov 2005 18:39:25 +0100] rev 1517
Canonicalize command when using aliases or prefix matching. This makes the norepo check and the help and version command work when not using the canonical name.
Tue, 08 Nov 2005 14:22:03 -0800 Automatically run "verify" whenever we run "recover"
Matt Mackall <mpm@selenic.com> [Tue, 08 Nov 2005 14:22:03 -0800] rev 1516
Automatically run "verify" whenever we run "recover"
Tue, 08 Nov 2005 10:36:23 -0800 Fix up test-help, mark test-rename +x
Matt Mackall <mpm@selenic.com> [Tue, 08 Nov 2005 10:36:23 -0800] rev 1515
Fix up test-help, mark test-rename +x
Tue, 08 Nov 2005 10:35:13 -0800 avoid to copy more than one file to the same destination file
Robin Farine <robin.farine@terminus.org> [Tue, 08 Nov 2005 10:35:13 -0800] rev 1514
avoid to copy more than one file to the same destination file
Tue, 08 Nov 2005 10:35:09 -0800 copy & rename don't overwrite unless --force is specified
Robin Farine <robin.farine@terminus.org> [Tue, 08 Nov 2005 10:35:09 -0800] rev 1513
copy & rename don't overwrite unless --force is specified
Tue, 08 Nov 2005 10:35:05 -0800 generalize copy/rename to handle more than one source directory
Robin Farine <robin.farine@terminus.org> [Tue, 08 Nov 2005 10:35:05 -0800] rev 1512
generalize copy/rename to handle more than one source directory
Tue, 08 Nov 2005 10:35:00 -0800 hgweb: remove redundant rstrip filter
TK Soh <teekaysoh@yahoo.com> [Tue, 08 Nov 2005 10:35:00 -0800] rev 1511
hgweb: remove redundant rstrip filter
Tue, 08 Nov 2005 10:34:50 -0800 use self.{w,}join when possible
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 08 Nov 2005 10:34:50 -0800] rev 1510
use self.{w,}join when possible
Mon, 07 Nov 2005 15:40:24 -0800 Add safety check for addgroup
Matt Mackall <mpm@selenic.com> [Mon, 07 Nov 2005 15:40:24 -0800] rev 1509
Add safety check for addgroup
Fri, 04 Nov 2005 11:37:45 -0800 fix a warning when py2exe is not used
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 04 Nov 2005 11:37:45 -0800] rev 1508
fix a warning when py2exe is not used
Fri, 04 Nov 2005 10:24:05 -0800 Add explicit 'st' alias for status
Matt Mackall <mpm@selenic.com> [Fri, 04 Nov 2005 10:24:05 -0800] rev 1507
Add explicit 'st' alias for status
Fri, 04 Nov 2005 10:22:03 -0800 if unambigious command name are passed, use them
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 04 Nov 2005 10:22:03 -0800] rev 1506
if unambigious command name are passed, use them
(0) -1000 -300 -100 -60 +60 +100 +300 +1000 +3000 tip