Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8198
config: getsource -> source
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8197
ui: simplify fixconfig
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8196
ui: fix-up and warn about deprecated %%
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8195
bugzilla: fix section reading
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8194
templater: use new config parser
This gives us the ability to use includes and continuations
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8193
config: add section filter to read
move section filtering out of ui.readconfig
kill section filtering in config.update
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8192
config: deal with spaces at end of line more carefully
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8191
hgweb: kill parentui references
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8190
ui: kill most users of parentui name and arg, replace with .copy()
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8189
ui: replace parentui mechanism with repo.baseui
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8188
add cmdutil.remoteui
remoteui sorts out the issues of getting ssh config options from the
local repo into the remote one while not copying other options like hooks.
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8187
ui: less links to parentui
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8186
config: add some helper methods
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8185
config: split source data out into separate map
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8184
config: add %unset name support
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8183
config: allow including other config files
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8182
showconfig: show source file and line with --debug
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8181
util: kill configparser wrapper
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8180
hgweb: use config.config
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:43 -0500] rev 8179
clone: config escaping no longer needed
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:50:09 -0500] rev 8178
Merge with stable
Matt Mackall <mpm@selenic.com> [Sun, 26 Apr 2009 16:49:47 -0500] rev 8177
Merge with crew-stable
Brendan Cully <brendan@kublai.com> [Sun, 26 Apr 2009 14:20:41 -0700] rev 8176
transplant: forbid transplant to nonempty repositories with no working directory.
Partially undoes
d3fb413667e5.
Benjamin Wohlwend <bw@piquadrat.ch> [Sun, 26 Apr 2009 13:36:08 -0700] rev 8175
ui.isatty() accesses sys.stdin, causing mod_wsgi to throw IOError.
Martijn Pieters <mj@zopatista.com> [Fri, 24 Apr 2009 18:17:42 +0200] rev 8174
hg: allow hg.parseurl(url, None)
In many places hg.parseurl is called with a url and "opts.get('rev')",
suggesting the second, optional argument can be None. Because opts['rev']
usually defaults to [] this never happens in practice.
However, extensions don't necessarily behave the same, but do copy this
pattern.
Also, include wider hg.parseurl tests, beyond a demonstration of the problem.
Jacob Lee <artdent@gmail.com> [Fri, 24 Apr 2009 17:00:18 -0500] rev 8173
transplant: remove the restriction that the destination be nonempty.
Test fixed by Patrick Mezard <pmezard@gmail.com>
Francis Barber <fedora@barber-family.id.au> [Sat, 25 Apr 2009 21:27:47 +0800] rev 8172
Fix subversion convert not detecting empty changesets.
Need to check for the empty as list as well as None.
Greg Ward <greg-hg@gerg.ca> [Sun, 19 Apr 2009 13:12:20 -0400] rev 8171
cvsps: fix crash when log message refers to non-existent branch (
issue1615).
Greg Ward <greg-hg@gerg.ca> [Sun, 19 Apr 2009 12:20:39 -0400] rev 8170
cvsps: add test for merge detection (
issue1615).
Currently only testing convert.cvsps.mergefrom; this script should also
probably test convert.cvsps.mergeto.
Patrick Mezard <pmezard@gmail.com> [Sun, 26 Apr 2009 16:30:37 +0200] rev 8169
convert/cvs: add an option to disable remote log caching
Useful for debugging or testing when using --tmpdir.