Matt Mackall <mpm@selenic.com> [Thu, 28 Jan 2010 22:44:36 -0600] rev 10289
test-minirst: hide trailing whitespace from check-code
Matt Mackall <mpm@selenic.com> [Thu, 28 Jan 2010 22:44:25 -0600] rev 10288
zeroconf: flag third-party Zeroconf.py for ignore in check-code
Matt Mackall <mpm@selenic.com> [Thu, 28 Jan 2010 22:44:18 -0600] rev 10287
check-code: add some ignore hints
Matt Mackall <mpm@selenic.com> [Mon, 25 Jan 2010 01:23:34 -0600] rev 10286
check-code: check thyself
Martin Geisler <mg@lazybytes.net> [Fri, 29 Jan 2010 01:04:38 +0100] rev 10285
Merge with stable.
Christian Ebert <blacktrash@gmx.net> [Thu, 28 Jan 2010 11:27:09 +0000] rev 10284
patchbomb: document [patchbomb] config section for addresses
Christian Ebert <blacktrash@gmx.net> [Thu, 28 Jan 2010 10:38:29 +0000] rev 10283
hgrc.5: whether bcc is prompted for is up to the extension
There is no code in mail.py that forbids an extension to prompt for bcc.
Matt Mackall <mpm@selenic.com> [Mon, 25 Jan 2010 00:05:27 -0600] rev 10282
many, many trivial check-code fixups
Matt Mackall <mpm@selenic.com> [Mon, 25 Jan 2010 00:05:22 -0600] rev 10281
Introduce check-code.py
check-code is a simple regex-based framework for checking our code and
tests for common style and portability errors. Currently, it knows a
fair amount about our Python and C style, and a little about common
shell script portability problems.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 24 Jan 2010 18:44:12 +0100] rev 10280
merge with stable
Mads Kiilerich <mads@kiilerich.com> [Sat, 23 Jan 2010 02:03:42 +0100] rev 10279
test-encode: Use tr chacter classes instead of character ranges
Solaris ...
Martin Geisler <mg@lazybytes.net> [Sat, 23 Jan 2010 16:55:46 +0100] rev 10278
Merge with stable
Martin Geisler <mg@lazybytes.net> [Sat, 23 Jan 2010 16:54:53 +0100] rev 10277
templates: do not add "ago" twice
After
1d75c683ada1, "ago" is added by the ago template filter.
Martin Geisler <mg@lazybytes.net> [Fri, 22 Jan 2010 17:15:58 +0100] rev 10276
Merge with stable
Mads Kiilerich <mads@kiilerich.com> [Fri, 22 Jan 2010 17:13:55 +0100] rev 10275
tests: Don't use $PWD
$PWD doesn't work with solaris sh - use `pwd` instead
David Soria Parra <dsp@php.net> [Wed, 20 Jan 2010 23:23:18 +0100] rev 10274
mq: Do not translate import message that are appended to commits.
We should not translate the "imported patch" message. The translated message
confuses the detection whether the user has not updated the commit message yet.
We try to avoid to translate generated commit messages.
Patrick Mezard <pmezard@gmail.com> [Thu, 21 Jan 2010 13:26:26 +0100] rev 10273
subrepo: handle svn externals and meta changes (
issue1982)
- Detect changes to meta on regular and external entries
- Do not try to commit external entries
Patrick Mezard <pmezard@gmail.com> [Thu, 21 Jan 2010 15:13:40 +0100] rev 10272
subrepo: svn xml output is much easier to parse
That's especially true with status flags: there are different fields and values
for regular changes, meta changes, externals changes and externals meta
changes.
Patrick Mezard <pmezard@gmail.com> [Thu, 21 Jan 2010 15:13:03 +0100] rev 10271
subrepo: make svn use C locale for portability
My reasons to do
c2e2a5e6c36b were wrong. We want to have non-localized svn
output while preserving current locale for input arguments and svn internals.
This is achieved by setting LC_MESSAGE=C.
Martin Geisler <mg@lazybytes.net> [Wed, 20 Jan 2010 16:58:48 +0100] rev 10270
Merge with stable
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Wed, 20 Jan 2010 13:50:06 +0900] rev 10269
summary: L10N messages hide clean-ness of workdir from 'hg summary'
'hg summary' recognizes workdir as clean by searching for 'clean' is
in own output text. But 'clean' is one of I18N target texts, so 'hg
summary --quiet' behaves incorrectly in non-English locale.
Martin Geisler <mg@lazybytes.net> [Wed, 20 Jan 2010 16:48:20 +0100] rev 10268
mercurial.el: add forgotten version number
The number was accidentally removed in the change from GPLv2 to GPLv2+
in
25e572394f5c.
Mads Kiilerich <mads@kiilerich.com> [Sun, 17 Jan 2010 01:53:04 +0100] rev 10267
test-subrepo-svn: remove bashism
Patrick Mezard <pmezard@gmail.com> [Wed, 20 Jan 2010 09:49:15 +0100] rev 10266
Merge with crew-stable
Mads Kiilerich <mads@kiilerich.com> [Sun, 17 Jan 2010 01:52:36 +0100] rev 10265
test-patch-offset: Don't use unified diff
Solaris diff -u likes to be "helpful" and tell that "No differences encountered"
Matt Mackall <mpm@selenic.com> [Tue, 19 Jan 2010 22:45:09 -0600] rev 10264
Merge with stable
Matt Mackall <mpm@selenic.com> [Tue, 19 Jan 2010 22:20:08 -0600] rev 10263
Update license to GPLv2+
Matt Mackall <mpm@selenic.com> [Tue, 19 Jan 2010 22:20:05 -0600] rev 10262
copies: speed up copy detection
On some large repos, copy detection could spend > 10min using
fctx.ancestor() to determine if file revisions were actually related.
Because ancestor must traverse history to the root to determine the
GCA, it was doing a lot more work than necessary. With this
replacement, same status -r a:b takes ~3 seconds.
Nicolas Dumazet <nicdumz.commits@gmail.com> [Mon, 28 Dec 2009 12:14:26 +0900] rev 10261
hgweb: request: strip() form values
Entering "<correct_cset_hash> " in the search form was not returning anything.
This happens relatively often, due to HTML formatting: when copy/pasting a cset
hash from the web, selection might contain surrounding spaces.
Patrick Mezard <pmezard@gmail.com> [Mon, 18 Jan 2010 22:59:32 +0100] rev 10260
templatekw: fix extras, manifest and showlist args (
issue1989)
Removing the explicit parameters from keywords signature is easier than copying
and reproducing the original argument list.