##// END OF EJS Templates
make revlog.addgroup pass its file handles to addrevision...
make revlog.addgroup pass its file handles to addrevision This should fix issue255. It looks like the problem there happens when addgroup calls addrevision to add a full revision, and addrevision decides to split the index file into a .i/.d pair. Since addgroup has an open file handle for the index file, the renaming of the new .i file to its final name fails on windows.

File last commit:

r3197:e18c3d08 default
r3390:a74adddd default
Show More
map-cmdline.default
16 lines | 814 B | text/plain | TextLexer
Vadim Gelfer
add tests for command line template....
r1915 changeset = 'changeset: {rev}:{node|short}\n{tags}{short_parents}user: {author}\ndate: {date|date}\nsummary: {desc|firstline}\n\n'
Vadim Gelfer
add changeset_quiet to templates.
r1919 changeset_quiet = '{rev}:{node|short}\n'
Brendan Cully
Show copies in hg log....
r3197 changeset_verbose = 'changeset: {rev}:{node}\n{tags}{parents}{manifest}user: {author}\ndate: {date|date}\nfiles: {files}\n{file_adds}{file_dels}{file_copies}description:\n{desc|strip}\n\n\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 start_file_adds = 'files+: '
file_add = ' {file_add}'
end_file_adds = '\n'
start_file_dels = 'files-: '
file_del = ' {file_del}'
end_file_dels = '\n'
Brendan Cully
Show copies in hg log....
r3197 start_file_copies = 'copies: '
file_copy = ' {name} ({source})'
end_file_copies = '\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 short_parent = 'parent: {rev}:{node|short}\n'
parent = 'parent: {rev}:{node}\n'
manifest = 'manifest: {rev}:{node}\n'
tag = 'tag: {tag}\n'