Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 31 Oct 2006 13:02:49 +0100] rev 3592
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 31 Oct 2006 13:01:28 +0100] rev 3591
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 31 Oct 2006 10:50:16 +0100] rev 3590
Check for at least having a final release of python 2.3.0 in setup.py
Mercurial uses features that are not in 2.3a1.
Brendan Cully <brendan@kublai.com> [Mon, 30 Oct 2006 16:14:38 -0800] rev 3589
test for git empty new files
Brendan Cully <brendan@kublai.com> [Mon, 30 Oct 2006 16:10:58 -0800] rev 3588
git patch: create empty added files
Brendan Cully <brendan@kublai.com> [Mon, 30 Oct 2006 00:03:04 -0800] rev 3587
zsh: tab-complete status results by directory
Filter diff and revert for modified files only, unless -r is given.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 16:33:46 +0100] rev 3586
filelog: rename filelog.size() to filelog.len()
filelog.size() is misleading for users of revlog.size() since
it doesn't return the size of the revision.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 16:14:55 +0100] rev 3585
revlog: more nullrev fixes
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 16:14:02 +0100] rev 3584
revlog: return 0 as offset for nullid
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 15:09:01 +0100] rev 3583
doc: clone doesn't create a working directory in remote repos
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 14:41:14 +0100] rev 3582
revlog.size() fix handling of rev == -1
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 14:18:55 +0100] rev 3581
use workingcontext.files() to detect if the repo is unclean
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sun, 29 Oct 2006 13:08:10 +0100] rev 3580
allow update to switch to a different branch if the repo is clean
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 29 Oct 2006 10:55:38 +0100] rev 3579
Explicitly use REVLOGV0 instead of 0 in bundlerepo.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 29 Oct 2006 10:53:51 +0100] rev 3578
Define and use nullrev (revision of nullid) instead of -1.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 23:37:59 -0300] rev 3577
Correct optimization from
3464f5e77f34; add a test.
If there are two (or more) heads that point to the same .hgtags
node, we can safely skip parsing the file in all but the last head.
(In
3464f5e77f34, we were parsing the file in the first head and
skipping all the others.)
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:59 -0300] rev 3576
log speedup: don't call revlog.node if we don't have to
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:57 -0300] rev 3575
log speedup: use list.extend to avoid an explicit loop
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:56 -0300] rev 3574
log speedup: use parentrevs in log and changeset_printer.show
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:55 -0300] rev 3573
log speedup: set quiet/verbose/debugflag in the fake ui object
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:54 -0300] rev 3572
log speedup: use only ui.write in changeset_printer.show
- ui.status is not very useful, since this code is never
executed when ui.quiet is true.
- explicitly checking for ui.debug allows a regular hg log to
run without looking at the manifest index
- the calls to ui.note were converted for consistency
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 28 Oct 2006 20:21:52 -0300] rev 3571
log speedup: walkchangerevs: filter the files only if we need them
This speeds up hg log and significantly reduces memory usage (max RSS
goes from ~92MB to ~21MB on the kernel repo), since we no longer store
all the revisions in the cache.
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 28 Oct 2006 23:05:57 +0200] rev 3570
Inform the user about the new URL when being redirected via http.
Additionally the changed code ensures that the new URL is used,
even if it doesn't end with the query string.
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 28 Oct 2006 11:00:59 +0200] rev 3569
Stripping of query string (since
88b4755fa48f) stripped too much (
issue327)
rstrip(qs) not only strips qs from the right, but it continues stripping
every char at the end of the URL that occurs on qs.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 23:09:46 +0200] rev 3568
Merge with upstream
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 19:24:57 +0200] rev 3567
Turn bundle file into a string for http push, for urllib2 over proxies.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 18:30:53 +0200] rev 3566
Force the content-length header to be a string in httprepo.unbundle.
(Needed for Python2.3 compatibility)
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 18:20:28 +0200] rev 3565
Use the new UnexpectedOutput exception in httprepo, too.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 18:17:12 +0200] rev 3564
New UnexpectedOutput exception to catch server errors in localrepo.stream_in
If the unexpected is a string, the empty string will be mentioned, and long
strings are cut to at most 400 chars.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 27 Oct 2006 15:56:34 +0200] rev 3563
Some clarifications for pull/push protocols:
- List file:// and static-http://
- Mention that you can pull from bundle files
- List http and https as valid push targets, but emphasize that this
feature has to be enabled.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 27 Oct 2006 15:02:27 +0200] rev 3562
httprepo: record the url after a request, makes pull + redirect works
POST+redirect doesn't work in python, as a workaround we record the url
from the previous GETs so that when we do a POST it uses the redirected url
fix
issue327
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 27 Oct 2006 10:24:19 +0200] rev 3561
add AIX to the list of compilers that don't have inline keyword
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 22:28:33 -0700] rev 3560
zsh: support remote URLs
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 17:33:24 -0700] rev 3559
zsh: suppress mq completion error messages outside of repository
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 17:28:12 -0700] rev 3558
zsh: suppress error message for status completion outside of repository
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3557
Turn of "Not trusting file" logging when running hgweb and hgwebdir
(hg serve still shows the warning)
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3556
use untrusted settings in hgwebdir
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3555
use untrusted settings in hgweb
The only exceptions are web.static and web.templates, since they can
be used to get any file that is readable by the user running the CGI
script.
Other options can be (ab)used to increase the use of the cpu
(allow_bz2) or of the bandwidth (server.uncompressed), but they're
trusted anyway.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3554
add untrusted argument to patch.diffopts
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3553
add --untrusted to showconfig
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:45 +0200] rev 3552
save settings from untrusted config files in a separate configparser
This untrusted configparser is a superset of the trusted configparser,
so that interpolation still works.
Also add an "untrusted" argument to ui.config* to allow querying
ui.ucdata.
With --debug, we print a warning when we read an untrusted config
file, and when we try to access a trusted setting that has one value
in the trusted configparser and another in the untrusted configparser.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 26 Oct 2006 19:25:44 +0200] rev 3551
Only read .hg/hgrc files from trusted users/groups
The list of trusted users and groups is specified in the [trusted]
section of a hgrc; the current user is always trusted; "*" can be
used to trust all users/groups.
Global hgrc files are always read.
On Windows (and other systems that don't have the pwd and grp modules),
all .hg/hgrc files are read.
This is essentially the same patch that was previously applied as
revision
494521a3f142.
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 10:06:12 -0700] rev 3550
zsh: add revrange completion
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 09:46:08 -0700] rev 3549
zsh: add qbase and qtip to qapplied completions
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 09:44:03 -0700] rev 3548
zsh: use standard tags where possible
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 09:40:20 -0700] rev 3547
mq: support qimport -
Christian Ebert <blacktrash@gmx.net> [Wed, 25 Oct 2006 20:59:50 +0200] rev 3546
hgcommand.vim: doc install delete into "black hole", g: prefix global vars.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 26 Oct 2006 09:29:42 +0200] rev 3545
merge with crew
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 26 Oct 2006 09:22:10 +0200] rev 3544
Corrected hg synopsis.
Brendan Cully <brendan@kublai.com> [Thu, 26 Oct 2006 00:27:19 -0700] rev 3543
zsh: complete qguard with +/- guard prefixes
Christian Ebert <blacktrash@gmx.net> [Wed, 25 Oct 2006 21:01:00 +0200] rev 3542
hgcommand.vim: remove deprecated -b option from hg parents.
Brendan Cully <brendan@kublai.com> [Wed, 25 Oct 2006 19:31:42 -0700] rev 3541
zsh: complete qapplied, qdiff, qfold, qguard, qimport, qnext, qprev
as well as qrename, qselect, qseries, qunapplied and qtop.
Brendan Cully <brendan@kublai.com> [Wed, 25 Oct 2006 17:09:22 -0700] rev 3540
Merge with mpm
Brendan Cully <brendan@kublai.com> [Wed, 25 Oct 2006 16:35:35 -0700] rev 3539
zsh: make option lists more compact
Brendan Cully <brendan@kublai.com> [Wed, 25 Oct 2006 15:10:30 -0700] rev 3538
Merge with mpm
Brendan Cully <brendan@kublai.com> [Wed, 25 Oct 2006 15:08:40 -0700] rev 3537
zsh: rewrite
This version of zsh completion handles global options more correctly,
completes options for command abbreviations, and does much more lazy
evaluation.
Matt Mackall <mpm@selenic.com> [Fri, 27 Oct 2006 14:10:01 -0500] rev 3536
small refactoring of path normalization in dirstate.statwalk
Matt Mackall <mpm@selenic.com> [Fri, 27 Oct 2006 14:06:32 -0500] rev 3535
Make util.unique return a list
Matt Mackall <mpm@selenic.com> [Fri, 27 Oct 2006 12:09:33 -0500] rev 3534
Simplify ignore logic in dirstate.walk
- kill blockignore hack
- pull pconvert out of imatch
- skip imatch when not ignoring
Matt Mackall <mpm@selenic.com> [Fri, 27 Oct 2006 11:30:20 -0500] rev 3533
shortname: truncate at '.' too