Tue, 09 May 2006 14:40:13 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 09 May 2006 14:40:13 -0700] rev 2240
merge with crew.
Tue, 09 May 2006 14:39:56 -0700 bugzilla hook: skip empty groups.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 09 May 2006 14:39:56 -0700] rev 2239
bugzilla hook: skip empty groups.
Tue, 09 May 2006 13:29:55 -0700 undo: add "deprecated" message to output.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 09 May 2006 13:29:55 -0700] rev 2238
undo: add "deprecated" message to output.
Tue, 09 May 2006 11:12:45 -0700 reduce memory used by util.opener when making a temp copy of a file.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 09 May 2006 11:12:45 -0700] rev 2237
reduce memory used by util.opener when making a temp copy of a file.
Tue, 09 May 2006 11:08:06 -0700 reduce memory used when appendfile appends to real file.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 09 May 2006 11:08:06 -0700] rev 2236
reduce memory used when appendfile appends to real file.
Tue, 09 May 2006 18:03:15 +0200 New make targets:
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 09 May 2006 18:03:15 +0200] rev 2235
New make targets: local: build extensions inplace (the former "all" target") all: "local" (for people who expect this) and build everything else install: install pre-built things (so root doesn't have to write to $HOME) install-home: use setup.py's --home option instead of --prefix
Tue, 09 May 2006 17:21:53 +0200 New make target "dist-notests" to create tarballs without running tests first.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 09 May 2006 17:21:53 +0200] rev 2234
New make target "dist-notests" to create tarballs without running tests first.
Tue, 09 May 2006 17:05:49 +0200 Added install target.
wilde@trapperkeeper.sha-bang.de [Tue, 09 May 2006 17:05:49 +0200] rev 2233
Added install target.
Tue, 09 May 2006 17:03:00 +0200 Always remove appendopener tmp files (fixes issue235).
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 09 May 2006 17:03:00 +0200] rev 2232
Always remove appendopener tmp files (fixes issue235). test-hup triggered this bug by killing "hg serve --stdio".
Tue, 09 May 2006 13:26:16 +0200 gpg extension: Always remove temporary files created by 'hg sigcheck'.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 09 May 2006 13:26:16 +0200] rev 2231
gpg extension: Always remove temporary files created by 'hg sigcheck'.
Mon, 08 May 2006 16:50:27 -0700 localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 16:50:27 -0700] rev 2230
localrepository.addchangegroup: add more source infos to hooks
Mon, 08 May 2006 16:07:56 -0700 changegroup hooks: add source to hook parameters
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 16:07:56 -0700] rev 2229
changegroup hooks: add source to hook parameters
Mon, 08 May 2006 14:20:37 -0700 merge with mainline.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 14:20:37 -0700] rev 2228
merge with mainline.
Mon, 08 May 2006 14:19:05 -0700 deprecate undo command, replace with rollback command.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 14:19:05 -0700] rev 2227
deprecate undo command, replace with rollback command.
Mon, 08 May 2006 14:18:19 -0700 fix test-help output.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 14:18:19 -0700] rev 2226
fix test-help output.
Mon, 08 May 2006 12:27:30 -0700 notify: add 'to' header to message.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 12:27:30 -0700] rev 2225
notify: add 'to' header to message.
Mon, 08 May 2006 11:16:09 -0700 notify extension: generate right number of diffs
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 11:16:09 -0700] rev 2224
notify extension: generate right number of diffs
Mon, 08 May 2006 14:32:43 -0500 Update tests for revlogng
Matt Mackall <mpm@selenic.com> [Mon, 08 May 2006 14:32:43 -0500] rev 2223
Update tests for revlogng
Mon, 08 May 2006 14:26:18 -0500 Use revlogng and inlined data files by default
mason@suse.com [Mon, 08 May 2006 14:26:18 -0500] rev 2222
Use revlogng and inlined data files by default This changes revlog specify revlogng by default. Inlined data files are also used unless a flags option is found in the .hgrc. Some example hgrc files: [revlog] # use the original revlog format format=0 [revlog] # use revlogng. Because no flags are included, inlined data files # also be selected format=1 [revlog] # use revlogng but do not inline the data files with the index flags= [revlog] # the new default format=1 flags=inline
Mon, 08 May 2006 10:59:58 -0700 reverse sense of return value from python hooks.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 10:59:58 -0700] rev 2221
reverse sense of return value from python hooks. old scheme (False/None/0/'' == fail) made coding style unnatural, did not allow use of mercurial commands as hooks. new scheme (False/None/0 == pass) is pythonic, does not require peculiar "return True" at ends of hooks, allows hooks like this: [hooks] # update working dir after push into this repo changegroup.update = python:mercurial.commands.update
Mon, 08 May 2006 08:20:56 -0700 add filename to IOError if read of file fails.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 08:20:56 -0700] rev 2220
add filename to IOError if read of file fails. if file replaced with directory or symlink, IOError not fully filled out.
Mon, 08 May 2006 08:04:46 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 08 May 2006 08:04:46 -0700] rev 2219
merge with crew.
Wed, 03 May 2006 14:56:07 -0700 only import mysql module if hook used.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 14:56:07 -0700] rev 2218
only import mysql module if hook used.
Sat, 06 May 2006 16:43:16 +0200 Fixed tests for changed help output
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 06 May 2006 16:43:16 +0200] rev 2217
Fixed tests for changed help output
Fri, 05 May 2006 22:13:56 -0700 Update release notes and copyright year for Windows installer.
Lee Cantey <lcantey@gmail.com> [Fri, 05 May 2006 22:13:56 -0700] rev 2216
Update release notes and copyright year for Windows installer.
Fri, 05 May 2006 11:07:29 -0700 revert: remove word "modified" from description.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 05 May 2006 11:07:29 -0700] rev 2215
revert: remove word "modified" from description.
Fri, 05 May 2006 10:45:08 -0700 make test-confused-revert check working dir with two parents.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 05 May 2006 10:45:08 -0700] rev 2214
make test-confused-revert check working dir with two parents.
Fri, 05 May 2006 10:41:38 -0700 run-tests.py must print changed test output no matter what exit code is.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 05 May 2006 10:41:38 -0700] rev 2213
run-tests.py must print changed test output no matter what exit code is.
Fri, 05 May 2006 10:31:03 -0700 revert: require explicit revision when working dir has two parents.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 05 May 2006 10:31:03 -0700] rev 2212
revert: require explicit revision when working dir has two parents.
Thu, 04 May 2006 22:38:14 -0700 document [extensions] in doc/hgrc.5.txt.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 22:38:14 -0700] rev 2211
document [extensions] in doc/hgrc.5.txt.
Thu, 04 May 2006 22:23:18 -0700 add tests/coverage.py to MANIFEST.in.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 22:23:18 -0700] rev 2210
add tests/coverage.py to MANIFEST.in.
Thu, 04 May 2006 22:20:02 -0700 document hgignore syntax in new file doc/hgignore.5.txt.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 22:20:02 -0700] rev 2209
document hgignore syntax in new file doc/hgignore.5.txt. fix issue 162.
Thu, 04 May 2006 21:44:09 -0700 update README.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 21:44:09 -0700] rev 2208
update README. fix issue 225. do not use deprecated commands in examples.
Thu, 04 May 2006 15:47:18 -0700 Delete the shell version of run-tests
Stephen Darnell <stephen@darnell.plus.com> [Thu, 04 May 2006 15:47:18 -0700] rev 2207
Delete the shell version of run-tests Use the python version instead
Thu, 04 May 2006 15:42:14 -0700 Use text rather than binary mode for editing commit messages
Stephen Darnell <stephen@darnell.plus.com> [Thu, 04 May 2006 15:42:14 -0700] rev 2206
Use text rather than binary mode for editing commit messages
Thu, 04 May 2006 15:25:24 -0700 update test-help.out after fixing revert docs.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 15:25:24 -0700] rev 2205
update test-help.out after fixing revert docs.
Thu, 04 May 2006 15:23:58 -0700 fix doc comments for revert command. people found them confusing.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 15:23:58 -0700] rev 2204
fix doc comments for revert command. people found them confusing.
Thu, 04 May 2006 15:07:35 -0700 add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 15:07:35 -0700] rev 2203
add email notification hook. hook written in python. email headers and body can be customized using template code.
Thu, 04 May 2006 14:45:57 -0700 make templater.stringio a tiny bit more use.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 14:45:57 -0700] rev 2202
make templater.stringio a tiny bit more use.
Thu, 04 May 2006 12:25:10 -0700 patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com> [Thu, 04 May 2006 12:25:10 -0700] rev 2201
patch queue: notify.patch
Thu, 04 May 2006 12:23:01 -0700 move mail sending code into core, so extensions can share it.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 12:23:01 -0700] rev 2200
move mail sending code into core, so extensions can share it. document hgrc settings used.
Thu, 04 May 2006 12:02:32 -0700 move stringio class from bugzilla extension into templater module.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 12:02:32 -0700] rev 2199
move stringio class from bugzilla extension into templater module.
Thu, 04 May 2006 12:00:45 -0700 rename [patchbomb] section to [email] section in hgrc. old name still ok.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 12:00:45 -0700] rev 2198
rename [patchbomb] section to [email] section in hgrc. old name still ok.
Thu, 04 May 2006 11:32:00 -0700 define standard name for base url to use when printing hgweb urls.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 04 May 2006 11:32:00 -0700] rev 2197
define standard name for base url to use when printing hgweb urls. useful for bugzilla integration, email notifications, other stuffs.
Thu, 04 May 2006 14:05:44 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Thu, 04 May 2006 14:05:44 +0200] rev 2196
merge with crew
Thu, 04 May 2006 14:01:55 +0200 gitweb: strip leading & trailing blank lines in changeset description
TK Soh <teekaysoh@yahoo.com> [Thu, 04 May 2006 14:01:55 +0200] rev 2195
gitweb: strip leading & trailing blank lines in changeset description
Wed, 03 May 2006 22:47:57 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 22:47:57 -0700] rev 2194
merge with crew.
Wed, 03 May 2006 22:47:08 -0700 add util.samestat function for windows.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 22:47:08 -0700] rev 2193
add util.samestat function for windows. windows does not have os.path.samestat, and stat().st_ino is always zero, so util.samestat always returns false on windows.
Wed, 03 May 2006 14:40:39 -0700 add bugzilla integration hook. example of writing hook in python.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 14:40:39 -0700] rev 2192
add bugzilla integration hook. example of writing hook in python. hook updates bugzilla bugs when it sees commit comments that mention bug id, such as "i fixed bug 77". only bugzilla 2.16 supported yet, but easy to extend. bugzilla versions have different schema, i have not used later than 2.16.
Wed, 03 May 2006 14:35:17 -0700 make templater bit more flexible and efficient for external users.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 14:35:17 -0700] rev 2191
make templater bit more flexible and efficient for external users.
Wed, 03 May 2006 11:00:24 -0700 fix minor bugs in localrepo.hook.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 11:00:24 -0700] rev 2190
fix minor bugs in localrepo.hook.
Wed, 03 May 2006 10:25:28 -0700 move changeset_templater into templater module.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 03 May 2006 10:25:28 -0700] rev 2189
move changeset_templater into templater module.
Wed, 03 May 2006 13:12:34 +0200 merge with crew
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 03 May 2006 13:12:34 +0200] rev 2188
merge with crew
Wed, 03 May 2006 11:25:36 +0200 tests: support older version of bunzip2 and, possibly, gunzip too
TK Soh <teekaysoh@yahoo.com> [Wed, 03 May 2006 11:25:36 +0200] rev 2187
tests: support older version of bunzip2 and, possibly, gunzip too
Wed, 03 May 2006 11:25:25 +0200 tests: fix compatibility on Solaris
TK Soh <teekaysoh@yahoo.com> [Wed, 03 May 2006 11:25:25 +0200] rev 2186
tests: fix compatibility on Solaris
Wed, 03 May 2006 11:57:14 +0200 Better help for mq: Corrected synopses, get qcommit options from commands.py.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 03 May 2006 11:57:14 +0200] rev 2185
Better help for mq: Corrected synopses, get qcommit options from commands.py.
Wed, 03 May 2006 10:53:51 +0200 Add debugaddremove alias to addremove, so it doesn't show up in 'hg help'.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 03 May 2006 10:53:51 +0200] rev 2184
Add debugaddremove alias to addremove, so it doesn't show up in 'hg help'. Add an explicit description of 'hg commit --addremove'.
Wed, 03 May 2006 10:45:20 +0200 Always clean the build directory before installing for running the tests.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 03 May 2006 10:45:20 +0200] rev 2183
Always clean the build directory before installing for running the tests. Otherwise tests might run an old version, when e.g. commands.py.orig is moved back after a revert (old timestamp).
Wed, 03 May 2006 10:18:52 +0200 Corrected test output for deprecated addremove command.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 03 May 2006 10:18:52 +0200] rev 2182
Corrected test output for deprecated addremove command.
Tue, 02 May 2006 21:50:53 -0700 deprecate addremove command.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 21:50:53 -0700] rev 2181
deprecate addremove command.
Tue, 02 May 2006 21:45:53 -0700 make test-remove check some more cases.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 21:45:53 -0700] rev 2180
make test-remove check some more cases.
Tue, 02 May 2006 21:44:24 -0700 add --after option to remove command.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 21:44:24 -0700] rev 2179
add --after option to remove command.
Tue, 02 May 2006 14:38:32 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 14:38:32 -0700] rev 2178
merge with crew.
Tue, 02 May 2006 14:37:55 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 14:37:55 -0700] rev 2177
merge with crew.
Tue, 02 May 2006 14:30:00 -0700 fix file handling bugs on windows.
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 02 May 2006 14:30:00 -0700] rev 2176
fix file handling bugs on windows. add util.posixfile class that has posix semantics on windows. fix util.rename so it works with stupid windows delete semantics.
Tue, 02 May 2006 18:44:02 +0200 Make hg update more verbose by default (issue12)
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 02 May 2006 18:44:02 +0200] rev 2175
Make hg update more verbose by default (issue12) (including small changes to revert and backout to not show these stats with the exception of backout --merge) Show update stats (unless -q), e.g.: K files updated, L files merged, M files removed, N files unresolved Inform the user what to do after a merge: (branch merge, don't forget to commit) Inform the user what to do if a branch merge failed: There are unresolved merges, you can redo the full merge using: hg update -C X hg merge Y Inform the user what to do if a working directory merge failed: There are unresolved merges with locally modified files.
Mon, 01 May 2006 19:17:34 +0200 If default sorting is name, offer name-descending with one click.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 01 May 2006 19:17:34 +0200] rev 2174
If default sorting is name, offer name-descending with one click. Additionally no longer ignore case when sorting by name to match default sorting. This makes e.g. a repository "FOO" being listed before "bar".
Mon, 01 May 2006 18:38:25 +0200 Make hgwebdir columns sortable.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 01 May 2006 18:38:25 +0200] rev 2173
Make hgwebdir columns sortable.
Mon, 01 May 2006 10:04:25 +0200 Merge with crew
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 01 May 2006 10:04:25 +0200] rev 2172
Merge with crew
Mon, 01 May 2006 10:02:17 +0200 Add download links to hgwebdir index page for allowed archive types.
Thomas Arendsen Hein <thomas@intevation.de> [Mon, 01 May 2006 10:02:17 +0200] rev 2171
Add download links to hgwebdir index page for allowed archive types. Based on a patch by Colin McMillen <mcmillen@cs.cmu.edu>
Mon, 01 May 2006 09:01:59 +0200 Add archive download links to tip on main changeset list page
Colin McMillen <mcmillen@cs.cmu.edu> [Mon, 01 May 2006 09:01:59 +0200] rev 2170
Add archive download links to tip on main changeset list page
Sun, 30 Apr 2006 22:46:54 +0200 Combine catching exceptions added in dd4ec4576cc8 in one except statement.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 30 Apr 2006 22:46:54 +0200] rev 2169
Combine catching exceptions added in dd4ec4576cc8 in one except statement.
Sun, 30 Apr 2006 22:43:41 +0200 Proper check to see if zip dest needs to be wrapped in tellable
Colin McMillen <mcmillen@cs.cmu.edu> [Sun, 30 Apr 2006 22:43:41 +0200] rev 2168
Proper check to see if zip dest needs to be wrapped in tellable From hgweb, calling archival.zipit fails with the error message "Illegal seek". This happens because sys.stdout.tell() throws an exception: Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/mercurial/archival.py", line 99, in addfile self.z.writestr(i, data) File "/usr/lib/python2.4/zipfile.py", line 468, in writestr zinfo.header_offset = self.fp.tell() # Start of header bytes Checking whether hasattr(dest, 'tell') is insufficient, because sys.stdout has a tell() method; you just can't call it. This patch instead determines whether a fileobj is tellable by trying to tell(), wrapping the fileobj if an exception is generated.
Sun, 30 Apr 2006 16:30:57 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Apr 2006 16:30:57 -0700] rev 2167
merge with crew.
Sun, 30 Apr 2006 16:30:39 -0700 do not check sys.argv from localrepo when running hooks.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Apr 2006 16:30:39 -0700] rev 2166
do not check sys.argv from localrepo when running hooks. instead add traceback field to ui class.
Sun, 30 Apr 2006 21:11:22 +0200 Use better names (hg-{usage}-{random}.{suffix}) for temporary files.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 30 Apr 2006 21:11:22 +0200] rev 2165
Use better names (hg-{usage}-{random}.{suffix}) for temporary files.
Sun, 30 Apr 2006 19:30:59 +0200 Applied $PWD fix (changeset 278f9b13c39a) to tests/test-hook, too.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 30 Apr 2006 19:30:59 +0200] rev 2164
Applied $PWD fix (changeset 278f9b13c39a) to tests/test-hook, too.
Sun, 30 Apr 2006 19:29:57 +0200 SunOS fix: Replaced $PWD with `pwd`
Sascha Wilde <wilde@sha-bang.de> [Sun, 30 Apr 2006 19:29:57 +0200] rev 2163
SunOS fix: Replaced $PWD with `pwd` under certain conditioins $PWD isn't up to date, observed on SunOS 5.8
Sun, 30 Apr 2006 18:52:34 +0200 Add self to CONTRIBUTORS
Colin McMillen <mcmillen@cs.cmu.edu> [Sun, 30 Apr 2006 18:52:34 +0200] rev 2162
Add self to CONTRIBUTORS
Sun, 30 Apr 2006 18:50:53 +0200 Fix just introduced possible old-http bug
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sun, 30 Apr 2006 18:50:53 +0200] rev 2161
Fix just introduced possible old-http bug My last patch changed httprangereader.read to read only the specified amount of data from the connection, to prevent it from returning more than what was asked. I just realized that this could lead to the connection not being closed. In practice, it looks like the connection is closed just fine, but it's probably safer to read everything and then return only what's necessary.
Sun, 30 Apr 2006 18:46:49 +0200 Cleanup archive command: Don't overwrite gettext, quoting in cmd table entry.
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 30 Apr 2006 18:46:49 +0200] rev 2160
Cleanup archive command: Don't overwrite gettext, quoting in cmd table entry.
Sun, 30 Apr 2006 18:40:30 +0200 Small cleanups to backout command:
Thomas Arendsen Hein <thomas@intevation.de> [Sun, 30 Apr 2006 18:40:30 +0200] rev 2159
Small cleanups to backout command: - Accept -m for --message (like commit and similar commands), too. - Don't ignore --logfile option. - Fix command table entry (synopsis, group commit related option)
Sat, 29 Apr 2006 20:56:46 -0700 add backout command.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 29 Apr 2006 20:56:46 -0700] rev 2158
add backout command. command undoes effect of an earlier commit, commits new changeset as result.
Sat, 29 Apr 2006 20:39:28 -0700 make test-revert check executable bit.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 29 Apr 2006 20:39:28 -0700] rev 2157
make test-revert check executable bit.
Fri, 28 Apr 2006 15:50:56 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 28 Apr 2006 15:50:56 -0700] rev 2156
merge with crew.
Fri, 28 Apr 2006 15:50:22 -0700 support hooks written in python.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 28 Apr 2006 15:50:22 -0700] rev 2155
support hooks written in python. to write hook in python, create module with hook function inside. make sure mercurial can import module (put it in $PYTHONPATH or load it as extension). hook function should look like this: def myhook(ui, repo, hooktype, **kwargs): if hook_passes: return True elif hook_explicitly_fails: return False elif some_other_failure: import util raise util.Abort('helpful failure message') else: return # implicit return of None makes hook fail! then in .hgrc, add hook with "python:" prefix: [hooks] commit = python:mymodule.myhook
Fri, 28 Apr 2006 14:51:36 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 28 Apr 2006 14:51:36 -0700] rev 2154
merge with crew.
Fri, 28 Apr 2006 14:50:23 -0700 move SignalInterrupt class into util module.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 28 Apr 2006 14:50:23 -0700] rev 2153
move SignalInterrupt class into util module.
Fri, 28 Apr 2006 21:52:08 +0200 Show repo's revlog format on verify only if it doesn't match the default format.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 28 Apr 2006 21:52:08 +0200] rev 2152
Show repo's revlog format on verify only if it doesn't match the default format. This makes it easier to run the tests with different revlog formats.
Fri, 28 Apr 2006 12:38:11 +0200 Ignore annotated coverage output of run-tests.py -C
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 28 Apr 2006 12:38:11 +0200] rev 2151
Ignore annotated coverage output of run-tests.py -C
Fri, 28 Apr 2006 11:36:33 +0200 fix a NameError in changegroupsubset
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Fri, 28 Apr 2006 11:36:33 +0200] rev 2150
fix a NameError in changegroupsubset
Thu, 27 Apr 2006 22:29:02 -0700 allow to pull from an empty repo without getting a backtrace
Vincent Danjean <vdanjean@free.fr> [Thu, 27 Apr 2006 22:29:02 -0700] rev 2149
allow to pull from an empty repo without getting a backtrace
Thu, 27 Apr 2006 22:11:13 -0700 Add MOTD display to hgweb and hgwebdir.
Colin McMillen <mcmillen@cs.cmu.edu> [Thu, 27 Apr 2006 22:11:13 -0700] rev 2148
Add MOTD display to hgweb and hgwebdir. The hgweb "footer" template now has space for an optional message of the day (MOTD). This is used in two contexts: 1) On the hgwebdir index page 2) On various pages of each individual repo For both cases, the MOTD is read out of an entry named "motd" in the [web] section of a config file -- the only difference is which file is used. For #1, you need to add the section to hgweb.config; for #2, you need to add to the repo's .hgrc file. I suggest something like this: [web] motd = <p>To download these repositories, <a href="http://www.selenic.com/mercurial">get Mercurial</a> and then type something like:</p><p><pre>hg clone http://gs3080.sp.cs.cmu.edu/hg.cgi/cpmpy</pre></p>You can also click the Download links to get an archive of the latest revision. An online sample is available here: http://gs3080.sp.cs.cmu.edu/hg.cgi
Thu, 27 Apr 2006 22:10:45 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 27 Apr 2006 22:10:45 -0700] rev 2147
merge with crew.
Thu, 27 Apr 2006 22:01:57 -0700 run-tests.py: remove trailing white space
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 27 Apr 2006 22:01:57 -0700] rev 2146
run-tests.py: remove trailing white space
Thu, 27 Apr 2006 22:01:28 -0700 make indentation of coverage code in run-tests.py nicer.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 27 Apr 2006 22:01:28 -0700] rev 2145
make indentation of coverage code in run-tests.py nicer.
Thu, 27 Apr 2006 21:59:44 -0700 Add code coverage to the python version of run-tests (inc. annotation)
Stephen Darnell <stephen@darnell.plus.com> [Thu, 27 Apr 2006 21:59:44 -0700] rev 2144
Add code coverage to the python version of run-tests (inc. annotation) Also include a minor work-around to coverage.py to avoid errors about /<string>
Thu, 27 Apr 2006 21:58:47 +0200 Show repo's revlog format on verify. Warn if some files use a different format.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 27 Apr 2006 21:58:47 +0200] rev 2143
Show repo's revlog format on verify. Warn if some files use a different format.
Thu, 27 Apr 2006 21:16:46 +0200 Replaced 0 with REVLOGV0 where this meaning is used.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 27 Apr 2006 21:16:46 +0200] rev 2142
Replaced 0 with REVLOGV0 where this meaning is used.
Thu, 27 Apr 2006 21:03:07 +0200 Corrected error message for incompatible revision flags.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 27 Apr 2006 21:03:07 +0200] rev 2141
Corrected error message for incompatible revision flags.
Thu, 27 Apr 2006 13:11:23 +0200 Make the deprecated forget an alias of debugforget.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 27 Apr 2006 13:11:23 +0200] rev 2140
Make the deprecated forget an alias of debugforget. This way it doesn't show up in the non-debug help.
Thu, 27 Apr 2006 13:05:02 +0200 Fixed test output for not using the deprecated 'hg forget'.
Thomas Arendsen Hein <thomas@intevation.de> [Thu, 27 Apr 2006 13:05:02 +0200] rev 2139
Fixed test output for not using the deprecated 'hg forget'.
Wed, 26 Apr 2006 22:42:07 -0700 Fix revlog-ng interaction with old-http.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 26 Apr 2006 22:42:07 -0700] rev 2138
Fix revlog-ng interaction with old-http. revlog.py wasn't trying to detect the version of a revlog file that doesn't exist on the filesystem (as is the case with old-http). Additionally, there was an off-by-one error in httprangereader.read (ranges in HTTP Range headers are inclusive), making it get more data than what was asked for. This made a struct.unpack complain that "unpack str size does not match format". Finally, with the two fixes above, test-static-http fails, since BaseHTTPServer doesn't understand ranges and returns too much data. Work around that by reading only the specified amount.
Wed, 26 Apr 2006 22:15:01 -0700 Fix timezone check.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Wed, 26 Apr 2006 22:15:01 -0700] rev 2137
Fix timezone check. According to http://en.wikipedia.org/wiki/List_of_time_zones timezones go from UTC-12 to UTC+14.
Wed, 26 Apr 2006 12:06:21 -0700 mke test-nested-repo use "revert" instead of "forget"
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 26 Apr 2006 12:06:21 -0700] rev 2136
mke test-nested-repo use "revert" instead of "forget"
Wed, 26 Apr 2006 12:05:16 -0700 mark forget command as deprecated.
Vadim Gelfer <vadim.gelfer@gmail.com> [Wed, 26 Apr 2006 12:05:16 -0700] rev 2135
mark forget command as deprecated. will be removed after 0.9 released.
Wed, 26 Apr 2006 10:57:40 -0700 write to stderr with a single write call.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 26 Apr 2006 10:57:40 -0700] rev 2134
write to stderr with a single write call. this works around issue88.
Wed, 26 Apr 2006 16:54:07 +0200 Tidyups for run-tests.py inc. try/finally cleanup and allow tests to be specified on command line
Stephen Darnell <stephen@darnell.plus.com> [Wed, 26 Apr 2006 16:54:07 +0200] rev 2133
Tidyups for run-tests.py inc. try/finally cleanup and allow tests to be specified on command line
Wed, 26 Apr 2006 07:31:04 +0200 hgweb: Synchronised filelogentry to changelogentry.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 26 Apr 2006 07:31:04 +0200] rev 2132
hgweb: Synchronised filelogentry to changelogentry.
Wed, 26 Apr 2006 07:03:10 +0200 Try harder to display node hashes in tags view in monospaced font.
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 26 Apr 2006 07:03:10 +0200] rev 2131
Try harder to display node hashes in tags view in monospaced font. Used to work around Firefox's behaviour if "Allow pages to choose their own fonts" is disabled.
Wed, 26 Apr 2006 06:12:42 +0200 hgweb templates: Don't word wrap "foo bar ago" (e.g. "3 months\nago")
Thomas Arendsen Hein <thomas@intevation.de> [Wed, 26 Apr 2006 06:12:42 +0200] rev 2130
hgweb templates: Don't word wrap "foo bar ago" (e.g. "3 months\nago") This made log entries or hgwebdir index look ugly with certain browser widths.
Tue, 25 Apr 2006 23:28:40 +0200 cached data was wrong: rev is different from self.rev(node) in bundlerepo.py
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 25 Apr 2006 23:28:40 +0200] rev 2129
cached data was wrong: rev is different from self.rev(node) in bundlerepo.py
Tue, 25 Apr 2006 19:38:45 +0200 Merge with crew
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 25 Apr 2006 19:38:45 +0200] rev 2128
Merge with crew
Tue, 25 Apr 2006 19:38:19 +0200 Allow 'hg serve --webdir-conf foo' to be run outside a repository.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 25 Apr 2006 19:38:19 +0200] rev 2127
Allow 'hg serve --webdir-conf foo' to be run outside a repository.
Tue, 25 Apr 2006 18:50:40 +0200 Use <link> tag instead if CDATA import for CSS stylesheets. Fixes issue200.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 25 Apr 2006 18:50:40 +0200] rev 2126
Use <link> tag instead if CDATA import for CSS stylesheets. Fixes issue200.
Tue, 25 Apr 2006 09:00:09 +0200 Use string literal concatenation for optlist and import -p option
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 25 Apr 2006 09:00:09 +0200] rev 2125
Use string literal concatenation for optlist and import -p option
Tue, 25 Apr 2006 00:43:40 +0200 Cleaned trailing whitespace in hgweb.py, removed command line shortcut for webdir-conf.
Alexander Schremmer <alex AT alexanderweb DOT de> [Tue, 25 Apr 2006 00:43:40 +0200] rev 2124
Cleaned trailing whitespace in hgweb.py, removed command line shortcut for webdir-conf.
Sun, 23 Apr 2006 00:34:07 +0200 Fixed path handling of the standalone server, fixed typo.
Alexander Schremmer <alex AT alexanderweb DOT de> [Sun, 23 Apr 2006 00:34:07 +0200] rev 2123
Fixed path handling of the standalone server, fixed typo.
Sun, 23 Apr 2006 00:31:09 +0200 Added hgwebdir support to hg serve.
Alexander Schremmer <alex AT alexanderweb DOT de> [Sun, 23 Apr 2006 00:31:09 +0200] rev 2122
Added hgwebdir support to hg serve.
Sun, 23 Apr 2006 00:27:46 +0200 Added threading support to hg serve.
Alexander Schremmer <alex AT alexanderweb DOT de> [Sun, 23 Apr 2006 00:27:46 +0200] rev 2121
Added threading support to hg serve.
(0) -1000 -120 +120 +1000 +3000 +10000 +30000 tip