Sat, 14 Jul 2007 11:27:58 -0500 Re: mercurial.el and hg-version-other-window
jon.christopher@Rigaku.com [Sat, 14 Jul 2007 11:27:58 -0500] rev 4875
Re: mercurial.el and hg-version-other-window hg-version-other window is unimplemented in mercurial.el. The version below works for me, YMMV.
Fri, 06 Jul 2007 12:02:43 +0200 Use isinstance instead of type == type
Christian Ebert <blacktrash@gmx.net> [Fri, 06 Jul 2007 12:02:43 +0200] rev 4874
Use isinstance instead of type == type
Fri, 13 Jul 2007 08:28:57 -0700 convert: record the source revision in the changelog
Brendan Cully <brendan@kublai.com> [Fri, 13 Jul 2007 08:28:57 -0700] rev 4873
convert: record the source revision in the changelog
Thu, 12 Jul 2007 22:55:44 -0700 Use wsgi.url_scheme instead of ad-hoc CGI checks.
Wesley J. Landaker <wjl@icecavern.net> [Thu, 12 Jul 2007 22:55:44 -0700] rev 4872
Use wsgi.url_scheme instead of ad-hoc CGI checks. Instead of each place in hgweb_mod that needs to check for SSL or get the protocol scheme (http vs. https) doing it ad-hoc, make them just look at the wsgi.url_scheme which because of previous patches is now always set correctly.
Thu, 12 Jul 2007 22:44:16 -0700 cosmetics
Brendan Cully <brendan@kublai.com> [Thu, 12 Jul 2007 22:44:16 -0700] rev 4871
cosmetics
Thu, 12 Jul 2007 13:58:36 -0600 Make hg serve set the wsgi.url_scheme property correctly.
Wesley J. Landaker <wjl@icecavern.net> [Thu, 12 Jul 2007 13:58:36 -0600] rev 4870
Make hg serve set the wsgi.url_scheme property correctly. This fixes the bug where hg serve with SSL will always detect the wrong urlbase for templates. This is also part of unifying the CGI interface and hg serve interface to both use standard wsgi.
Thu, 12 Jul 2007 13:55:20 -0600 Handle CGI SSL detection via HTTPS environment better.
Wesley J. Landaker <wjl@icecavern.net> [Thu, 12 Jul 2007 13:55:20 -0600] rev 4869
Handle CGI SSL detection via HTTPS environment better. Some servers send on/off, 0/1, yes/no, and may be upper or lower case. This fix will handle all of those permutations. It was inspired by the detection done in in some other wsgi python web applications I looked at.
Wed, 11 Jul 2007 20:15:03 -0300 merge with crew-stable
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 20:15:03 -0300] rev 4868
merge with crew-stable
Wed, 11 Jul 2007 19:56:16 -0300 archive: make the %r escape work.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 19:56:16 -0300] rev 4867
archive: make the %r escape work.
Wed, 11 Jul 2007 19:56:16 -0300 serve: respect settings from .hg/hgrc
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 19:56:16 -0300] rev 4866
serve: respect settings from .hg/hgrc create_server was looking only at the root ui object, ignoring any settings from .hg/hgrc. To keep respecting command-line arguments, commands.serve must also call repo.ui.setconfig.
Sat, 12 May 2007 00:41:30 +0200 Fix inconsistency for the stream_out capability in hgweb
Edouard Gomez <ed.gomez@free.fr> [Sat, 12 May 2007 00:41:30 +0200] rev 4865
Fix inconsistency for the stream_out capability in hgweb During some experiments of mine, the uncompressed cloning could not be enabled for hgweb.cgi nor hgwebdir.cgi though the server claimed to be stream_out capable. The only solution was to enable it using the user's .hgrc file. This solution is not acceptable when publishing the repos through an HTTP server because the CGI runs as a www dedicated user whose's home hgrc file may not be accessible to users publishing their repos through their userdir. For such cases we could end up with this typical debug output: hg --debug clone --uncompressed http://server/hg/project destination directory: project sending capabilities command capabilities: lookup changegroupsubset stream=1 unbundle=HG10GZ,HG10BZ,HG10UN sending stream_out command abort: operation forbidden by server The error lies in the fact the hgweb object defines new accessors to the repo configuration that trust things by default (untrusted=True) but the streamclone:stream_out function uses the usual accessors to the repo.ui object, which do not trust by default (untrusted=False) Fix this inconsistency, adding a new parameter to the stream_out function. hgweb then forces a "trust by default" behavior.
Wed, 11 Jul 2007 19:56:16 -0300 improve warning for hg add foo; hg mv foo bar
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 19:56:16 -0300] rev 4864
improve warning for hg add foo; hg mv foo bar
Wed, 11 Jul 2007 18:15:21 -0300 util._hgexecutable: default to 'hg'
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 18:15:21 -0300] rev 4863
util._hgexecutable: default to 'hg' This should make hooks work even if util.set_hgexecutable is not called (e.g. hgweb.cgi). Fixes issue625.
Wed, 11 Jul 2007 17:40:41 -0300 archive: add symlink support
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 17:40:41 -0300] rev 4862
archive: add symlink support
Wed, 11 Jul 2007 17:40:41 -0300 archive: use util.opener when archiving files.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 17:40:41 -0300] rev 4861
archive: use util.opener when archiving files. This simplifies the code a bit and makes it easier to support symlinks.
Wed, 11 Jul 2007 17:40:41 -0300 localrepo.wwrite: use opener.symlink
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 17:40:41 -0300] rev 4860
localrepo.wwrite: use opener.symlink This makes us fall back to regular files if symlinks are not supported.
Wed, 11 Jul 2007 17:40:41 -0300 Add symlink method to util.opener.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 17:40:41 -0300] rev 4859
Add symlink method to util.opener. Differences from os.symlink: - the symlink name is relative to the opener base directory - if a file with that name already exists, it's removed - if necessary, parent directories are created - if the system (OS or filesystem) doesn't support symlinks, a regular file is created. Its contents are the symlink target.
Wed, 11 Jul 2007 17:40:41 -0300 turn util.opener into a class
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 11 Jul 2007 17:40:41 -0300] rev 4858
turn util.opener into a class
Tue, 10 Jul 2007 10:54:54 -0600 Make {urlbase} work in templates when https is used.
Wesley J. Landaker <wjl@icecavern.net> [Tue, 10 Jul 2007 10:54:54 -0600] rev 4857
Make {urlbase} work in templates when https is used.
Wed, 11 Jul 2007 00:53:44 -0700 replace .hgtags instead of appending to it when doing a raw commit
Brendan Cully <brendan@kublai.com> [Wed, 11 Jul 2007 00:53:44 -0700] rev 4856
replace .hgtags instead of appending to it when doing a raw commit
Wed, 11 Jul 2007 00:34:35 -0700 handle nonexistent .hgtags in raw _tag
Brendan Cully <brendan@kublai.com> [Wed, 11 Jul 2007 00:34:35 -0700] rev 4855
handle nonexistent .hgtags in raw _tag
Wed, 11 Jul 2007 00:04:15 -0700 Export extra in _tag so convert can set the branch of a tag
Brendan Cully <brendan@kublai.com> [Wed, 11 Jul 2007 00:04:15 -0700] rev 4854
Export extra in _tag so convert can set the branch of a tag
Tue, 10 Jul 2007 10:06:24 -0700 archive: abort on empty repository. Fixes #624.
Brendan Cully <brendan@kublai.com> [Tue, 10 Jul 2007 10:06:24 -0700] rev 4853
archive: abort on empty repository. Fixes #624.
Tue, 10 Jul 2007 09:52:32 -0700 mq: improve qclone error handling when patch directory is not a repository.
Brendan Cully <brendan@kublai.com> [Tue, 10 Jul 2007 09:52:32 -0700] rev 4852
mq: improve qclone error handling when patch directory is not a repository.
Mon, 09 Jul 2007 22:35:10 -0700 Fix test-debugcomplete for new --certificate option
Lee Cantey <lcantey@gmail.com> [Mon, 09 Jul 2007 22:35:10 -0700] rev 4851
Fix test-debugcomplete for new --certificate option
Mon, 09 Jul 2007 22:12:28 -0700 Add SSL support to hg serve, activated via --certificate option
Brendan Cully <brendan@kublai.com> [Mon, 09 Jul 2007 22:12:28 -0700] rev 4850
Add SSL support to hg serve, activated via --certificate option
Mon, 09 Jul 2007 10:59:49 -0700 Correct inadvertent line ending change.
Lee Cantey <lcantey@gmail.com> [Mon, 09 Jul 2007 10:59:49 -0700] rev 4849
Correct inadvertent line ending change.
Mon, 09 Jul 2007 10:46:41 -0700 Fix for win32text corrupting files that have CRLF line endings. (issue302)
Lee Cantey <lcantey@gmail.com> [Mon, 09 Jul 2007 10:46:41 -0700] rev 4848
Fix for win32text corrupting files that have CRLF line endings. (issue302) Also generate a warning when encountering this condition. From Shun-ichi Goto in attachment win32text-patch3.txt for issue 302.
Sun, 08 Jul 2007 19:59:02 +0200 Add --line-number option to hg annotate (issue506)
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 19:59:02 +0200] rev 4847
Add --line-number option to hg annotate (issue506) Line numbers are separated from the last annotation element with a colon, like with many other commands, e.g. (hg) grep or compiler errors. Idea and tests by FUJIWARA Katsunori.
Sun, 08 Jul 2007 19:46:04 +0200 Allow filectx.annotate to return the line number of first appearance.
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> [Sun, 08 Jul 2007 19:46:04 +0200] rev 4846
Allow filectx.annotate to return the line number of first appearance.
Sun, 08 Jul 2007 13:44:41 +0200 Check for conflict markers in hgmerge (issue471)
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 13:44:41 +0200] rev 4845
Check for conflict markers in hgmerge (issue471)
Sun, 08 Jul 2007 12:59:58 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 12:59:58 +0200] rev 4844
merge with crew-stable
Sun, 08 Jul 2007 12:58:19 +0200 Fixed double slash for doc install path introduced by using $DESTDIR (issue620)
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 12:58:19 +0200] rev 4843
Fixed double slash for doc install path introduced by using $DESTDIR (issue620) $MANDIR already is an absolute path so the extra / isn't needed.
Sun, 08 Jul 2007 12:52:08 +0200 hg log: Move filtering implicit parents to own method and use it in templater.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 12:52:08 +0200] rev 4842
hg log: Move filtering implicit parents to own method and use it in templater. Extended test repo in test-command-template to contain changeset to test this.
Sun, 08 Jul 2007 10:43:57 +0200 Strip whitespace from changeset description in changeset_templater.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 10:43:57 +0200] rev 4841
Strip whitespace from changeset description in changeset_templater. changeset_printer already does this, too.
Sun, 08 Jul 2007 09:54:42 +0200 Removed deprecated hg:// and old-http:// protocols (issue406)
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 08 Jul 2007 09:54:42 +0200] rev 4840
Removed deprecated hg:// and old-http:// protocols (issue406)
Sat, 07 Jul 2007 21:55:56 -0700 hgwebdir: check for repo foo before browsing subdirectories of foo/
Brendan Cully <brendan@kublai.com> [Sat, 07 Jul 2007 21:55:56 -0700] rev 4839
hgwebdir: check for repo foo before browsing subdirectories of foo/
Sat, 07 Jul 2007 15:09:28 -0700 Merge with crew
Brendan Cully <brendan@kublai.com> [Sat, 07 Jul 2007 15:09:28 -0700] rev 4838
Merge with crew
Sat, 07 Jul 2007 15:09:08 -0700 hgweb: browse subdirectories before checking whether parent directory is also a repository
Brendan Cully <brendan@kublai.com> [Sat, 07 Jul 2007 15:09:08 -0700] rev 4837
hgweb: browse subdirectories before checking whether parent directory is also a repository
Sat, 07 Jul 2007 20:52:31 +0200 Use a prefix for debuginstall tempfiles.
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 07 Jul 2007 20:52:31 +0200] rev 4836
Use a prefix for debuginstall tempfiles. This way you know where the files came from if they don't get removed.
Fri, 06 Jul 2007 10:29:09 -0700 python 2.3 does not have sorted
Brendan Cully <brendan@kublai.com> [Fri, 06 Jul 2007 10:29:09 -0700] rev 4835
python 2.3 does not have sorted
Fri, 06 Jul 2007 10:22:22 -0700 Sort changelog extra dict to avoid possible nondeterminism
Brendan Cully <brendan@kublai.com> [Fri, 06 Jul 2007 10:22:22 -0700] rev 4834
Sort changelog extra dict to avoid possible nondeterminism
Fri, 06 Jul 2007 10:11:48 -0700 Last change broke new-style URLs
Brendan Cully <brendan@kublai.com> [Fri, 06 Jul 2007 10:11:48 -0700] rev 4833
Last change broke new-style URLs
Fri, 06 Jul 2007 09:15:17 -0700 hgwebdir: do not walk up the given path looking for a repository. It is there or it isn't.
Brendan Cully <brendan@kublai.com> [Fri, 06 Jul 2007 09:15:17 -0700] rev 4832
hgwebdir: do not walk up the given path looking for a repository. It is there or it isn't.
Fri, 06 Jul 2007 08:55:36 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 06 Jul 2007 08:55:36 +0200] rev 4831
merge with crew-stable
Fri, 06 Jul 2007 08:48:28 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 06 Jul 2007 08:48:28 +0200] rev 4830
merge with crew-stable
Thu, 05 Jul 2007 15:40:29 -0700 Add html docs and use for help shortcut
Lee Cantey <lcantey@gmail.com> [Thu, 05 Jul 2007 15:40:29 -0700] rev 4829
Add html docs and use for help shortcut
Thu, 05 Jul 2007 19:56:16 -0700 hgwebdir: show only trailing part of path when browsing subdirectories
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 19:56:16 -0700] rev 4828
hgwebdir: show only trailing part of path when browsing subdirectories
Thu, 05 Jul 2007 19:47:04 -0700 gitweb: add notfound template
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 19:47:04 -0700] rev 4827
gitweb: add notfound template
Thu, 05 Jul 2007 19:44:06 -0700 hgweb: let hgwebdir browse subdirectories
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 19:44:06 -0700] rev 4826
hgweb: let hgwebdir browse subdirectories
Thu, 05 Jul 2007 16:14:01 -0700 convert: svn code movement (no actual changes)
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 16:14:01 -0700] rev 4825
convert: svn code movement (no actual changes)
Thu, 05 Jul 2007 15:01:31 -0700 convert: svn: avoid parsing already-seen logentries due to branch following
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 15:01:31 -0700] rev 4824
convert: svn: avoid parsing already-seen logentries due to branch following
Thu, 05 Jul 2007 14:32:18 -0700 Merge with main
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 14:32:18 -0700] rev 4823
Merge with main
Thu, 05 Jul 2007 16:17:01 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 16:17:01 -0500] rev 4822
Merge with stable
Thu, 05 Jul 2007 16:15:57 -0500 Merge with crew-stable
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 16:15:57 -0500] rev 4821
Merge with crew-stable
Thu, 05 Jul 2007 16:01:07 -0500 merge: fix adding untracked files on directory rename (issue612)
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 16:01:07 -0500] rev 4820
merge: fix adding untracked files on directory rename (issue612) Fix from Brendan Added test case
Thu, 05 Jul 2007 15:37:23 -0500 extensions: untangle some recursive dependencies
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 15:37:23 -0500] rev 4819
extensions: untangle some recursive dependencies
Tue, 03 Jul 2007 00:13:52 +0900 interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com> [Tue, 03 Jul 2007 00:13:52 +0900] rev 4818
interhg extension allows you to change changelog text like InterWiki.
Thu, 28 Jun 2007 02:11:54 +0200 setup.py not executable: change instructions at beginning of file
Christian Ebert <blacktrash@gmx.net> [Thu, 28 Jun 2007 02:11:54 +0200] rev 4817
setup.py not executable: change instructions at beginning of file
Thu, 05 Jul 2007 15:36:56 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 15:36:56 -0500] rev 4816
Merge with stable
Thu, 05 Jul 2007 13:34:18 -0500 merge: make test for fast-forward merge stricter (issue619)
Matt Mackall <mpm@selenic.com> [Thu, 05 Jul 2007 13:34:18 -0500] rev 4815
merge: make test for fast-forward merge stricter (issue619) don't allow merging with an ancestor fix != on contexts add a test
Thu, 05 Jul 2007 14:31:13 -0700 convert: svn: some improvements in memory usage
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 14:31:13 -0700] rev 4814
convert: svn: some improvements in memory usage
Thu, 05 Jul 2007 12:45:41 -0700 convert: svn: remove svn_paths wrappers
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:45:41 -0700] rev 4813
convert: svn: remove svn_paths wrappers
Thu, 05 Jul 2007 12:41:58 -0700 convert: svn: use revmap to parse only new revisions in incremental conversions
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:41:58 -0700] rev 4812
convert: svn: use revmap to parse only new revisions in incremental conversions
Thu, 05 Jul 2007 12:24:26 -0700 convert: export revmap to source.
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:24:26 -0700] rev 4811
convert: export revmap to source. Sources may be able to use it to optimise their own log fetching
Thu, 05 Jul 2007 12:18:01 -0700 convert: svn: defer get_log parsing until after get_log completes.
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:18:01 -0700] rev 4810
convert: svn: defer get_log parsing until after get_log completes. According to the documentation, it is not safe to perform any other operation on the ra object until get_log completes.
Thu, 05 Jul 2007 12:08:48 -0700 convert: move some code into common init function
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:08:48 -0700] rev 4809
convert: move some code into common init function
Thu, 05 Jul 2007 12:00:43 -0700 Merge with crew
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:00:43 -0700] rev 4808
Merge with crew
Thu, 05 Jul 2007 12:00:26 -0700 alias: remove dead code
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:00:26 -0700] rev 4807
alias: remove dead code
Thu, 05 Jul 2007 12:00:04 -0700 convert: call superclass init from engine init functions
Brendan Cully <brendan@kublai.com> [Thu, 05 Jul 2007 12:00:04 -0700] rev 4806
convert: call superclass init from engine init functions
Thu, 05 Jul 2007 20:50:24 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Thu, 05 Jul 2007 20:50:24 +0200] rev 4805
Merge with crew-stable
Thu, 05 Jul 2007 20:39:03 +0200 test-archive: stop checking md5 absolute values
Patrick Mezard <pmezard@gmail.com> [Thu, 05 Jul 2007 20:39:03 +0200] rev 4804
test-archive: stop checking md5 absolute values Different tar/zlib versions can generate different binaries.
Thu, 05 Jul 2007 19:13:08 +0200 Fix issue589 wording problem
Patrick Mezard <pmezard@gmail.com> [Thu, 05 Jul 2007 19:13:08 +0200] rev 4803
Fix issue589 wording problem
Tue, 26 Jun 2007 10:48:58 -0400 Fix serve on Windows without win32* modules.
Nathan Jones <nathanj@insightbb.com> [Tue, 26 Jun 2007 10:48:58 -0400] rev 4802
Fix serve on Windows without win32* modules.
Thu, 05 Jul 2007 19:11:38 +0200 test-demandimport: match upper-case hexadecimal
Patrick Mezard <pmezard@gmail.com> [Thu, 05 Jul 2007 19:11:38 +0200] rev 4801
test-demandimport: match upper-case hexadecimal
Wed, 04 Jul 2007 13:38:49 -0700 Add alias extension
Brendan Cully <brendan@kublai.com> [Wed, 04 Jul 2007 13:38:49 -0700] rev 4800
Add alias extension
Wed, 04 Jul 2007 09:24:19 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 04 Jul 2007 09:24:19 +0200] rev 4799
merge with crew-stable
Wed, 04 Jul 2007 09:20:56 +0200 Fixed calling the merge script and reporting errors in debuginstall (issue617)
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 04 Jul 2007 09:20:56 +0200] rev 4798
Fixed calling the merge script and reporting errors in debuginstall (issue617)
Tue, 03 Jul 2007 20:22:39 -0700 convert svn: minor improvement to tag detection.
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 20:22:39 -0700] rev 4797
convert svn: minor improvement to tag detection. The better way is probably to list the latest tags directory and look up the last log message for each entry. This is surprisingly annoying to do.
Tue, 03 Jul 2007 19:49:36 -0700 convert: svn merges produce hard-to-trace file entries. Ignore them for now.
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 19:49:36 -0700] rev 4796
convert: svn merges produce hard-to-trace file entries. Ignore them for now.
Tue, 03 Jul 2007 19:26:41 -0700 convert: svn: autodetect /branches, /tags, /trunk.
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 19:26:41 -0700] rev 4795
convert: svn: autodetect /branches, /tags, /trunk. Various other branch handling improvement attempts too.
Tue, 03 Jul 2007 17:07:58 -0700 convert: svn: pull out broken batching code, add alpha tags support
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 17:07:58 -0700] rev 4794
convert: svn: pull out broken batching code, add alpha tags support
Tue, 03 Jul 2007 15:34:30 -0700 convert: svn: get parent for branch creation events
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 15:34:30 -0700] rev 4793
convert: svn: get parent for branch creation events
Tue, 03 Jul 2007 15:12:07 -0700 convert: add optional module argument to svn._fetch_revisions
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 15:12:07 -0700] rev 4792
convert: add optional module argument to svn._fetch_revisions
Tue, 03 Jul 2007 14:16:54 -0700 convert: svn: parse log entries as they arrive instead of deferring it
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 14:16:54 -0700] rev 4791
convert: svn: parse log entries as they arrive instead of deferring it
Tue, 03 Jul 2007 13:50:26 -0700 convert: svn: move some debug output to verbose
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 13:50:26 -0700] rev 4790
convert: svn: move some debug output to verbose
Tue, 03 Jul 2007 12:56:30 -0700 convert: another typo in svn.latest
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 12:56:30 -0700] rev 4789
convert: another typo in svn.latest
Tue, 03 Jul 2007 12:52:13 -0700 convert: typo in svn.latest
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 12:52:13 -0700] rev 4788
convert: typo in svn.latest
Tue, 03 Jul 2007 12:44:04 -0700 convert: svn: add function to get the latest revision touching a path
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 12:44:04 -0700] rev 4787
convert: svn: add function to get the latest revision touching a path Make it work for HTTP URLs
Tue, 03 Jul 2007 11:36:06 -0700 convert: svn: add an early return to move most changeset parsing out an indent level
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 11:36:06 -0700] rev 4786
convert: svn: add an early return to move most changeset parsing out an indent level
Tue, 03 Jul 2007 10:55:46 -0700 convert: svn: use a separate mempool for each ls in the 1.4 fallback path
Brendan Cully <brendan@kublai.com> [Tue, 03 Jul 2007 10:55:46 -0700] rev 4785
convert: svn: use a separate mempool for each ls in the 1.4 fallback path
Tue, 03 Jul 2007 04:18:24 -0700 Remove specific version requirement and point to latest versions of Mac Python downloads.
Lee Cantey <lcantey@gmail.com> [Tue, 03 Jul 2007 04:18:24 -0700] rev 4784
Remove specific version requirement and point to latest versions of Mac Python downloads.
Tue, 03 Jul 2007 12:50:05 +0200 children extension: Don't abort when looking at the null revision.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 03 Jul 2007 12:50:05 +0200] rev 4783
children extension: Don't abort when looking at the null revision. Since 62c56d8f368b revlog.children only returns real children, so this is no longer a problem.
Tue, 03 Jul 2007 12:46:34 +0200 merge with crew-stable
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 03 Jul 2007 12:46:34 +0200] rev 4782
merge with crew-stable
Tue, 03 Jul 2007 12:45:33 +0200 Fix revlog.children so the real children of the null revision can be calculated.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 03 Jul 2007 12:45:33 +0200] rev 4781
Fix revlog.children so the real children of the null revision can be calculated.
Tue, 03 Jul 2007 12:14:25 +0200 Add extension to provide the 'hg children' command (with tests)
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 03 Jul 2007 12:14:25 +0200] rev 4780
Add extension to provide the 'hg children' command (with tests)
Tue, 03 Jul 2007 03:14:18 -0300 merge with crew-stable
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 03 Jul 2007 03:14:18 -0300] rev 4779
merge with crew-stable
Tue, 03 Jul 2007 03:06:40 -0300 hgweb: use lrwxrwxrwx as the permissions of a symlink
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 03 Jul 2007 03:06:40 -0300] rev 4778
hgweb: use lrwxrwxrwx as the permissions of a symlink
Tue, 03 Jul 2007 03:06:40 -0300 Make hg add foo; hg mv foo bar work.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 03 Jul 2007 03:06:40 -0300] rev 4777
Make hg add foo; hg mv foo bar work. - foo will be removed (the user has a copy of its contents in bar) - bar will not be marked as a copy (there was no committed version of foo). We print a warning telling that to the user. Fixes issue269.
Tue, 03 Jul 2007 03:06:40 -0300 test-copy2: use status -C instead of debugstate | grep copy
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 03 Jul 2007 03:06:40 -0300] rev 4776
test-copy2: use status -C instead of debugstate | grep copy
Tue, 03 Jul 2007 03:06:40 -0300 test-rename: use hg status -C; don't use hg debugstate | grep copy
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Tue, 03 Jul 2007 03:06:40 -0300] rev 4775
test-rename: use hg status -C; don't use hg debugstate | grep copy
Mon, 02 Jul 2007 22:34:38 -0700 Merge with tah
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 22:34:38 -0700] rev 4774
Merge with tah
Mon, 02 Jul 2007 22:33:48 -0700 convert: make convertsource option handling transparent
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 22:33:48 -0700] rev 4773
convert: make convertsource option handling transparent
Mon, 02 Jul 2007 22:45:58 +0200 Added import test for [PATCH] subject and message body with subject
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 02 Jul 2007 22:45:58 +0200] rev 4772
Added import test for [PATCH] subject and message body with subject
Mon, 02 Jul 2007 13:26:12 -0700 patch.extract: fix test-import breakage introduced in the previous changeset
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 13:26:12 -0700] rev 4771
patch.extract: fix test-import breakage introduced in the previous changeset
Mon, 02 Jul 2007 10:59:16 -0700 patch.extract: do not prepend subject if the description already starts with it
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 10:59:16 -0700] rev 4770
patch.extract: do not prepend subject if the description already starts with it
Mon, 02 Jul 2007 08:31:02 -0700 convert: svn: skip revisions without file entries
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 08:31:02 -0700] rev 4769
convert: svn: skip revisions without file entries
Mon, 02 Jul 2007 07:54:51 -0700 convert: svn: disable batched fetch - get the whole log immediately
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 07:54:51 -0700] rev 4768
convert: svn: disable batched fetch - get the whole log immediately
Mon, 02 Jul 2007 07:28:54 -0700 convert: svn: add revnum() to convert rev to revnum
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 07:28:54 -0700] rev 4767
convert: svn: add revnum() to convert rev to revnum
Mon, 02 Jul 2007 07:22:11 -0700 convert: svn: abort if module stat fails
Brendan Cully <brendan@kublai.com> [Mon, 02 Jul 2007 07:22:11 -0700] rev 4766
convert: svn: abort if module stat fails
Sun, 01 Jul 2007 23:28:21 -0700 convert: fetch svn changes on demand (in batches)
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 23:28:21 -0700] rev 4765
convert: fetch svn changes on demand (in batches)
Sun, 01 Jul 2007 22:23:33 -0700 convert: svn: convert branch trunk to default
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 22:23:33 -0700] rev 4764
convert: svn: convert branch trunk to default
Sun, 01 Jul 2007 22:21:05 -0700 convert: svn: fix fallback directory listing code when importing a submodule
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 22:21:05 -0700] rev 4763
convert: svn: fix fallback directory listing code when importing a submodule
Sun, 01 Jul 2007 22:09:33 -0700 convert: remove svn debugger trap
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 22:09:33 -0700] rev 4762
convert: remove svn debugger trap
Sun, 01 Jul 2007 22:00:25 -0700 convert: import all branches from git repositories
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 22:00:25 -0700] rev 4761
convert: import all branches from git repositories
Sun, 01 Jul 2007 21:09:08 -0700 convert: gitcmd wrapper for os.popen
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 21:09:08 -0700] rev 4760
convert: gitcmd wrapper for os.popen
Sun, 01 Jul 2007 20:30:04 -0700 convert: activate subversion engine
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 20:30:04 -0700] rev 4759
convert: activate subversion engine Fail gracefully if the subversion python bindings are not installed. Support --rev option to convert as well as URL@rev.
Sun, 01 Jul 2007 23:56:11 +0200 convert extension: Add SVN converter
Daniel Holth <dholth@fastmail.fm> [Sun, 01 Jul 2007 23:56:11 +0200] rev 4758
convert extension: Add SVN converter
Sun, 01 Jul 2007 17:15:54 +0200 convert extension: stripped-down svn transport module
Daniel Holth <dholth@fastmail.fm> [Sun, 01 Jul 2007 17:15:54 +0200] rev 4757
convert extension: stripped-down svn transport module
Sun, 01 Jul 2007 19:58:19 -0700 convert: split converter into convertsource and convertsink
Brendan Cully <brendan@kublai.com> [Sun, 01 Jul 2007 19:58:19 -0700] rev 4756
convert: split converter into convertsource and convertsink
(0) -3000 -1000 -120 +120 tip