view tests/test-parents.out @ 5189:60acf1432ee0

Move cmdtable and reposetup handling out of extensions.py A new function (extensions.extensions) allows the code that is interested in those attributes to handle them directly. This allows some cleanups of extensions.py. Notably, we can remove the extensions.commandtable hack. It also makes it easier to add standard extension attributes, like a "hgwebsetup" function or a "helptable" dict that augments the data in help.py, etc.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Fri, 17 Aug 2007 17:33:27 -0300
parents be5dc5e3ab2d
children 5a4824f6665c
line wrap: on
line source

% no working directory
adding a
adding b
% hg parents
changeset:   2:6cfac479f009
tag:         tip
user:        test
date:        Thu Jan 01 00:00:02 1970 +0000
summary:     b

% hg parents a
changeset:   0:b6a1406d8886
user:        test
date:        Thu Jan 01 00:00:00 1970 +0000
summary:     ab

% hg parents -r 2
changeset:   1:d786049f033a
user:        test
date:        Thu Jan 01 00:00:01 1970 +0000
summary:     a

% hg parents -r 2 a
changeset:   0:b6a1406d8886
user:        test
date:        Thu Jan 01 00:00:00 1970 +0000
summary:     ab

% hg parents -r 2 ../a
abort: ../a not under root
% cd dir; hg parents -r 2 ../a
changeset:   0:b6a1406d8886
user:        test
date:        Thu Jan 01 00:00:00 1970 +0000
summary:     ab

% hg parents -r 2 path:a
changeset:   0:b6a1406d8886
user:        test
date:        Thu Jan 01 00:00:00 1970 +0000
summary:     ab

% hg parents -r 2 glob:a
abort: can only specify an explicit file name