Commit Graph

2237 Commits

Author SHA1 Message Date
Thomas Arendsen Hein
667b1d7a64 Added -A as an alias for --after to hg remove, like for other commands. 2006-05-10 19:23:19 +02:00
Thomas Arendsen Hein
2fe1d1ce64 Just using 'make' now shows help. 'make all' doesn't perform inplace build. 2006-05-10 18:53:32 +02:00
Christian Boos
58fa61b2c0 The posixfile implemented using the win32 API should be iterable. 2006-05-10 11:53:56 +02:00
Bryan O'Sullivan
f7880e5ffa merge with crew. 2006-05-09 20:56:57 -07:00
Vadim Gelfer
79f11ff2dd hide deprecated undo command by making it an alias for debugundo. 2006-05-09 20:56:13 -07:00
Vadim Gelfer
fb16f08cc0 merge with crew. 2006-05-09 14:40:13 -07:00
Vadim Gelfer
42391c45d8 bugzilla hook: skip empty groups. 2006-05-09 14:39:56 -07:00
Vadim Gelfer
3528e1b2de undo: add "deprecated" message to output. 2006-05-09 13:29:55 -07:00
Vadim Gelfer
4b2d02c52a reduce memory used by util.opener when making a temp copy of a file. 2006-05-09 11:12:45 -07:00
Vadim Gelfer
09f8d99751 reduce memory used when appendfile appends to real file. 2006-05-09 11:08:06 -07:00
Thomas Arendsen Hein
bd197a81db 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
2006-05-09 18:03:15 +02:00
Thomas Arendsen Hein
3a7a2777d1 New make target "dist-notests" to create tarballs without running tests first. 2006-05-09 17:21:53 +02:00
wilde@trapperkeeper.sha-bang.de
5d9b2c557e Added install target. 2006-05-09 17:05:49 +02:00
Thomas Arendsen Hein
571a43feca Always remove appendopener tmp files (fixes issue235).
test-hup triggered this bug by killing "hg serve --stdio".
2006-05-09 17:03:00 +02:00
Thomas Arendsen Hein
ce9a04e13f gpg extension: Always remove temporary files created by 'hg sigcheck'. 2006-05-09 13:26:16 +02:00
Vadim Gelfer
990eecd90f localrepository.addchangegroup: add more source infos to hooks 2006-05-08 16:50:27 -07:00
Vadim Gelfer
724c8bd48c changegroup hooks: add source to hook parameters 2006-05-08 16:07:56 -07:00
Vadim Gelfer
daf27b2d40 merge with mainline. 2006-05-08 14:20:37 -07:00
Vadim Gelfer
c0d2c42c9f deprecate undo command, replace with rollback command. 2006-05-08 14:19:05 -07:00
Vadim Gelfer
0401f2bd35 fix test-help output. 2006-05-08 14:18:19 -07:00
Matt Mackall
350d21b04e Update tests for revlogng 2006-05-08 14:32:43 -05:00
Vadim Gelfer
8ea7dbe8d0 notify: add 'to' header to message. 2006-05-08 12:27:30 -07:00
mason@suse.com
58d4ef2538 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
2006-05-08 14:26:18 -05:00
Vadim Gelfer
a82c03a7e0 notify extension: generate right number of diffs 2006-05-08 11:16:09 -07:00
Vadim Gelfer
41eb4e2c6e 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
2006-05-08 10:59:58 -07:00
Vadim Gelfer
f337648835 add filename to IOError if read of file fails.
if file replaced with directory or symlink, IOError not fully filled out.
2006-05-08 08:20:56 -07:00
Vadim Gelfer
dd7442a4f4 merge with crew. 2006-05-08 08:04:46 -07:00
Thomas Arendsen Hein
9be2b594a2 Fixed tests for changed help output 2006-05-06 16:43:16 +02:00
Lee Cantey
019412ec07 Update release notes and copyright year for Windows installer. 2006-05-05 22:13:56 -07:00
Vadim Gelfer
9522c700f4 revert: remove word "modified" from description. 2006-05-05 11:07:29 -07:00
Vadim Gelfer
89c7098b13 make test-confused-revert check working dir with two parents. 2006-05-05 10:45:08 -07:00
Vadim Gelfer
e1962a5447 run-tests.py must print changed test output no matter what exit code is. 2006-05-05 10:41:38 -07:00
Vadim Gelfer
ee2bf06926 revert: require explicit revision when working dir has two parents. 2006-05-05 10:31:03 -07:00
Vadim Gelfer
3b1041b988 document [extensions] in doc/hgrc.5.txt. 2006-05-04 22:38:14 -07:00
Vadim Gelfer
b4aa24b16d add tests/coverage.py to MANIFEST.in. 2006-05-04 22:23:18 -07:00
Vadim Gelfer
b2130fb2d5 document hgignore syntax in new file doc/hgignore.5.txt.
fix issue 162.
2006-05-04 22:20:02 -07:00
Vadim Gelfer
397261a292 update README.
fix issue 225.
do not use deprecated commands in examples.
2006-05-04 21:44:09 -07:00
Stephen Darnell
fb04fe7b4b Delete the shell version of run-tests
Use the python version instead
2006-05-04 15:47:18 -07:00
Stephen Darnell
df126198c9 Use text rather than binary mode for editing commit messages 2006-05-04 15:42:14 -07:00
Vadim Gelfer
9c9dc84168 update test-help.out after fixing revert docs. 2006-05-04 15:25:24 -07:00
Vadim Gelfer
15365b9a8c fix doc comments for revert command. people found them confusing. 2006-05-04 15:23:58 -07:00
Vadim Gelfer
ef1e3759c2 add email notification hook. hook written in python.
email headers and body can be customized using template code.
2006-05-04 15:07:35 -07:00
Vadim Gelfer
9a2b3a6303 make templater.stringio a tiny bit more use. 2006-05-04 14:45:57 -07:00
Bryan O'Sullivan
f8888fa454 patch queue: notify.patch 2006-05-04 12:25:10 -07:00
Vadim Gelfer
f906ed16e7 move mail sending code into core, so extensions can share it.
document hgrc settings used.
2006-05-04 12:23:01 -07:00
Vadim Gelfer
c40534f466 move stringio class from bugzilla extension into templater module. 2006-05-04 12:02:32 -07:00
Vadim Gelfer
7ff45befff rename [patchbomb] section to [email] section in hgrc. old name still ok. 2006-05-04 12:00:45 -07:00
Vadim Gelfer
901f2c1543 define standard name for base url to use when printing hgweb urls.
useful for bugzilla integration, email notifications, other stuffs.
2006-05-04 11:32:00 -07:00
Benoit Boissinot
42a1166b20 merge with crew 2006-05-04 14:05:44 +02:00
TK Soh
65e65dcd3d gitweb: strip leading & trailing blank lines in changeset description 2006-05-04 14:01:55 +02:00