Matt Mackall <mpm@selenic.com> [Mon, 09 Oct 2006 20:32:03 -0500] rev 3297
merge: pass contexts to applyupdates
Matt Mackall <mpm@selenic.com> [Mon, 09 Oct 2006 18:13:38 -0500] rev 3296
merge: don't call hooks for revert
- don't call hooks for revert
- use extra variables to avoid swapping contexts
Matt Mackall <mpm@selenic.com> [Mon, 09 Oct 2006 16:07:19 -0500] rev 3295
merge: use contexts for manifestmerge
- take ma, backwards, and copy out of update
- move findcopies call inside manifestmerge
- pass repo rather than ui
Matt Mackall <mpm@selenic.com> [Mon, 09 Oct 2006 14:02:01 -0500] rev 3294
commit: unify file-level commit code
Matt Mackall <mpm@selenic.com> [Sun, 08 Oct 2006 20:18:59 -0500] rev 3293
Use filelog.cmp in checkfilemerge
Matt Mackall <mpm@selenic.com> [Sun, 08 Oct 2006 19:57:45 -0500] rev 3292
merge: remember rename copies and parents properly on commit
record copies in dirstate even if rename was remote
this lets us record it properly at commit
teach checkfilemerge about copies, including merge cases
pull old copy code out of commit
extend rename-merge1 test to show file index
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Sat, 07 Oct 2006 15:16:47 -0400] rev 3291
[patchbomb] prepend leading zeros in the "[PATCH N of M]" string
Without this patch, if one tries to send a patch bomb with more than 9
patches, the resulting subjects are not easily alphabetically sortable.
For example:
...
[PATCH 9 of 10]
[PATCH 10 of 10]
This patch prepends as many leading zeros as necessary. E.g.,
[PATCH 09 of 10]
or
[PATCH 009 of 100]
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Oct 2006 10:56:21 +0200] rev 3290
merged now fully working base85 codec, though currently unused.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Oct 2006 10:55:11 +0200] rev 3289
merge with upstream
Brendan Cully <brendan@kublai.com> [Sat, 07 Oct 2006 16:21:33 -0700] rev 3288
Handle odd-sized base85 input and output
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 07 Oct 2006 22:11:02 +0200] rev 3287
Put in backslash again, it was needed to disable an asciidoc macro.
Backed out changeset c05b0cc6b1485bb240e118a2be9e1d52bb25fd65
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 07 Oct 2006 22:02:56 +0200] rev 3286
Corrected typo in date format, found by Rob Landley.
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 07 Oct 2006 18:14:03 +0200] rev 3285
Make test-bundle-r executable.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Thu, 20 Jul 2006 19:25:11 +0200] rev 3284
add -r/--rev and --base option to bundle
--rev is used to specify a target rev (like pull or clone)
--base REV is used to specify a base instead of a target repo
the target repo is assumed to have all the rev specified in --base
Brendan Cully <brendan@kublai.com> [Fri, 06 Oct 2006 13:01:54 -0700] rev 3283
Add a base85 codec
Matt Mackall <mpm@selenic.com> [Sat, 07 Oct 2006 17:30:26 -0500] rev 3282
Fix undetected change bug in rename tests
Matt Mackall <mpm@selenic.com> [Fri, 06 Oct 2006 17:14:50 -0500] rev 3281
Update test output
Matt Mackall <mpm@selenic.com> [Fri, 06 Oct 2006 17:14:18 -0500] rev 3280
Merge with crew
Brendan Cully <brendan@kublai.com> [Fri, 06 Oct 2006 12:58:50 -0700] rev 3279
hgweb: fix filerevision raw URL
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 06 Oct 2006 19:21:43 +0200] rev 3278
disallow commands on non local repository
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 06 Oct 2006 18:38:32 +0200] rev 3277
Moved hgweb map-* files into their style directories and adjusted them.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 06 Oct 2006 18:28:50 +0200] rev 3276
hgweb: Search templates in templatepath/style/map, too, using a common function.
This allows for web templates to be self-contained in a directory, which makes
copying and modifying them easier.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 06 Oct 2006 16:24:14 +0200] rev 3275
ssh: make the error message more clear, add a testcase
Brendan Cully <brendan@kublai.com> [Thu, 05 Oct 2006 15:36:53 -0700] rev 3274
hgweb: be more conservative about expanding SCRIPT_NAME
Brendan Cully <brendan@kublai.com> [Thu, 05 Oct 2006 15:04:15 -0700] rev 3273
Add {getentries} to default style
Brendan Cully <brendan@kublai.com> [Thu, 05 Oct 2006 14:45:15 -0700] rev 3272
hgweb: fix NWI parsing when hgwebdir isn't at /
Brendan Cully <brendan@kublai.com> [Thu, 05 Oct 2006 14:27:14 -0700] rev 3271
hgweb: convert gitweb to NWI
Brendan Cully <brendan@kublai.com> [Thu, 05 Oct 2006 14:27:14 -0700] rev 3270
hgweb: provide means for handling query parameters
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 05 Oct 2006 20:03:38 +0200] rev 3269
Some versions of sed don't support .\+, so use ..* instead.
Reported by Christian Ebert for MacOS X.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 05 Oct 2006 15:51:54 +0200] rev 3268
Un-debugify debugconfig to showconfig. (issue 317)