Thu, 15 Jun 2006 12:55:58 -0700 http server: support persistent connections.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 15 Jun 2006 12:55:58 -0700] rev 2434
http server: support persistent connections. only "hg serve" affected yet. http server running cgi script will not use persistent connections. support for fastcgi will help that. clients that support keepalive can use one tcp connection for all commands during clone and pull. this makes latency of binary search during pull much lower over wan. if server does not know content-length, it will force connection to close at end. right fix is to use chunked transfer-encoding but this is easier and does not hurt performance. only command that is affected is "changegroup" which is always last command during a pull.
Wed, 14 Jun 2006 15:41:37 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 14 Jun 2006 15:41:37 -0700] rev 2433
merge with crew.
Wed, 14 Jun 2006 15:41:06 -0700 move hgk.py into hgext. now to enable "hg view" is one less step.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 14 Jun 2006 15:41:06 -0700] rev 2432
move hgk.py into hgext. now to enable "hg view" is one less step. edit ~/.hgrc: [extensions] hgext.hgk = cp contrib/hgk ~/bin
Wed, 14 Jun 2006 21:53:42 +0200 replace old-http:// syntax by static-http:// and deprecate the redundant hg://
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 14 Jun 2006 21:53:42 +0200] rev 2431
replace old-http:// syntax by static-http:// and deprecate the redundant hg://
Wed, 14 Jun 2006 18:27:30 +0000 Add web.contact to the hgrc documentation.
"Daniel Santa Cruz <byteshack@gmail.com>" [Wed, 14 Jun 2006 18:27:30 +0000] rev 2430
Add web.contact to the hgrc documentation.
Tue, 13 Jun 2006 14:56:01 -0700 dirstate: fix call to os.lstat when st is None
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 13 Jun 2006 14:56:01 -0700] rev 2429
dirstate: fix call to os.lstat when st is None
Tue, 13 Jun 2006 08:56:23 -0700 honor signals during load of extensions.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 13 Jun 2006 08:56:23 -0700] rev 2428
honor signals during load of extensions.
Mon, 12 Jun 2006 22:09:50 -0700 dirstate.read: make 15% faster.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 12 Jun 2006 22:09:50 -0700] rev 2427
dirstate.read: make 15% faster. time to read dirstate for my kernel repo goes from 0.22s to 0.18s.
Mon, 12 Jun 2006 09:36:44 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 12 Jun 2006 09:36:44 -0700] rev 2426
merge with crew.
Mon, 12 Jun 2006 09:36:23 -0700 dirstate: speed up inner loop of read.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 12 Jun 2006 09:36:23 -0700] rev 2425
dirstate: speed up inner loop of read.
Sat, 10 Jun 2006 17:39:29 +0200 Report on push/pull if heads are merged, too, like for new heads.
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 10 Jun 2006 17:39:29 +0200] rev 2424
Report on push/pull if heads are merged, too, like for new heads. Use case: If a remote repo has two heads and I _want_ to merge them, I merge and push. Meanwhile someone else pushed on top of one of the heads. He won't get a warning, because he doesn't create a new head, I won't notice that I don't close a head, because I don't get a message telling me.
Sat, 10 Jun 2006 11:28:40 +0200 merge with upstream
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sat, 10 Jun 2006 11:28:40 +0200] rev 2423
merge with upstream
Fri, 09 Jun 2006 12:05:17 -0700 add --lsprof option. 3x faster than --profile, more useful output.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 12:05:17 -0700] rev 2422
add --lsprof option. 3x faster than --profile, more useful output. results include calls to c code and nested calls. requires python 2.5 or lsprof installed from svn at http://codespeak.net/svn/user/arigo/hack/misc/lsprof/
Fri, 09 Jun 2006 18:03:35 -0500 ssh: add capability detection at startup
Matt Mackall <mpm@selenic.com> [Fri, 09 Jun 2006 18:03:35 -0500] rev 2421
ssh: add capability detection at startup Because older servers don't return any output for unknown commands, it's tricky to add new commands. The approach is this: we add a "hello" command that reports any interesting capabilities (and other things that might be of interest in the future). To detect whether this new command is supported, we issue both it and our startup detection command ("between") at the beginning of a connection.
Fri, 09 Jun 2006 17:48:14 -0500 ssh: gather initial output so we can do capability detection
Matt Mackall <mpm@selenic.com> [Fri, 09 Jun 2006 17:48:14 -0500] rev 2420
ssh: gather initial output so we can do capability detection
Fri, 09 Jun 2006 17:47:38 -0500 Initial implementation of hello command for ssh
Matt Mackall <mpm@selenic.com> [Fri, 09 Jun 2006 17:47:38 -0500] rev 2419
Initial implementation of hello command for ssh
Fri, 09 Jun 2006 09:14:52 -0700 update test-help output after new options.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 09:14:52 -0700] rev 2418
update test-help output after new options.
Fri, 09 Jun 2006 09:14:30 -0700 copy: fix introduced bug.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 09:14:30 -0700] rev 2417
copy: fix introduced bug.
Fri, 09 Jun 2006 09:09:17 -0700 make description of -n option better.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 09:09:17 -0700] rev 2416
make description of -n option better.
Fri, 09 Jun 2006 09:06:40 -0700 revert: add -n/--dry-run option
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 09:06:40 -0700] rev 2415
revert: add -n/--dry-run option
Fri, 09 Jun 2006 09:00:08 -0700 remove: add -n/--dry-run option
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 09:00:08 -0700] rev 2414
remove: add -n/--dry-run option
Fri, 09 Jun 2006 08:48:30 -0700 copy: add -n/--dry-run option
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 08:48:30 -0700] rev 2413
copy: add -n/--dry-run option
Fri, 09 Jun 2006 08:42:36 -0700 addremove: add -n/--dry-run option
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 08:42:36 -0700] rev 2412
addremove: add -n/--dry-run option
Fri, 09 Jun 2006 08:40:06 -0700 add: add -n/--dry-run option
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 09 Jun 2006 08:40:06 -0700] rev 2411
add: add -n/--dry-run option
Thu, 08 Jun 2006 11:28:27 -0700 debugconfig: allow to print by section and exact item name
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 08 Jun 2006 11:28:27 -0700] rev 2410
debugconfig: allow to print by section and exact item name
Thu, 08 Jun 2006 15:06:31 +0200 Fix diff header (line endings) for failed test output in run-tests.py.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 08 Jun 2006 15:06:31 +0200] rev 2409
Fix diff header (line endings) for failed test output in run-tests.py.
Thu, 08 Jun 2006 14:56:40 +0200 Don't run tests with dots in their name (e.g. test-foo.orig)
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 08 Jun 2006 14:56:40 +0200] rev 2408
Don't run tests with dots in their name (e.g. test-foo.orig)
Wed, 07 Jun 2006 13:16:25 -0700 revert: better fix for not printing 'reverting' message
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 07 Jun 2006 13:16:25 -0700] rev 2407
revert: better fix for not printing 'reverting' message
Wed, 07 Jun 2006 10:33:26 -0700 revert: check for changes against target rev
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 07 Jun 2006 10:33:26 -0700] rev 2406
revert: check for changes against target rev
Wed, 07 Jun 2006 18:33:15 +0200 pick a non-conflicting module name when loading an extension
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 07 Jun 2006 18:33:15 +0200] rev 2405
pick a non-conflicting module name when loading an extension prefix the module name by 'hgext_' so that it doesn't conflict with any core python module (for example bisect -> hgext_bisect) fix issue271
Mon, 05 Jun 2006 16:48:24 +0200 Fixed 'hg serve --webdir-conf foo' which broke due to split of hgweb.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 05 Jun 2006 16:48:24 +0200] rev 2404
Fixed 'hg serve --webdir-conf foo' which broke due to split of hgweb.
Mon, 05 Jun 2006 12:24:00 +0200 Further cleanup of ui.py (changeset 74d569332f8b used one-char variable names).
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 05 Jun 2006 12:24:00 +0200] rev 2403
Further cleanup of ui.py (changeset 74d569332f8b used one-char variable names).
Fri, 02 Jun 2006 16:19:47 +0900 packagescan can't scan nested packages
Eung-Ju PARK <eungju@gmail.com> [Fri, 02 Jun 2006 16:19:47 +0900] rev 2402
packagescan can't scan nested packages
Sun, 04 Jun 2006 17:08:02 -0700 move purge extension out of hgext.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 17:08:02 -0700] rev 2401
move purge extension out of hgext. it is not as clean as other modules in hgext. can move back after rewrite.
Sun, 04 Jun 2006 16:47:46 -0700 import: allow to import stdin with file name "-"
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 16:47:46 -0700] rev 2400
import: allow to import stdin with file name "-"
Sun, 04 Jun 2006 10:32:13 -0700 fix comment.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 10:32:13 -0700] rev 2399
fix comment.
Sun, 04 Jun 2006 10:30:46 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 10:30:46 -0700] rev 2398
merge with crew.
Sun, 04 Jun 2006 10:29:34 -0700 merge change to ssh protocol.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 10:29:34 -0700] rev 2397
merge change to ssh protocol.
Sun, 04 Jun 2006 10:26:05 -0700 refactor ssh server.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 04 Jun 2006 10:26:05 -0700] rev 2396
refactor ssh server.
Sun, 04 Jun 2006 17:46:33 +0200 remove appendfile for the manifest when adding a changegroup
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 04 Jun 2006 17:46:33 +0200] rev 2395
remove appendfile for the manifest when adding a changegroup Since the changelog is using appendfile, the manifest entries cannot be referenced, so we don't need to use append file for the manifest.
Sun, 04 Jun 2006 12:19:51 +0200 hgweb: fix errors and warnings found by pychecker
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 04 Jun 2006 12:19:51 +0200] rev 2394
hgweb: fix errors and warnings found by pychecker - fix missing import - use type_ instead of type - remove unused variable
Sun, 04 Jun 2006 02:25:27 +0200 dirstate: refactor the dirstate binary format, remove magic numbers
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 04 Jun 2006 02:25:27 +0200] rev 2393
dirstate: refactor the dirstate binary format, remove magic numbers
Fri, 02 Jun 2006 08:25:02 -0700 Adjusting hgweb splitup to be a little cleaner.
Eric Hopper <hopper@omnifarious.org> [Fri, 02 Jun 2006 08:25:02 -0700] rev 2392
Adjusting hgweb splitup to be a little cleaner.
Fri, 02 Jun 2006 08:05:01 -0700 Fixing up comment headers for split up code.
Eric Hopper <hopper@omnifarious.org> [Fri, 02 Jun 2006 08:05:01 -0700] rev 2391
Fixing up comment headers for split up code.
Thu, 01 Jun 2006 15:55:09 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 01 Jun 2006 15:55:09 -0700] rev 2390
merge with crew.
Thu, 01 Jun 2006 15:54:54 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 01 Jun 2006 15:54:54 -0700] rev 2389
merge with crew.
Thu, 01 Jun 2006 15:54:31 -0700 Cleanup: unifiy the coding style in the ui.py configitems forwarders.
Markus F.X.J. Oberhumer <markus@oberhumer.com> [Thu, 01 Jun 2006 15:54:31 -0700] rev 2388
Cleanup: unifiy the coding style in the ui.py configitems forwarders. No functional changes.
Thu, 01 Jun 2006 15:53:43 -0700 Expand '~' in path to extensions.
Markus F.X.J. Oberhumer <markus@oberhumer.com> [Thu, 01 Jun 2006 15:53:43 -0700] rev 2387
Expand '~' in path to extensions.
Thu, 01 Jun 2006 13:47:34 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 01 Jun 2006 13:47:34 -0700] rev 2386
merge with crew.
Mon, 22 May 2006 16:47:40 +0200 The line used to ignore the setup file for win32 is a regexp but it was after a "syntax: glob"
Marco Barisione <marco@barisione.org> [Mon, 22 May 2006 16:47:40 +0200] rev 2385
The line used to ignore the setup file for win32 is a regexp but it was after a "syntax: glob"
Mon, 22 May 2006 14:12:41 +0200 Automatically add the path of hg to %PATH% using add_path
Marco Barisione <marco@barisione.org> [Mon, 22 May 2006 14:12:41 +0200] rev 2384
Automatically add the path of hg to %PATH% using add_path
Mon, 22 May 2006 14:06:12 +0200 Ignore the .exe setup file for Windows
Marco Barisione <marco@barisione.org> [Mon, 22 May 2006 14:06:12 +0200] rev 2383
Ignore the .exe setup file for Windows
Fri, 02 Jun 2006 00:33:42 +0200 Make indentation of purge's cmdtable match to mercurial/commands.py
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 02 Jun 2006 00:33:42 +0200] rev 2382
Make indentation of purge's cmdtable match to mercurial/commands.py
Fri, 02 Jun 2006 00:28:28 +0200 Rewritten install instructions for hg-purge to match new situation, fixed typos.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 02 Jun 2006 00:28:28 +0200] rev 2381
Rewritten install instructions for hg-purge to match new situation, fixed typos.
Thu, 01 Jun 2006 23:58:43 +0200 Merged hg-purge
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 01 Jun 2006 23:58:43 +0200] rev 2380
Merged hg-purge
Thu, 01 Jun 2006 23:58:06 +0200 Reorganized files in hg-purge repo to push them into Mercurial.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 01 Jun 2006 23:58:06 +0200] rev 2379
Reorganized files in hg-purge repo to push them into Mercurial. README -> hgext/purge/README purge.py -> hgext/purge/__init__.py removed COPYING.GPL and .hgignore (already in the Mercurial repo)
Fri, 26 May 2006 13:13:39 +0200 Removed --nothing, added --print and --print0
Marco Barisione <marco@barisione.org> [Fri, 26 May 2006 13:13:39 +0200] rev 2378
Removed --nothing, added --print and --print0
Tue, 16 May 2006 22:36:31 +0200 The meaning of the directories on the command line is now explained correctly
Marco Barisione <marco@barisione.org> [Tue, 16 May 2006 22:36:31 +0200] rev 2377
The meaning of the directories on the command line is now explained correctly
Tue, 16 May 2006 22:00:38 +0200 Marked strings for translation
Marco Barisione <marco@barisione.org> [Tue, 16 May 2006 22:00:38 +0200] rev 2376
Marked strings for translation
Tue, 16 May 2006 21:43:21 +0200 Added some comments
Marco Barisione <marco@barisione.org> [Tue, 16 May 2006 21:43:21 +0200] rev 2375
Added some comments
Tue, 16 May 2006 21:05:00 +0200 Even on Windows self._repo.dirstate.state() wants '/' in paths
demian@gaudron.lan [Tue, 16 May 2006 21:05:00 +0200] rev 2374
Even on Windows self._repo.dirstate.state() wants '/' in paths
Tue, 16 May 2006 21:03:07 +0200 Some functions were called as globals (i.e. I forgot some "self.")
demian@gaudron.lan [Tue, 16 May 2006 21:03:07 +0200] rev 2373
Some functions were called as globals (i.e. I forgot some "self.")
Tue, 16 May 2006 18:55:22 +0200 Changset de893ad6bd17 wrongly reversed the meaning of --nothing
demian@gaudron.lan [Tue, 16 May 2006 18:55:22 +0200] rev 2372
Changset de893ad6bd17 wrongly reversed the meaning of --nothing
Tue, 16 May 2006 14:54:34 +0200 Use self._ui.note(...) instead of if self._ui.verbose: self._ui.status(...)
demian@gaudron.lan [Tue, 16 May 2006 14:54:34 +0200] rev 2371
Use self._ui.note(...) instead of if self._ui.verbose: self._ui.status(...)
Tue, 16 May 2006 13:40:45 +0200 Command line options are read in a saner way
demian@gaudron.lan [Tue, 16 May 2006 13:40:45 +0200] rev 2370
Command line options are read in a saner way
Tue, 16 May 2006 13:37:48 +0200 Purge.from_command is now a function called purge
demian@gaudron.lan [Tue, 16 May 2006 13:37:48 +0200] rev 2369
Purge.from_command is now a function called purge
Sat, 13 May 2006 14:57:16 +0200 Added a link to the home page of hg purge
demian@gaudron.lan [Sat, 13 May 2006 14:57:16 +0200] rev 2368
Added a link to the home page of hg purge
Sat, 13 May 2006 14:36:03 +0200 Added a link to the page for CVS utilities
demian@gaudron.lan [Sat, 13 May 2006 14:36:03 +0200] rev 2367
Added a link to the page for CVS utilities
Sat, 13 May 2006 14:24:18 +0200 Added some lines on the requirements for purge
demian@gaudron.lan [Sat, 13 May 2006 14:24:18 +0200] rev 2366
Added some lines on the requirements for purge
Sat, 13 May 2006 14:12:13 +0200 Added an explanation on how to enable the extension in "~/.hgrc"
demian@gaudron.lan [Sat, 13 May 2006 14:12:13 +0200] rev 2365
Added an explanation on how to enable the extension in "~/.hgrc"
Fri, 12 May 2006 20:26:19 +0200 Initial commit
demian@gaudron.lan [Fri, 12 May 2006 20:26:19 +0200] rev 2364
Initial commit
Sun, 04 Jun 2006 18:05:52 +0100 Give a response to unknown SSH commands
Matt Mackall <mpm@selenic.com> [Sun, 04 Jun 2006 18:05:52 +0100] rev 2363
Give a response to unknown SSH commands
Thu, 01 Jun 2006 19:08:29 +0200 Renamed localrepo.undo() to rollback() and talk about "rollback information".
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 01 Jun 2006 19:08:29 +0200] rev 2362
Renamed localrepo.undo() to rollback() and talk about "rollback information".
Thu, 01 Jun 2006 18:36:32 +0200 Fix automatic decompression of tarballs with Firefox.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 01 Jun 2006 18:36:32 +0200] rev 2361
Fix automatic decompression of tarballs with Firefox. The encoding was set to gzip/bzip2, so Firefox (correctly) assumed, that this has to be "decoded" (i.e. decompressed).
Thu, 01 Jun 2006 09:14:27 -0500 hgweb: fix tracebacks on both index and repo pages
TK Soh <teekaysoh@yahoo.com> [Thu, 01 Jun 2006 09:14:27 -0500] rev 2360
hgweb: fix tracebacks on both index and repo pages
Thu, 01 Jun 2006 17:51:40 +0200 Allow comma to separate types in allow_archive, too. Use longer variable name.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 01 Jun 2006 17:51:40 +0200] rev 2359
Allow comma to separate types in allow_archive, too. Use longer variable name.
Thu, 01 Jun 2006 10:02:24 -0500 hgweb: add allow_archive support to [web] section of hgrc
TK Soh <teekaysoh@yahoo.com> [Thu, 01 Jun 2006 10:02:24 -0500] rev 2358
hgweb: add allow_archive support to [web] section of hgrc
Wed, 31 May 2006 14:16:21 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 31 May 2006 14:16:21 -0700] rev 2357
merge with crew.
Wed, 31 May 2006 10:42:44 -0700 Final stage of the hgweb split up.
Eric Hopper <hopper@omnifarious.org> [Wed, 31 May 2006 10:42:44 -0700] rev 2356
Final stage of the hgweb split up. hgweb and hgwebdir now have their own modules.
Wed, 31 May 2006 08:03:29 -0700 Splitting up hgweb so it's easier to change.
Eric Hopper <hopper@omnifarious.org> [Wed, 31 May 2006 08:03:29 -0700] rev 2355
Splitting up hgweb so it's easier to change.
Wed, 31 May 2006 22:25:20 +0200 Manifest groups may be empty, so don't abort in this case (fixes issue210).
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 31 May 2006 22:25:20 +0200] rev 2354
Manifest groups may be empty, so don't abort in this case (fixes issue210). Only abort on empty changelog and file revlogs.
Wed, 31 May 2006 19:41:01 +0200 Pass filename to decoder for 'hg archive' (fixes issue267)
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 31 May 2006 19:41:01 +0200] rev 2353
Pass filename to decoder for 'hg archive' (fixes issue267) Despite writing to a file descriptor, the check in the [decode] section needs a filename. localrepo.wwrite() still writes to the file descriptor.
Mon, 29 May 2006 16:46:31 +0800 various fixes to darcs conversion script
TK Soh <teekaysoh@yahoo.com> [Mon, 29 May 2006 16:46:31 +0800] rev 2352
various fixes to darcs conversion script 1. removed files were missed 2. hidden files in top directory were not added/removed correctly 3. suppressed spurious warning on adding new files. 4. hg changeset now checked in with original author and date 5. __file__ not supported by pdb.py
Sat, 27 May 2006 20:45:22 -0700 contrib: move hg-menu.vim into contrib/vim directory
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 27 May 2006 20:45:22 -0700] rev 2351
contrib: move hg-menu.vim into contrib/vim directory
Sat, 27 May 2006 20:44:53 -0700 contrib: patch review plugin for vim 7.0
Manpreet Singh <junkblocker@yahoo.com> [Sat, 27 May 2006 20:44:53 -0700] rev 2350
contrib: patch review plugin for vim 7.0 The plugin takes an 'hg export'ed patch (in fact any single or multi file patch) and opens multiple tabs containing vim diff/merge windows for each affected file in the patch allowing full visual code reviews.
Sat, 27 May 2006 15:04:40 -0700 darcs2hg.py: import darcs project into mercurial
Sébastien Pierre <sebastien@xprima.com> [Sat, 27 May 2006 15:04:40 -0700] rev 2349
darcs2hg.py: import darcs project into mercurial For now, the tags are not taken into account (so you have to reenter the tags by hand)
Fri, 26 May 2006 22:17:43 +0200 better ui for the bisect extension
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 26 May 2006 22:17:43 +0200] rev 2348
better ui for the bisect extension (and update to i18n)
Wed, 24 May 2006 10:59:30 +0200 use a more reliable way to find what are the new changesets on pull/unbundle
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 24 May 2006 10:59:30 +0200] rev 2347
use a more reliable way to find what are the new changesets on pull/unbundle The number of csets and the hooks where wrong (negative number of csets) when we unbundled a bundle which contains csets we already had. Remove unused variables.
Wed, 24 May 2006 09:27:16 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 24 May 2006 09:27:16 +0200] rev 2346
merge with crew
Wed, 24 May 2006 01:01:39 +0200 n is always 'True', we can only stop the loop with the break statement
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 24 May 2006 01:01:39 +0200] rev 2345
n is always 'True', we can only stop the loop with the break statement
Tue, 23 May 2006 14:58:30 -0700 add acl extension, to limit who can push to subdirs of central repo.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 23 May 2006 14:58:30 -0700] rev 2344
add acl extension, to limit who can push to subdirs of central repo.
Tue, 23 May 2006 14:57:45 -0700 add ui.has_config method.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 23 May 2006 14:57:45 -0700] rev 2343
add ui.has_config method.
Tue, 23 May 2006 09:34:30 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 23 May 2006 09:34:30 -0700] rev 2342
merge with crew.
Tue, 23 May 2006 09:33:09 -0700 contrib: add restricted shell.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 23 May 2006 09:33:09 -0700] rev 2341
contrib: add restricted shell.
Tue, 23 May 2006 18:10:40 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 23 May 2006 18:10:40 +0200] rev 2340
merge with crew
Tue, 23 May 2006 10:44:40 +0200 document and fix findincoming
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 23 May 2006 10:44:40 +0200] rev 2339
document and fix findincoming - add documentation about what the function does, notably the fact that it updates 'base' - transform the workflow to a more simple 'if elif elif else' - do not call remote.branches if not necessary - some nodes where missing in 'base' (from what I understand, if the root of a branch is missing but one parent is present, the parent should be in 'base') - add a testcase for an incorrect outgoing that is fixed by this cset - add a testcase for an empty group bug, it needs fixing
Mon, 22 May 2006 12:17:44 -0400 Minor typo change to reflect actual values used.
"Daniel Santa Cruz <dansan@vikus.com>" [Mon, 22 May 2006 12:17:44 -0400] rev 2338
Minor typo change to reflect actual values used.
Mon, 22 May 2006 15:42:49 -0700 http: fix many problems with url parsing and auth. added proxy test.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 22 May 2006 15:42:49 -0700] rev 2337
http: fix many problems with url parsing and auth. added proxy test. problems fixed: - https scheme handled properly for real and proxy urls. - url of form "http://user:password@host:port/path" now ok. - no-proxy check uses proper host names.
Mon, 22 May 2006 09:00:24 -0700 http: print better error if exception happens.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 22 May 2006 09:00:24 -0700] rev 2336
http: print better error if exception happens.
Mon, 22 May 2006 08:47:53 -0700 add ui.print_exc(), make all traceback printing central.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 22 May 2006 08:47:53 -0700] rev 2335
add ui.print_exc(), make all traceback printing central.
Sun, 21 May 2006 23:39:25 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 21 May 2006 23:39:25 -0700] rev 2334
merge with crew.
Sun, 21 May 2006 23:39:07 -0700 new extension: extdiff. allows to use external diff program.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 21 May 2006 23:39:07 -0700] rev 2333
new extension: extdiff. allows to use external diff program.
Sun, 21 May 2006 23:07:50 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 21 May 2006 23:07:50 -0700] rev 2332
merge with crew.
Sun, 21 May 2006 23:07:19 -0700 diff: allow to use -rA:B syntax as well as -rA -rB
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 21 May 2006 23:07:19 -0700] rev 2331
diff: allow to use -rA:B syntax as well as -rA -rB
Sun, 21 May 2006 22:14:11 -0700 add 'uisetup' function to extension module protocol.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 21 May 2006 22:14:11 -0700] rev 2330
add 'uisetup' function to extension module protocol. if uisetup functin exists in extension, is called before cmdtable examined. called with ui object as parameter. lets module modify cmdtable before commands.py sees it.
Sat, 20 May 2006 12:52:02 -0700 notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 20 May 2006 12:52:02 -0700] rev 2329
notify: add debug output. do not fail if no config file. use --debug to see debug output.
Sat, 20 May 2006 15:34:19 -0300 hgweb.manifest: revno of manifest and changelog aren't always the same
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 20 May 2006 15:34:19 -0300] rev 2328
hgweb.manifest: revno of manifest and changelog aren't always the same In the v4l-dvb repo, the manifest revno and the changelog revno are not in sync. This happened because the same patch was applied to the same revision in two different branches, resulting in the same manifest text, with the same parents and so the first revision was reused. Since hgweb.manifest was assuming the revnos of the manifest and of the changelog were always the same, clicking on manifest -> bz2 in the v4l-dvb site would download the wrong revision. Use the linkrev to go from manifest revision to changelog revision. This still won't be perfect since the page will still talk about "manifest for changeset XYZ", where XYZ was the first changeset to have this manifest, which is not necessarily the same changeset that the user clicked to get to this page - but at least the contents will be the same.
Fri, 19 May 2006 14:58:13 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 19 May 2006 14:58:13 -0700] rev 2327
merge with crew.
Fri, 19 May 2006 14:57:45 -0700 notify: fix off by one error.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 19 May 2006 14:57:45 -0700] rev 2326
notify: fix off by one error.
Fri, 19 May 2006 08:57:26 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 19 May 2006 08:57:26 -0700] rev 2325
merge with crew.
Fri, 19 May 2006 08:57:12 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 19 May 2006 08:57:12 -0700] rev 2324
merge with crew.
Fri, 19 May 2006 08:54:28 -0700 setup.py: install packagescan before any mercurial modules is imported
Volker Kleinfeld <Volker.Kleinfeld@gmx.de> [Fri, 19 May 2006 08:54:28 -0700] rev 2323
setup.py: install packagescan before any mercurial modules is imported Further the installation of packagescan over demandload is moved to the packagescan module. I added as well few more comments in the packagescan module to avoid the wrong use of package scan in the future. Reason: mercurial.packagescan acts as fake mercurial.demandload during a py2exe run. Unfortunatly the import of mercurial.version in setup.py is done before mercurial.packagescan is installed. This results in few imports without mercurial.packagescan in charge and therefore not all dependend modules are detected when running mercurial.packagescan.getmodules later e.g. winerror is missed.
Fri, 19 May 2006 08:51:58 -0700 packagescan: handle demandload module naming changes.
Volker Kleinfeld <Volker.Kleinfeld@gmx.de> [Fri, 19 May 2006 08:51:58 -0700] rev 2322
packagescan: handle demandload module naming changes.
Thu, 18 May 2006 11:48:03 -0700 Update configuration note with mercurial.ini change from Thomas
Lee Cantey <lcantey@gmail.com> [Thu, 18 May 2006 11:48:03 -0700] rev 2321
Update configuration note with mercurial.ini change from Thomas
Thu, 18 May 2006 23:31:12 -0700 fix parsing of tags. make parse errors useful. add new tag tests.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 18 May 2006 23:31:12 -0700] rev 2320
fix parsing of tags. make parse errors useful. add new tag tests. old code read every head of .hgtags. delete and recreate of .hgtags gave new head, but if error in deleted rev, .hgtags had error messages every time it was parsed. this was very hard to fix, because deleted revs hard to get back and update, needed merges too. new code reads .hgtags on every head. advantage is if parse error happens with new code, is possible to fix them by editing .hgtags on a head and committing. NOTE: new code uses binary search of manifest of each head to be fast, but still much slower than old code. best thing would be to have delete record stored in filelog so we never touch manifest. could find live heads directly from filelog. this is more work than i want now. new tests check for parse of tags on different heads, and inaccessible heads created by delete and recreate of .hgtags.
Thu, 18 May 2006 23:02:24 -0700 test-globalopts: make sed expression better.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 18 May 2006 23:02:24 -0700] rev 2319
test-globalopts: make sed expression better.
Thu, 18 May 2006 22:52:19 -0700 If HOME is defined on Windows, Mercurial uses it. Document this.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Thu, 18 May 2006 22:52:19 -0700] rev 2318
If HOME is defined on Windows, Mercurial uses it. Document this.
Thu, 18 May 2006 22:46:27 -0700 merge emacs patches.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 18 May 2006 22:46:27 -0700] rev 2317
merge emacs patches.
Thu, 18 May 2006 22:44:36 -0700 Emacs: separate limitations of revision range and shown changesets.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Thu, 18 May 2006 22:44:36 -0700] rev 2316
Emacs: separate limitations of revision range and shown changesets. For revision range limitation, use "-r" opt with range notation at "hg log" invocation, and use hg-rev-completion-limit as default value. For shown changesets limitation, use "-l" opt at "hg log" invocation, and use hg-log-limit as default value.
Thu, 18 May 2006 22:43:09 -0700 Emacs: adapt read-file-name invocation for (non-X)Emacs 21.4.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Thu, 18 May 2006 22:43:09 -0700] rev 2315
Emacs: adapt read-file-name invocation for (non-X)Emacs 21.4. this patch deters hg-read-file-name from passing hg-file-history to read-file-name as 6th parameter in non-X Emacs environment.
(0) -1000 -120 +120 +1000 +3000 +10000 +30000 tip