2011-02-15 14:04:30 +03:00
|
|
|
# redminehelper: Redmine helper extension for Mercurial
|
|
|
|
#
|
|
|
|
# Copyright 2010 Alessio Franceschelli (alefranz.net)
|
|
|
|
# Copyright 2010-2011 Yuya Nishihara <yuya@tcha.org>
|
|
|
|
#
|
|
|
|
# This software may be used and distributed according to the terms of the
|
|
|
|
# GNU General Public License version 2 or any later version.
|
|
|
|
"""helper commands for Redmine to reduce the number of hg calls
|
|
|
|
|
|
|
|
To test this extension, please try::
|
|
|
|
|
|
|
|
$ hg --config extensions.redminehelper=redminehelper.py rhsummary
|
|
|
|
|
|
|
|
I/O encoding:
|
|
|
|
|
|
|
|
:file path: urlencoded, raw string
|
|
|
|
:tag name: utf-8
|
|
|
|
:branch name: utf-8
|
|
|
|
:node: 12-digits (short) hex string
|
|
|
|
|
|
|
|
Output example of rhsummary::
|
|
|
|
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
<rhsummary>
|
|
|
|
<repository root="/foo/bar">
|
|
|
|
<tip revision="1234" node="abcdef0123..."/>
|
|
|
|
<tag revision="123" node="34567abc..." name="1.1.1"/>
|
|
|
|
<branch .../>
|
|
|
|
...
|
|
|
|
</repository>
|
|
|
|
</rhsummary>
|
|
|
|
|
|
|
|
Output example of rhmanifest::
|
|
|
|
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
<rhmanifest>
|
|
|
|
<repository root="/foo/bar">
|
|
|
|
<manifest revision="1234" path="lib">
|
|
|
|
<file name="diff.rb" revision="123" node="34567abc..." time="12345"
|
|
|
|
size="100"/>
|
|
|
|
...
|
|
|
|
<dir name="redmine"/>
|
|
|
|
...
|
|
|
|
</manifest>
|
|
|
|
</repository>
|
|
|
|
</rhmanifest>
|
|
|
|
"""
|
|
|
|
import re, time, cgi, urllib
|
2011-10-24 13:32:06 +04:00
|
|
|
from mercurial import cmdutil, commands, node, error, hg
|
2011-02-15 14:04:30 +03:00
|
|
|
|
|
|
|
_x = cgi.escape
|
|
|
|
_u = lambda s: cgi.escape(urllib.quote(s))
|
|
|
|
|
|
|
|
def _tip(ui, repo):
|
|
|
|
# see mercurial/commands.py:tip
|
|
|
|
def tiprev():
|
|
|
|
try:
|
|
|
|
return len(repo) - 1
|
|
|
|
except TypeError: # Mercurial < 1.1
|
|
|
|
return repo.changelog.count() - 1
|
|
|
|
tipctx = repo.changectx(tiprev())
|
|
|
|
ui.write('<tip revision="%d" node="%s"/>\n'
|
|
|
|
% (tipctx.rev(), _x(node.short(tipctx.node()))))
|
|
|
|
|
|
|
|
_SPECIAL_TAGS = ('tip',)
|
|
|
|
|
|
|
|
def _tags(ui, repo):
|
|
|
|
# see mercurial/commands.py:tags
|
|
|
|
for t, n in reversed(repo.tagslist()):
|
|
|
|
if t in _SPECIAL_TAGS:
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
r = repo.changelog.rev(n)
|
|
|
|
except error.LookupError:
|
|
|
|
continue
|
|
|
|
ui.write('<tag revision="%d" node="%s" name="%s"/>\n'
|
|
|
|
% (r, _x(node.short(n)), _x(t)))
|
|
|
|
|
|
|
|
def _branches(ui, repo):
|
|
|
|
# see mercurial/commands.py:branches
|
|
|
|
def iterbranches():
|
|
|
|
for t, n in repo.branchtags().iteritems():
|
|
|
|
yield t, n, repo.changelog.rev(n)
|
|
|
|
def branchheads(branch):
|
|
|
|
try:
|
|
|
|
return repo.branchheads(branch, closed=False)
|
|
|
|
except TypeError: # Mercurial < 1.2
|
|
|
|
return repo.branchheads(branch)
|
|
|
|
for t, n, r in sorted(iterbranches(), key=lambda e: e[2], reverse=True):
|
|
|
|
if repo.lookup(r) in branchheads(t):
|
|
|
|
ui.write('<branch revision="%d" node="%s" name="%s"/>\n'
|
|
|
|
% (r, _x(node.short(n)), _x(t)))
|
|
|
|
|
|
|
|
def _manifest(ui, repo, path, rev):
|
|
|
|
ctx = repo.changectx(rev)
|
|
|
|
ui.write('<manifest revision="%d" path="%s">\n'
|
|
|
|
% (ctx.rev(), _u(path)))
|
|
|
|
|
|
|
|
known = set()
|
|
|
|
pathprefix = (path.rstrip('/') + '/').lstrip('/')
|
|
|
|
for f, n in sorted(ctx.manifest().iteritems(), key=lambda e: e[0]):
|
|
|
|
if not f.startswith(pathprefix):
|
|
|
|
continue
|
|
|
|
name = re.sub(r'/.*', '/', f[len(pathprefix):])
|
|
|
|
if name in known:
|
|
|
|
continue
|
|
|
|
known.add(name)
|
|
|
|
|
|
|
|
if name.endswith('/'):
|
|
|
|
ui.write('<dir name="%s"/>\n'
|
|
|
|
% _x(urllib.quote(name[:-1])))
|
|
|
|
else:
|
|
|
|
fctx = repo.filectx(f, fileid=n)
|
|
|
|
tm, tzoffset = fctx.date()
|
|
|
|
ui.write('<file name="%s" revision="%d" node="%s" '
|
|
|
|
'time="%d" size="%d"/>\n'
|
|
|
|
% (_u(name), fctx.rev(), _x(node.short(fctx.node())),
|
|
|
|
tm, fctx.size(), ))
|
|
|
|
|
|
|
|
ui.write('</manifest>\n')
|
|
|
|
|
2011-02-23 10:04:12 +03:00
|
|
|
def rhannotate(ui, repo, *pats, **opts):
|
2011-03-14 05:23:54 +03:00
|
|
|
rev = urllib.unquote_plus(opts.pop('rev', None))
|
|
|
|
opts['rev'] = rev
|
2011-02-23 14:38:23 +03:00
|
|
|
return commands.annotate(ui, repo, *map(urllib.unquote_plus, pats), **opts)
|
2011-02-23 10:04:12 +03:00
|
|
|
|
2011-02-21 07:00:12 +03:00
|
|
|
def rhcat(ui, repo, file1, *pats, **opts):
|
2011-03-14 05:23:54 +03:00
|
|
|
rev = urllib.unquote_plus(opts.pop('rev', None))
|
|
|
|
opts['rev'] = rev
|
2011-02-23 14:38:23 +03:00
|
|
|
return commands.cat(ui, repo, urllib.unquote_plus(file1), *map(urllib.unquote_plus, pats), **opts)
|
2011-02-21 07:00:12 +03:00
|
|
|
|
2011-02-15 14:04:30 +03:00
|
|
|
def rhdiff(ui, repo, *pats, **opts):
|
|
|
|
"""diff repository (or selected files)"""
|
|
|
|
change = opts.pop('change', None)
|
|
|
|
if change: # add -c option for Mercurial<1.1
|
|
|
|
base = repo.changectx(change).parents()[0].rev()
|
|
|
|
opts['rev'] = [str(base), change]
|
|
|
|
opts['nodates'] = True
|
2011-02-23 14:38:23 +03:00
|
|
|
return commands.diff(ui, repo, *map(urllib.unquote_plus, pats), **opts)
|
2011-02-15 14:04:30 +03:00
|
|
|
|
2011-03-13 03:47:47 +03:00
|
|
|
def rhlog(ui, repo, *pats, **opts):
|
|
|
|
rev = opts.pop('rev')
|
|
|
|
bra0 = opts.pop('branch')
|
|
|
|
from_rev = urllib.unquote_plus(opts.pop('from', None))
|
|
|
|
to_rev = urllib.unquote_plus(opts.pop('to' , None))
|
|
|
|
bra = urllib.unquote_plus(opts.pop('rhbranch', None))
|
|
|
|
from_rev = from_rev.replace('"', '\\"')
|
|
|
|
to_rev = to_rev.replace('"', '\\"')
|
2011-10-24 13:32:06 +04:00
|
|
|
if hg.util.version() >= '1.6':
|
|
|
|
opts['rev'] = ['"%s":"%s"' % (from_rev, to_rev)]
|
|
|
|
else:
|
|
|
|
opts['rev'] = ['%s:%s' % (from_rev, to_rev)]
|
2011-03-13 03:47:47 +03:00
|
|
|
opts['branch'] = [bra]
|
|
|
|
return commands.log(ui, repo, *map(urllib.unquote_plus, pats), **opts)
|
|
|
|
|
2011-02-15 14:04:30 +03:00
|
|
|
def rhmanifest(ui, repo, path='', **opts):
|
|
|
|
"""output the sub-manifest of the specified directory"""
|
|
|
|
ui.write('<?xml version="1.0"?>\n')
|
|
|
|
ui.write('<rhmanifest>\n')
|
|
|
|
ui.write('<repository root="%s">\n' % _u(repo.root))
|
|
|
|
try:
|
2011-03-02 13:17:36 +03:00
|
|
|
_manifest(ui, repo, urllib.unquote_plus(path), urllib.unquote_plus(opts.get('rev')))
|
2011-02-15 14:04:30 +03:00
|
|
|
finally:
|
|
|
|
ui.write('</repository>\n')
|
|
|
|
ui.write('</rhmanifest>\n')
|
|
|
|
|
|
|
|
def rhsummary(ui, repo, **opts):
|
|
|
|
"""output the summary of the repository"""
|
|
|
|
ui.write('<?xml version="1.0"?>\n')
|
|
|
|
ui.write('<rhsummary>\n')
|
|
|
|
ui.write('<repository root="%s">\n' % _u(repo.root))
|
|
|
|
try:
|
|
|
|
_tip(ui, repo)
|
|
|
|
_tags(ui, repo)
|
|
|
|
_branches(ui, repo)
|
|
|
|
# TODO: bookmarks in core (Mercurial>=1.8)
|
|
|
|
finally:
|
|
|
|
ui.write('</repository>\n')
|
|
|
|
ui.write('</rhsummary>\n')
|
|
|
|
|
|
|
|
cmdtable = {
|
2011-02-23 10:04:12 +03:00
|
|
|
'rhannotate': (rhannotate,
|
|
|
|
[('r', 'rev', '', 'revision'),
|
|
|
|
('u', 'user', None, 'list the author (long with -v)'),
|
|
|
|
('n', 'number', None, 'list the revision number (default)'),
|
|
|
|
('c', 'changeset', None, 'list the changeset'),
|
|
|
|
],
|
2011-02-23 10:57:33 +03:00
|
|
|
'hg rhannotate [-r REV] [-u] [-n] [-c] FILE...'),
|
2011-02-21 07:00:12 +03:00
|
|
|
'rhcat': (rhcat,
|
|
|
|
[('r', 'rev', '', 'revision')],
|
|
|
|
'hg rhcat ([-r REV] ...) FILE...'),
|
2011-02-15 14:04:30 +03:00
|
|
|
'rhdiff': (rhdiff,
|
|
|
|
[('r', 'rev', [], 'revision'),
|
|
|
|
('c', 'change', '', 'change made by revision')],
|
|
|
|
'hg rhdiff ([-c REV] | [-r REV] ...) [FILE]...'),
|
2011-03-13 03:47:47 +03:00
|
|
|
'rhlog': (rhlog,
|
|
|
|
[
|
|
|
|
('r', 'rev', [], 'show the specified revision'),
|
|
|
|
('b', 'branch', [],
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
'show changesets within the given named branch'),
|
2011-03-13 03:47:47 +03:00
|
|
|
('l', 'limit', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
'limit number of changes displayed'),
|
2011-03-13 03:47:47 +03:00
|
|
|
('d', 'date', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
'show revisions matching date spec'),
|
2011-03-13 03:47:47 +03:00
|
|
|
('u', 'user', [],
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
'revisions committed by user'),
|
2011-03-13 03:47:47 +03:00
|
|
|
('', 'from', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
''),
|
2011-03-13 03:47:47 +03:00
|
|
|
('', 'to', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
''),
|
2011-03-13 03:47:47 +03:00
|
|
|
('', 'rhbranch', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
''),
|
2011-03-13 03:47:47 +03:00
|
|
|
('', 'template', '',
|
scm: mercurial: fix extension cmdtable on Mercurial 1.5 (#9465)
Before Mercurial revision "40c06bbf58be":http://www.selenic.com/repo/hg-stable/rev/40c06bbf58be ,
following error raises.
<pre>
Traceback (most recent call last):
File "/WEB-DOWN/hg-repo/hg-crew/hg", line 27, in <module>
mercurial.dispatch.run()
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 16, in run
sys.exit(dispatch(sys.argv[1:]))
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 30, in dispatch
return _runcatch(u, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 47, in _runcatch
return _dispatch(ui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 398, in _dispatch
cmd, func, args, options, cmdoptions = _parse(lui, args)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/dispatch.py", line 277, in _parse
args = fancyopts.fancyopts(args, c, cmdoptions, True)
File "/WEB-DOWN/hg-repo/hg-crew/mercurial/fancyopts.py", line 62, in fancyopts
for short, name, default, comment in options:
ValueError: too many values to unpack
1) Error:
test_nodes_in_branch(MercurialAdapterTest):
Redmine::Scm::Adapters::MercurialAdapter::HgCommandAborted: hg exited with non-zero status: 1
lib/redmine/scm/adapters/mercurial_adapter.rb:306:in `hg'
lib/redmine/scm/adapters/mercurial_adapter.rb:234:in `nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:311:in `test_nodes_in_branch'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `each'
test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb:304:in `test_nodes_in_branch'
</pre>
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7640 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-10-24 13:31:36 +04:00
|
|
|
'display with template')],
|
2011-03-13 03:47:47 +03:00
|
|
|
'hg rhlog [OPTION]... [FILE]'),
|
2011-02-15 14:04:30 +03:00
|
|
|
'rhmanifest': (rhmanifest,
|
|
|
|
[('r', 'rev', '', 'show the specified revision')],
|
|
|
|
'hg rhmanifest [-r REV] [PATH]'),
|
|
|
|
'rhsummary': (rhsummary, [], 'hg rhsummary'),
|
|
|
|
}
|