Thu, 22 Jun 2006 13:19:52 +0900 Fixed conditional include of stdint.h for windows/msvc6/python2.3 environment.
Shun-ichi GOTO <shunichi.goto@gmail.com> [Thu, 22 Jun 2006 13:19:52 +0900] rev 2483
Fixed conditional include of stdint.h for windows/msvc6/python2.3 environment.
Thu, 22 Jun 2006 02:44:39 +0200 Fix hg diff regression
andrea@suse.de [Thu, 22 Jun 2006 02:44:39 +0200] rev 2482
Fix hg diff regression
Wed, 21 Jun 2006 17:55:11 -0700 add tests for push over http.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 17:55:11 -0700] rev 2481
add tests for push over http.
Wed, 21 Jun 2006 17:30:31 -0700 fix -I/-X when relative paths used or in subdir
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 17:30:31 -0700] rev 2480
fix -I/-X when relative paths used or in subdir
Wed, 21 Jun 2006 17:09:29 -0700 hg.repository: many routines expect path to be a string even if empty.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 17:09:29 -0700] rev 2479
hg.repository: many routines expect path to be a string even if empty.
Wed, 21 Jun 2006 16:20:21 -0700 fix bug in localrepo.changes.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 16:20:21 -0700] rev 2478
fix bug in localrepo.changes. caused by 1e32e2fe8a677c391049d40b8794478976a0a914.
Wed, 21 Jun 2006 15:31:23 -0700 use commit time as mtime for file archives.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 15:31:23 -0700] rev 2477
use commit time as mtime for file archives. now output from two run of "hg archive -t zip" is same.
Wed, 21 Jun 2006 15:15:06 -0700 archive: make "hg archive -t XXX -" to write to stdout
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 15:15:06 -0700] rev 2476
archive: make "hg archive -t XXX -" to write to stdout
Wed, 21 Jun 2006 09:32:31 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 09:32:31 -0700] rev 2475
merge with crew.
Wed, 21 Jun 2006 09:28:48 -0700 Fix cold cache diff performance
Chris Mason <mason@suse.com> [Wed, 21 Jun 2006 09:28:48 -0700] rev 2474
Fix cold cache diff performance cold cache diff performance has regressed in two ways. localrepo.changes has optimizations for diffing against the working dir parent that expect node1 to be None. commands.revpair() usage means that commands.dodiff() never sends node1 == None. This is fixed in localrepo.changes by checking against the dirstate parents. In the non-dirstate parents case, localrepo.changes does a loop comparing files without first sorting the file names, leading to random access across the disk.
Wed, 21 Jun 2006 09:15:42 -0700 change some repo messages in small ways.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 09:15:42 -0700] rev 2473
change some repo messages in small ways. move "pushing" and "pulling" after repo create so error message and exit happens before messages printed. fix sshrepo parse error message.
Wed, 21 Jun 2006 09:14:36 -0700 make repo scheme table driven.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 21 Jun 2006 09:14:36 -0700] rev 2472
make repo scheme table driven.
Tue, 20 Jun 2006 23:58:45 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 23:58:45 -0700] rev 2471
merge with crew.
Tue, 20 Jun 2006 23:58:21 -0700 use demandload more.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 23:58:21 -0700] rev 2470
use demandload more.
Tue, 20 Jun 2006 18:39:52 -0700 hg.repository: make protocol table driven.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 18:39:52 -0700] rev 2469
hg.repository: make protocol table driven. allows extensions to add new protocols.
Tue, 20 Jun 2006 17:51:39 -0700 mac os x: fixes for 10.2 from chris monson <monpublic@gmail.com>
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 17:51:39 -0700] rev 2468
mac os x: fixes for 10.2 from chris monson <monpublic@gmail.com>
Tue, 20 Jun 2006 15:23:54 -0700 http client: better work with authorization errors, broken sockets.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:23:54 -0700] rev 2467
http client: better work with authorization errors, broken sockets.
Tue, 20 Jun 2006 15:23:01 -0700 push over http: server side authorization support.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:23:01 -0700] rev 2466
push over http: server side authorization support. new hgrc entries allow_push, deny_push, push_ssl control push over http. allow_push list controls push. if empty or not set, no user can push. if "*", any user (incl. unauthenticated user) can push. if list of user names, only authenticated users in list can push. deny_push list examined before allow_push. if "*", no user can push. if list of user names, no unauthenticated user can push, and no users in list can push. push_ssl requires https connection for push. default is true, so password sniffing can not be done.
Tue, 20 Jun 2006 15:17:28 -0700 push over http: client support.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:17:28 -0700] rev 2465
push over http: client support. stream bundle data using PUT request.
Tue, 20 Jun 2006 15:16:50 -0700 push over http: server support.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:16:50 -0700] rev 2464
push over http: server support. write "unbundle" verb for http.
Tue, 20 Jun 2006 15:14:12 -0700 localrepository.push: propagate return value
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:14:12 -0700] rev 2463
localrepository.push: propagate return value
Tue, 20 Jun 2006 15:13:17 -0700 util: add limit to amount filechunkiter will read
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 15:13:17 -0700] rev 2462
util: add limit to amount filechunkiter will read
Tue, 20 Jun 2006 09:11:41 -0700 tidy up mtime patch of andrea, get back half of performance loss.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 20 Jun 2006 09:11:41 -0700] rev 2461
tidy up mtime patch of andrea, get back half of performance loss. this makes diff < 3% slower than before.
Tue, 20 Jun 2006 15:37:41 +0200 report correct mtime in the hg diff output
andrea@suse.de [Tue, 20 Jun 2006 15:37:41 +0200] rev 2460
report correct mtime in the hg diff output
Mon, 19 Jun 2006 20:37:36 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Mon, 19 Jun 2006 20:37:36 +0200] rev 2459
merge with crew
Sun, 18 Jun 2006 19:10:48 +0200 change log message creation when using 'hg import'
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 18 Jun 2006 19:10:48 +0200] rev 2458
change log message creation when using 'hg import' if found cmdline is used else if found patch header is used else launch hgeditor
Sun, 18 Jun 2006 21:15:01 -0700 merge emacs changes.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 18 Jun 2006 21:15:01 -0700] rev 2457
merge emacs changes.
Sun, 18 Jun 2006 21:04:42 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 18 Jun 2006 21:04:42 -0700] rev 2456
merge with crew.
Sun, 18 Jun 2006 04:13:33 +0900 Emacs: follow the revision usage policy of "hg diff" command.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Sun, 18 Jun 2006 04:13:33 +0900] rev 2455
Emacs: follow the revision usage policy of "hg diff" command. This patche makes "parent" as default revision of diff command.
Sun, 18 Jun 2006 04:02:56 +0900 Emacs: change directory of output buffer to the root of the repository.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Sun, 18 Jun 2006 04:02:56 +0900] rev 2454
Emacs: change directory of output buffer to the root of the repository.
(0) -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 tip