Mon, 07 Jul 2008 09:16:09 +0200 mq: fix qrefresh losing copy information (issue 1134)
Patrick Mezard <pmezard@gmail.com> [Mon, 07 Jul 2008 09:16:09 +0200] rev 6801
mq: fix qrefresh losing copy information (issue 1134)
Sat, 05 Jul 2008 14:35:36 +0200 hgk: ctx.parents() problem introduced by 2d54e7c1e69d
Patrick Mezard <pmezard@gmail.com> [Sat, 05 Jul 2008 14:35:36 +0200] rev 6800
hgk: ctx.parents() problem introduced by 2d54e7c1e69d
Sat, 05 Jul 2008 14:35:34 +0200 Fix tests failures introduced by 7239e06e58e9
Patrick Mezard <pmezard@gmail.com> [Sat, 05 Jul 2008 14:35:34 +0200] rev 6799
Fix tests failures introduced by 7239e06e58e9
Tue, 24 Jun 2008 10:40:41 +0100 convert: add documentation for CVS source
Frank Kingswood <frank@kingswood-consulting.co.uk> [Tue, 24 Jun 2008 10:40:41 +0100] rev 6798
convert: add documentation for CVS source
Wed, 02 Jul 2008 12:27:57 +0200 merge another backout
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 12:27:57 +0200] rev 6797
merge another backout
Wed, 02 Jul 2008 12:02:33 +0200 Backed out changeset 4879468fa28f (incorrect Content-Length on Windows)
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 12:02:33 +0200] rev 6796
Backed out changeset 4879468fa28f (incorrect Content-Length on Windows)
Wed, 02 Jul 2008 11:31:19 +0200 merge the backout head
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 11:31:19 +0200] rev 6795
merge the backout head
Wed, 02 Jul 2008 10:58:27 +0200 Backed out changeset b9d6ab187523 (doesn't work on Python 2.3/2.4)
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 10:58:27 +0200] rev 6794
Backed out changeset b9d6ab187523 (doesn't work on Python 2.3/2.4)
Wed, 02 Jul 2008 09:31:13 +0200 merge with main
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 09:31:13 +0200] rev 6793
merge with main
Wed, 02 Jul 2008 09:21:57 +0200 merge with crew-stable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 02 Jul 2008 09:21:57 +0200] rev 6792
merge with crew-stable
Wed, 25 Jun 2008 14:13:20 -0700 Check that git patches only touch files under root
Brendan Cully <brendan@kublai.com> [Wed, 25 Jun 2008 14:13:20 -0700] rev 6791
Check that git patches only touch files under root
Tue, 01 Jul 2008 23:41:47 +0100 Updating Copyright dates in Windows Installer
Martin OConnor <martinoc@gmail.com> [Tue, 01 Jul 2008 23:41:47 +0100] rev 6790
Updating Copyright dates in Windows Installer
Tue, 01 Jul 2008 20:17:11 +0100 Force email package to be loaded in py2exe
Paul Moore <p.f.moore@gmail.com> [Tue, 01 Jul 2008 20:17:11 +0100] rev 6789
Force email package to be loaded in py2exe With Python 2.5, the email package is not fully loaded by py2exe, due to dynamic imports which are not found by modulefinder. This breaks the patchbomb extension. This patch forces the whole email package to be included so that the dynamic imports work as expected.
Mon, 30 Jun 2008 10:36:45 +0200 hgweb: use a single-element tuple to return from protocol.unbundle()
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 30 Jun 2008 10:36:45 +0200] rev 6788
hgweb: use a single-element tuple to return from protocol.unbundle() Python 2.3/2.4 don't support yielding from inside try/finally blocks.
Sun, 29 Jun 2008 23:02:02 +0200 add an Accept header to the http client
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 23:02:02 +0200] rev 6787
add an Accept header to the http client
Sun, 29 Jun 2008 22:47:57 +0200 tests: add a test for the hgweb graph
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 22:47:57 +0200] rev 6786
tests: add a test for the hgweb graph
Sun, 29 Jun 2008 22:36:18 +0200 hgweb: return content iterator instead of using write() callable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 22:36:18 +0200] rev 6785
hgweb: return content iterator instead of using write() callable
Sun, 29 Jun 2008 15:23:09 +0200 hgweb: all protocol functions have become generators
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 15:23:09 +0200] rev 6784
hgweb: all protocol functions have become generators Using the write() callable supplied by the start_response() call is frowned upon by the WSGI spec, returning an iterable over the content chunks is the recommended way. Be aware, though: returning many small chunks will slow down responses, because the server has to flush each chunk separately.
Sun, 29 Jun 2008 13:16:25 +0200 templater: make a template a string-only iterator
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 13:16:25 +0200] rev 6783
templater: make a template a string-only iterator
Sun, 29 Jun 2008 14:20:01 +0200 streamclone yields chunks instead of accepting a file-like object
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 14:20:01 +0200] rev 6782
streamclone yields chunks instead of accepting a file-like object
Sun, 29 Jun 2008 11:34:36 +0200 hgweb: protocol functions take repo instead of web
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 11:34:36 +0200] rev 6781
hgweb: protocol functions take repo instead of web This makes it much easier for implementers of hgweb alternatives to simply call into protocol functions after setting up a repo and a request.
Sun, 29 Jun 2008 11:35:08 +0200 hgweb: move capabilities calculation back into hgweb.protocol
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 11:35:08 +0200] rev 6780
hgweb: move capabilities calculation back into hgweb.protocol
Sun, 29 Jun 2008 11:35:06 +0200 hgweb: centralize permission checks for protocol commands
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 11:35:06 +0200] rev 6779
hgweb: centralize permission checks for protocol commands Consistently enforces authorization checks set up in hgrc up front, so that the actual commands don't have to worry about them and implementers of hgweb alternatives can easily implement their own permission checks.
Sun, 29 Jun 2008 11:02:19 +0200 tests: add some tests for web.allowpull configurations
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sun, 29 Jun 2008 11:02:19 +0200] rev 6778
tests: add some tests for web.allowpull configurations
Sat, 28 Jun 2008 15:28:43 +0200 hgweb: protocol requests are processed immediately
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sat, 28 Jun 2008 15:28:43 +0200] rev 6777
hgweb: protocol requests are processed immediately This makes separation of interface/webcommands and protocol easier and will make http repos slightly faster because there's less overhead.
Sat, 28 Jun 2008 09:28:01 +0200 merge with mpm
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sat, 28 Jun 2008 09:28:01 +0200] rev 6776
merge with mpm
Thu, 26 Jun 2008 13:37:47 -0700 coal: include current node in log, graph menu links
Brendan Cully <brendan@kublai.com> [Thu, 26 Jun 2008 13:37:47 -0700] rev 6775
coal: include current node in log, graph menu links
Thu, 26 Jun 2008 13:45:39 +0200 hgweb: move shortcut expansion to request instantiation
Dirkjan Ochtman <dirkjan@ochtman.nl> [Thu, 26 Jun 2008 13:45:39 +0200] rev 6774
hgweb: move shortcut expansion to request instantiation
Fri, 11 Jul 2008 18:46:02 -0500 fix iso date help
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6773
fix iso date help
Fri, 11 Jul 2008 18:46:02 -0500 context: simplify parents code
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6772
context: simplify parents code
Fri, 11 Jul 2008 18:46:02 -0500 workingctx: add __contains__ method
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6771
workingctx: add __contains__ method
Fri, 11 Jul 2008 18:46:02 -0500 status: various cleanups
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6770
status: various cleanups - rename lookup to cmp for formatting reasons - reduce nesting level of fixup code - sort fixup results - group comparison cases in a separate clause - make list initialization simpler - delay flag lookup for working directory - sort removed list in comparison - avoid sorting already sorted lists
Fri, 11 Jul 2008 18:46:02 -0500 status: use contexts
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6769
status: use contexts
Fri, 11 Jul 2008 18:46:02 -0500 hgk: fix parent breakage
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6768
hgk: fix parent breakage
Fri, 11 Jul 2008 18:46:02 -0500 dirstate: simplify/optimize path checking
Matt Mackall <mpm@selenic.com> [Fri, 11 Jul 2008 18:46:02 -0500] rev 6767
dirstate: simplify/optimize path checking - add fast _finddirs function - remove recursion from incpath/decpath - split changepath into addpath/droppath - change relax arg to check - move incpathcheck logic into addpath - move incpath into addpath - move decpath into droppath - inline code in self._dirs creation
Fri, 27 Jun 2008 21:45:16 -0500 acl: refactoring
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 21:45:16 -0500] rev 6766
acl: refactoring - undo class structure - make buildmatch return None for no function - use contexts properly - simplify check loop
Fri, 27 Jun 2008 19:27:00 -0500 manifest: make checkforbidden take a list
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 19:27:00 -0500] rev 6765
manifest: make checkforbidden take a list
Fri, 27 Jun 2008 19:25:48 -0500 context: add walk method
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 19:25:48 -0500] rev 6764
context: add walk method
Fri, 27 Jun 2008 18:44:43 -0500 context: add __int__ and hex methods
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 18:44:43 -0500] rev 6763
context: add __int__ and hex methods
Fri, 27 Jun 2008 18:28:45 -0500 util: add sort helper
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 18:28:45 -0500] rev 6762
util: add sort helper
Fri, 27 Jun 2008 14:53:30 -0500 remove: work directly off status
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 14:53:30 -0500] rev 6761
remove: work directly off status This allows us to use a single directory walk and to trivially ignore unknown files. The resulting code is also easier to follow.
Fri, 27 Jun 2008 13:43:29 -0500 status: clean up all users for unknown files
Matt Mackall <mpm@selenic.com> [Fri, 27 Jun 2008 13:43:29 -0500] rev 6760
status: clean up all users for unknown files
Thu, 26 Jun 2008 18:49:45 -0500 churn: major refactor
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 18:49:45 -0500] rev 6759
churn: major refactor - use contexts - use ui.pushbuffer and patch.diff to greatly simplify patch generation - simplify diff counting logic - fold all the counting functions together - simplify progress math - simplify padding function - kill graph helper function - simplify alias reading - use Schwartzian transform on stats - change some notes to debugs
Wed, 25 Jun 2008 14:13:20 -0700 Check that git patches only touch files under root
Brendan Cully <brendan@kublai.com> [Wed, 25 Jun 2008 14:13:20 -0700] rev 6758
Check that git patches only touch files under root
Thu, 26 Jun 2008 18:44:54 -0500 purge: cleanup
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 18:44:54 -0500] rev 6757
purge: cleanup - remove casefolding check, no longer needed - fold error function into remove - simplify eol logic - remove force logic and parameters
Thu, 26 Jun 2008 15:55:23 -0500 dirstate: improve case-folding logic
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 15:55:23 -0500] rev 6756
dirstate: improve case-folding logic - return normalized form in directory walk - track normalized form in known
Thu, 26 Jun 2008 14:35:50 -0500 dirstate: fold statwalk and walk
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6755
dirstate: fold statwalk and walk
Thu, 26 Jun 2008 14:35:50 -0500 purge: use status
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6754
purge: use status
Thu, 26 Jun 2008 14:35:50 -0500 repo.status: eliminate list_
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6753
repo.status: eliminate list_
Thu, 26 Jun 2008 14:35:50 -0500 verify: lots of refactoring
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6752
verify: lots of refactoring - simplify finding first bad rev - no need to count changesets - add exc function to simplify exception handling - combine checksize and checkversion to checklog - unify missing revlog detection in checklog - add checkentry to consolidate - linkrev lookup - detailed check of linkrev - detailed check of parents - duplicate checking - use checkentry for changelog, manifest, and files - simplify havecl and havemf - track all changesets refering to a manifest - move unnamed file check somewhere more useful - reorder crosschecks - fix filenodes crosscheck and add exception handling - check unpacked size field
Thu, 26 Jun 2008 14:35:50 -0500 verify: add some local variables
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6751
verify: add some local variables
Thu, 26 Jun 2008 14:35:50 -0500 add __len__ and __iter__ methods to repo and revlog
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6750
add __len__ and __iter__ methods to repo and revlog
Thu, 26 Jun 2008 14:35:50 -0500 manifest: remove execf/linkf methods
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6749
manifest: remove execf/linkf methods
Thu, 26 Jun 2008 14:35:50 -0500 make debugrename work on p1, not tip
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:50 -0500] rev 6748
make debugrename work on p1, not tip
Thu, 26 Jun 2008 14:35:46 -0500 use repo[changeid] to get a changectx
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 14:35:46 -0500] rev 6747
use repo[changeid] to get a changectx
Thu, 26 Jun 2008 13:58:24 -0500 rename checkfolding to checkcase
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:58:24 -0500] rev 6746
rename checkfolding to checkcase
Thu, 26 Jun 2008 13:58:22 -0500 dirstate: remove unused folding function
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:58:22 -0500] rev 6745
dirstate: remove unused folding function
Thu, 26 Jun 2008 13:52:16 -0500 context: remove islink and isexec methods
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:52:16 -0500] rev 6744
context: remove islink and isexec methods
Thu, 26 Jun 2008 13:46:34 -0500 simplify flag handling
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:46:34 -0500] rev 6743
simplify flag handling add _checklink var to dirstate introduce dirstate.flagfunc switch users of util.execfunc/linkfunc to flagfunc change manifestdict.set to take a flags string change ctx.fileflags to ctx.flags change gitmode func to a dict remove util.execfunc/linkfunc
Thu, 26 Jun 2008 13:46:33 -0500 context: clean up parents()
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:46:33 -0500] rev 6742
context: clean up parents()
Thu, 26 Jun 2008 13:46:31 -0500 context: simplify changeid logic
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:46:31 -0500] rev 6741
context: simplify changeid logic
Thu, 26 Jun 2008 13:46:29 -0500 use repo.changectx(None) to get a workingctx
Matt Mackall <mpm@selenic.com> [Thu, 26 Jun 2008 13:46:29 -0500] rev 6740
use repo.changectx(None) to get a workingctx
Wed, 25 Jun 2008 17:35:20 -0500 context: avoid using None for working parent
Matt Mackall <mpm@selenic.com> [Wed, 25 Jun 2008 17:35:20 -0500] rev 6739
context: avoid using None for working parent
Wed, 25 Jun 2008 17:34:28 -0500 use repo.changectx rather than context.changectx
Matt Mackall <mpm@selenic.com> [Wed, 25 Jun 2008 17:34:28 -0500] rev 6738
use repo.changectx rather than context.changectx
Wed, 25 Jun 2008 17:33:51 -0500 context: consistently return p1 context for None
Matt Mackall <mpm@selenic.com> [Wed, 25 Jun 2008 17:33:51 -0500] rev 6737
context: consistently return p1 context for None
Wed, 25 Jun 2008 17:33:34 -0500 lookup: optimize '.'
Matt Mackall <mpm@selenic.com> [Wed, 25 Jun 2008 17:33:34 -0500] rev 6736
lookup: optimize '.' Remove error messages as behavior is documented in hg help revs
Wed, 25 Jun 2008 12:53:57 -0700 Remove RSS/atom links from coal/paper index
Brendan Cully <brendan@kublai.com> [Wed, 25 Jun 2008 12:53:57 -0700] rev 6735
Remove RSS/atom links from coal/paper index
Wed, 25 Jun 2008 12:52:40 -0700 Improve archive links in coal/paper index
Brendan Cully <brendan@kublai.com> [Wed, 25 Jun 2008 12:52:40 -0700] rev 6734
Improve archive links in coal/paper index
Wed, 25 Jun 2008 20:50:40 +0200 graph: fix JavaScript issues to make it work on IE
Benoit Allard <benoit@aeteurope.nl> [Wed, 25 Jun 2008 20:50:40 +0200] rev 6733
graph: fix JavaScript issues to make it work on IE
Wed, 25 Jun 2008 10:54:48 +0200 fix default branchheads() argument (e85951aeec6e was very broken)
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 25 Jun 2008 10:54:48 +0200] rev 6732
fix default branchheads() argument (e85951aeec6e was very broken)
Wed, 25 Jun 2008 10:37:07 +0200 fix dumb test failure introduced in 855851eae70f
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 25 Jun 2008 10:37:07 +0200] rev 6731
fix dumb test failure introduced in 855851eae70f
Tue, 24 Jun 2008 20:39:37 -0700 Improve hgwebdir index in coal and paper styles
Brendan Cully <brendan@kublai.com> [Tue, 24 Jun 2008 20:39:37 -0700] rev 6730
Improve hgwebdir index in coal and paper styles
Tue, 24 Jun 2008 10:18:03 +0200 graph: improve script hiding tricks
Dirkjan Ochtman <dirkjan@ochtman.nl> [Tue, 24 Jun 2008 10:18:03 +0200] rev 6729
graph: improve script hiding tricks
Tue, 24 Jun 2008 10:08:32 +0200 graph: optimize rendering by appending all nodes at once
Augie Fackler <durin42@gmail.com> [Tue, 24 Jun 2008 10:08:32 +0200] rev 6728
graph: optimize rendering by appending all nodes at once
Tue, 24 Jun 2008 09:53:48 +0200 Fix gitweb to not say shortlog instead of graph.
Augie Fackler <durin42@gmail.com> [Tue, 24 Jun 2008 09:53:48 +0200] rev 6727
Fix gitweb to not say shortlog instead of graph.
Tue, 24 Jun 2008 09:36:24 +0200 tighter default argument selection in localrepo.branchheads()
Dirkjan Ochtman <dirkjan@ochtman.nl> [Tue, 24 Jun 2008 09:36:24 +0200] rev 6726
tighter default argument selection in localrepo.branchheads()
Tue, 24 Jun 2008 09:34:38 +0200 merge from crew-stable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Tue, 24 Jun 2008 09:34:38 +0200] rev 6725
merge from crew-stable
Tue, 24 Jun 2008 09:33:13 +0200 use ${PYTHON} var in doc/Makefile as well
Dirkjan Ochtman <dirkjan@ochtman.nl> [Tue, 24 Jun 2008 09:33:13 +0200] rev 6724
use ${PYTHON} var in doc/Makefile as well
Mon, 23 Jun 2008 15:02:52 +0200 merge: only in-branch merges can be implicit
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 23 Jun 2008 15:02:52 +0200] rev 6723
merge: only in-branch merges can be implicit
Mon, 23 Jun 2008 15:03:22 +0200 get repo.branchheads() to use working directory's branch by default
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 23 Jun 2008 15:03:22 +0200] rev 6722
get repo.branchheads() to use working directory's branch by default
Mon, 23 Jun 2008 13:12:32 +0200 kill some trailing spaces
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 23 Jun 2008 13:12:32 +0200] rev 6721
kill some trailing spaces
Mon, 23 Jun 2008 12:54:27 +0200 graph: display branch name alongside tags
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 23 Jun 2008 12:54:27 +0200] rev 6720
graph: display branch name alongside tags
Mon, 23 Jun 2008 10:36:00 +0200 test-commit: test unset date is not read as epoch origin
Patrick Mezard <pmezard@gmail.com> [Mon, 23 Jun 2008 10:36:00 +0200] rev 6719
test-commit: test unset date is not read as epoch origin
Sat, 21 Jun 2008 15:27:51 +0200 Fix commit date (issue1193)
Christian Ebert <blacktrash@gmx.net> [Sat, 21 Jun 2008 15:27:51 +0200] rev 6718
Fix commit date (issue1193) The None check in workingctx prevents calling util.makedate when date is not explicitly given.
Thu, 19 Jun 2008 00:14:24 +0200 convert: hg sink commits without working dir
Patrick Mezard <pmezard@gmail.com> [Thu, 19 Jun 2008 00:14:24 +0200] rev 6717
convert: hg sink commits without working dir
Thu, 19 Jun 2008 00:14:24 +0200 convert: reintegrate file retrieval code in sinks
Patrick Mezard <pmezard@gmail.com> [Thu, 19 Jun 2008 00:14:24 +0200] rev 6716
convert: reintegrate file retrieval code in sinks It simplifies the sink interface and all the sinks to handle files data as they want.
Thu, 19 Jun 2008 00:14:23 +0200 context: add memctx for memory commits
Patrick Mezard <pmezard@gmail.com> [Thu, 19 Jun 2008 00:14:23 +0200] rev 6715
context: add memctx for memory commits
Wed, 18 Jun 2008 23:45:49 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 18 Jun 2008 23:45:49 +0200] rev 6714
merge with crew
Wed, 18 Jun 2008 23:16:51 +0200 coal: remove double template entry
Benoit Allard <benoit@aeteurope.nl> [Wed, 18 Jun 2008 23:16:51 +0200] rev 6713
coal: remove double template entry
Wed, 18 Jun 2008 23:23:03 +0200 localrepo: interpret ctx.filectx() exception as a missing file
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 23:23:03 +0200] rev 6712
localrepo: interpret ctx.filectx() exception as a missing file
Wed, 18 Jun 2008 23:00:20 +0200 localrepo: do not expose workingctx options
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 23:00:20 +0200] rev 6711
localrepo: do not expose workingctx options These are implementation details and probably of no use to client code.
Wed, 18 Jun 2008 22:52:26 +0200 localrepo: extract _commitctx() from commit()
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:26 +0200] rev 6710
localrepo: extract _commitctx() from commit() _commitctx() takes a single changectx like argument. It gives way to commits from memory only.
Wed, 18 Jun 2008 22:52:26 +0200 context: let workingctx.date(), .user() and description() be overriden
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:26 +0200] rev 6709
context: let workingctx.date(), .user() and description() be overriden
Wed, 18 Jun 2008 22:52:26 +0200 localrepo: let commit() get extra data from workingctx
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:26 +0200] rev 6708
localrepo: let commit() get extra data from workingctx
Wed, 18 Jun 2008 22:52:25 +0200 localrepo: hide commit() file selection behind workingctx
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:25 +0200] rev 6707
localrepo: hide commit() file selection behind workingctx
Wed, 18 Jun 2008 22:52:25 +0200 localrepo: replace dirstate by workingfilectx in filecommit()
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:25 +0200] rev 6706
localrepo: replace dirstate by workingfilectx in filecommit()
Wed, 18 Jun 2008 22:52:25 +0200 context: let workingctx parents be overriden
Patrick Mezard <pmezard@gmail.com> [Wed, 18 Jun 2008 22:52:25 +0200] rev 6705
context: let workingctx parents be overriden
Wed, 18 Jun 2008 19:04:10 +0200 graph: limit the number of displayed changest to a reasonable value
Benoit Allard <benoit@aeteurope.nl> [Wed, 18 Jun 2008 19:04:10 +0200] rev 6704
graph: limit the number of displayed changest to a reasonable value
Wed, 18 Jun 2008 16:47:47 +0300 LookupError should have same __str__ as RevlogError
Alexander Solovyov <piranha@piranha.org.ua> [Wed, 18 Jun 2008 16:47:47 +0300] rev 6703
LookupError should have same __str__ as RevlogError
Wed, 18 Jun 2008 12:56:41 +0200 templates: graph lacked bottom search in default style
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 12:56:41 +0200] rev 6702
templates: graph lacked bottom search in default style
Wed, 18 Jun 2008 12:55:05 +0200 templates: fix navigation links for graph entries
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 12:55:05 +0200] rev 6701
templates: fix navigation links for graph entries
Wed, 18 Jun 2008 12:48:04 +0200 make revlog.LookupError inherit from KeyError
Alexander Solovyov <piranha@piranha.org.ua> [Wed, 18 Jun 2008 12:48:04 +0200] rev 6700
make revlog.LookupError inherit from KeyError This will improve integration with external applications which depend on KeyError, which is usually raised by __getitem__ calls.
Wed, 18 Jun 2008 09:13:39 +0100 cvsps.py: remove unused Changeset member of logentry
Frank Kingswood <frank@kingswood-consulting.co.uk> [Wed, 18 Jun 2008 09:13:39 +0100] rev 6699
cvsps.py: remove unused Changeset member of logentry
Wed, 18 Jun 2008 12:38:45 +0200 tests: make new convert-cvs tests executable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 12:38:45 +0200] rev 6698
tests: make new convert-cvs tests executable
Wed, 18 Jun 2008 12:13:59 +0200 graph: tweak the indentation algorithm
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 12:13:59 +0200] rev 6697
graph: tweak the indentation algorithm
Wed, 18 Jun 2008 11:09:18 +0200 cvsps: fix a final whitespace nit
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 11:09:18 +0200] rev 6696
cvsps: fix a final whitespace nit
Wed, 18 Jun 2008 11:08:21 +0200 tests: fix test breakage from graph template changes
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 11:08:21 +0200] rev 6695
tests: fix test breakage from graph template changes
Wed, 18 Jun 2008 10:15:59 +0200 merge incorporation of graph into paper style
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 10:15:59 +0200] rev 6694
merge incorporation of graph into paper style
Wed, 18 Jun 2008 10:05:43 +0200 hgweb: Fix up non-coal styles to support graph.
Augie Fackler <durin42@gmail.com> [Wed, 18 Jun 2008 10:05:43 +0200] rev 6693
hgweb: Fix up non-coal styles to support graph.
Wed, 18 Jun 2008 00:28:40 -0500 make graph view work with paper style
Matt Mackall <mpm@selenic.com> [Wed, 18 Jun 2008 00:28:40 -0500] rev 6692
make graph view work with paper style
Wed, 18 Jun 2008 07:06:41 +0200 add graph page to hgweb
Dirkjan Ochtman <dirkjan@ochtman.nl> [Wed, 18 Jun 2008 07:06:41 +0200] rev 6691
add graph page to hgweb
Sun, 15 Jun 2008 16:05:46 +0100 convert: cvs.py - Allow user to use built-in CVS changeset code.
Frank Kingswood <frank@kingswood-consulting.co.uk> [Sun, 15 Jun 2008 16:05:46 +0100] rev 6690
convert: cvs.py - Allow user to use built-in CVS changeset code. tests: add two testcases for CVS conversion with builtin CVS including a testcase for issue 1148.
Sun, 15 Jun 2008 15:59:53 +0100 convert: cvsps - User interface to CVS changeset code in cvsps.py
Frank Kingswood <frank@kingswood-consulting.co.uk> [Sun, 15 Jun 2008 15:59:53 +0100] rev 6689
convert: cvsps - User interface to CVS changeset code in cvsps.py
Tue, 17 Jun 2008 12:10:19 -0500 cvsps: fix up some whitespace
Matt Mackall <mpm@selenic.com> [Tue, 17 Jun 2008 12:10:19 -0500] rev 6688
cvsps: fix up some whitespace
Sun, 15 Jun 2008 15:59:27 +0100 convert: cvsps.py - code to generate changesets from a CVS repository
Frank Kingswood <frank@kingswood-consulting.co.uk> [Sun, 15 Jun 2008 15:59:27 +0100] rev 6687
convert: cvsps.py - code to generate changesets from a CVS repository
Mon, 16 Jun 2008 11:51:19 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 16 Jun 2008 11:51:19 +0200] rev 6686
merge with crew-stable
Sun, 15 Jun 2008 13:05:39 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Sun, 15 Jun 2008 13:05:39 +0200] rev 6685
Merge with crew-stable
Sat, 14 Jun 2008 16:01:24 +0200 localrepo: remove useless sort() call
Patrick Mezard <pmezard@gmail.com> [Sat, 14 Jun 2008 16:01:24 +0200] rev 6684
localrepo: remove useless sort() call
Sat, 14 Jun 2008 08:46:34 +0200 merge transplanted cset back from crew-stable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Sat, 14 Jun 2008 08:46:34 +0200] rev 6683
merge transplanted cset back from crew-stable
Mon, 16 Jun 2008 11:50:33 +0200 Fix python2.3 incompatibility introduced by a2b13cac0922.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 16 Jun 2008 11:50:33 +0200] rev 6682
Fix python2.3 incompatibility introduced by a2b13cac0922.
(0) -3000 -1000 -120 +120 +1000 +3000 +10000 +30000 tip