##// END OF EJS Templates
hgweb: remove dead code handling UnicodeDecodeError...
hgweb: remove dead code handling UnicodeDecodeError I’m quite confident that the error can’t happen on Python 3, as the main motivation for separating bytes and str in Python 3 was to avoid this class of errors.

File last commit:

r49768:f254fc73 default
r50178:44b26349 default
Show More
hgk.py
385 lines | 11.8 KiB | text/x-python | PythonLexer
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 # Minimal support for git commands on an hg repository
#
Vadim Gelfer
update copyrights.
r2859 # Copyright 2005, 2006 Chris Mason <mason@suse.com>
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 #
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Martin Geisler
add blank line after copyright notices and after header
r8228
Cédric Duval
extensions: improve the consistency of synopses...
r8894 '''browse the repository in a graphical way
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
Martin Geisler
hgk: wrap docstrings at 70 characters
r9261 The hgk extension allows browsing the history of a repository in a
graphical way. It requires Tcl/Tk version 8.4 or later. (Tcl/Tk is not
distributed with Mercurial.)
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
Martin Geisler
hgk: wrap docstrings at 70 characters
r9261 hgk consists of two parts: a Tcl script that does the displaying and
querying of information, and an extension to Mercurial named hgk.py,
which provides hooks for hgk to get information. hgk can be found in
the contrib directory, and the extension is shipped in the hgext
repository, and needs to be enabled.
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
Martin Geisler
Use our custom hg reStructuredText role some more...
r11193 The :hg:`view` command will launch the hgk Tcl script. For this command
Martin Geisler
hgk: wrap docstrings at 70 characters
r9261 to work, hgk must be in your search path. Alternately, you can specify
Brodie Rao
help: refer to user configuration file more consistently...
r12083 the path to hgk in your configuration file::
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
[hgk]
Matt Mackall
hgk: tweak doc format for path option...
r25793 path = /location/of/hgk
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
Martin Geisler
hgk: wrap docstrings at 70 characters
r9261 hgk can make use of the extdiff extension to visualize revisions.
Assuming you had already configured extdiff vdiff command, just add::
Dirkjan Ochtman
convert comments to docstrings in a bunch of extensions
r6666
[hgk]
vdiff=vdiff
Martin Geisler
hgk: wrap docstrings at 70 characters
r9261 Revisions context menu will now display additional entries to fire
vdiff on hovered and selected revisions.
Martin Geisler
hgk: wrapped docstrings at 78 characters
r9063 '''
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Pulkit Goyal
py3: make hgext/hgk.py use absolute_import
r29125
Matt Mackall
transform a bunch of print statements to appropriate ui calls
r5878 import os
Yuya Nishihara
py3: move up symbol imports to enforce import-checker rules...
r29205
from mercurial.i18n import _
from mercurial.node import (
nullrev,
short,
)
Pulkit Goyal
py3: make hgext/hgk.py use absolute_import
r29125 from mercurial import (
commands,
obsolete,
patch,
Pulkit Goyal
py3: handle keyword arguments in hgext/hgk.py...
r34999 pycompat,
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 registrar,
Pulkit Goyal
py3: make hgext/hgk.py use absolute_import
r29125 scmutil,
)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Gregory Szorc
hgk: declare commands using decorator
r21250 cmdtable = {}
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 command = registrar.command(cmdtable)
Augie Fackler
extensions: change magic "shipped with hg" string...
r29841 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
Augie Fackler
extensions: document that `testedwith = 'internal'` is special...
r25186 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 testedwith = b'ships-with-hg-core'
Augie Fackler
hgext: mark all first-party extensions as such
r16743
Boris Feld
configitems: register the 'hgk.path' config
r34500 configtable = {}
configitem = registrar.configitem(configtable)
Augie Fackler
formatting: blacken the codebase...
r43346 configitem(
Augie Fackler
formating: upgrade to black 20.8b1...
r46554 b'hgk',
b'path',
default=b'hgk',
Boris Feld
configitems: register the 'hgk.path' config
r34500 )
Augie Fackler
formatting: blacken the codebase...
r43346
@command(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'debug-diff-tree',
Augie Fackler
formatting: blacken the codebase...
r43346 [
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 (b'p', b'patch', None, _(b'generate patch')),
(b'r', b'recursive', None, _(b'recursive')),
(b'P', b'pretty', None, _(b'pretty')),
(b's', b'stdin', None, _(b'stdin')),
(b'C', b'copy', None, _(b'detect copies')),
(b'S', b'search', b"", _(b'search')),
Augie Fackler
formatting: blacken the codebase...
r43346 ],
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'[OPTION]... NODE1 NODE2 [FILE]...',
Augie Fackler
formatting: blacken the codebase...
r43346 inferrepo=True,
)
Benoit Boissinot
hgk.py: add an optional file list to debug-diff-tree...
r3063 def difftree(ui, repo, node1=None, node2=None, *files, **opts):
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 """diff trees from two commits"""
Pulkit Goyal
py3: handle keyword arguments in hgext/hgk.py...
r34999
Pierre-Yves David
hgk: don't use mutable default argument value...
r31409 def __difftree(repo, node1, node2, files=None):
Benoit Boissinot
hgk: remove unused code, node2 is always set
r3978 assert node2 is not None
Pierre-Yves David
hgk: don't use mutable default argument value...
r31409 if files is None:
files = []
Matt Mackall
use repo[changeid] to get a changectx
r6747 mmap = repo[node1].manifest()
mmap2 = repo[node2].manifest()
Matt Mackall
scmutil: switch match users to supplying contexts...
r14671 m = scmutil.match(repo[node1], files)
Augie Fackler
hgk: use field names instead of field numbers on scmutil.status...
r44038 st = repo.status(node1, node2, m)
Joerg Sonnenberger
node: replace nullid and friends with nodeconstants class...
r47771 empty = short(repo.nullid)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Augie Fackler
hgk: use field names instead of field numbers on scmutil.status...
r44038 for f in st.modified:
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 # TODO get file permissions
Augie Fackler
cleanup: mark some ui.(status|note|warn|write) calls as not needing i18n...
r43350 ui.writenoi18n(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b":100664 100664 %s %s M\t%s\t%s\n"
Augie Fackler
formatting: blacken the codebase...
r43346 % (short(mmap[f]), short(mmap2[f]), f, f)
)
Augie Fackler
hgk: use field names instead of field numbers on scmutil.status...
r44038 for f in st.added:
Augie Fackler
cleanup: mark some ui.(status|note|warn|write) calls as not needing i18n...
r43350 ui.writenoi18n(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b":000000 100664 %s %s N\t%s\t%s\n"
Augie Fackler
formatting: blacken the codebase...
r43346 % (empty, short(mmap2[f]), f, f)
)
Augie Fackler
hgk: use field names instead of field numbers on scmutil.status...
r44038 for f in st.removed:
Augie Fackler
cleanup: mark some ui.(status|note|warn|write) calls as not needing i18n...
r43350 ui.writenoi18n(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b":100664 000000 %s %s D\t%s\t%s\n"
Augie Fackler
formatting: blacken the codebase...
r43346 % (short(mmap[f]), empty, f, f)
)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 ##
while True:
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 if opts['stdin']:
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 line = ui.fin.readline()
if not line:
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 break
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 line = line.rstrip(pycompat.oslinesep).split(b' ')
node1 = line[0]
if len(line) > 1:
node2 = line[1]
else:
node2 = None
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 node1 = repo.lookup(node1)
if node2:
node2 = repo.lookup(node2)
else:
node2 = node1
node1 = repo.changelog.parents(node1)[0]
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 if opts['patch']:
if opts['pretty']:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 catcommit(ui, repo, node2, b"")
Matt Mackall
scmutil: switch match users to supplying contexts...
r14671 m = scmutil.match(repo[node1], files)
Siddharth Agarwal
hgk: don't honor whitespace and format-changing diffopts...
r23451 diffopts = patch.difffeatureopts(ui)
diffopts.git = True
Augie Fackler
formatting: blacken the codebase...
r43346 chunks = patch.diff(repo, node1, node2, match=m, opts=diffopts)
Dirkjan Ochtman
patch: turn patch.diff() into a generator...
r7308 for chunk in chunks:
Martin Geisler
use ui instead of repo.ui when the former is in scope
r8615 ui.write(chunk)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
Benoit Boissinot
hgk.py: add an optional file list to debug-diff-tree...
r3063 __difftree(repo, node1, node2, files=files)
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 if not opts['stdin']:
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 break
Augie Fackler
formatting: blacken the codebase...
r43346
Matt Mackall
transform a bunch of print statements to appropriate ui calls
r5878 def catcommit(ui, repo, n, prefix, ctx=None):
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 nlprefix = b'\n' + prefix
Benoit Boissinot
hgk: use contexts
r3979 if ctx is None:
Matt Mackall
use repo[changeid] to get a changectx
r6747 ctx = repo[n]
Brodie Rao
cleanup: eradicate long lines
r16683 # use ctx.node() instead ??
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write((b"tree %s\n" % short(ctx.changeset()[0])))
Matt Mackall
hgk: fix parent breakage
r6768 for p in ctx.parents():
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write((b"parent %s\n" % p))
Matt Mackall
hgk: fix parent breakage
r6768
Benoit Boissinot
hgk: use contexts
r3979 date = ctx.date()
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 description = ctx.description().replace(b"\0", b"")
ui.write((b"author %s %d %d\n" % (ctx.user(), int(date[0]), date[1])))
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if b'committer' in ctx.extra():
ui.write((b"committer %s\n" % ctx.extra()[b'committer']))
Andrew Shadura
hgk: display committer name when set by hg-git
r24604
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write((b"revision %d\n" % ctx.rev()))
ui.write((b"branch %s\n" % ctx.branch()))
Andrew Shadura
hgk: display obsolete changesets in darkgrey
r24513 if obsolete.isenabled(repo, obsolete.createmarkersopt):
if ctx.obsolete():
Augie Fackler
cleanup: mark some ui.(status|note|warn|write) calls as not needing i18n...
r43350 ui.writenoi18n(b"obsolete\n")
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write((b"phase %s\n\n" % ctx.phasestr()))
Matt Mackall
transform a bunch of print statements to appropriate ui calls
r5878
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if prefix != b"":
Augie Fackler
formatting: blacken the codebase...
r43346 ui.write(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b"%s%s\n" % (prefix, description.replace(b'\n', nlprefix).strip())
Augie Fackler
formatting: blacken the codebase...
r43346 )
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(description + b"\n")
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if prefix:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(b'\0')
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 @command(b'debug-merge-base', [], _(b'REV REV'))
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 def base(ui, repo, node1, node2):
Martin Geisler
lowercase help output...
r7598 """output common ancestor information"""
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 node1 = repo.lookup(node1)
node2 = repo.lookup(node2)
n = repo.changelog.ancestor(node1, node2)
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(short(n) + b"\n")
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Augie Fackler
formatting: blacken the codebase...
r43346
@command(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'debug-cat-file',
[(b's', b'stdin', None, _(b'stdin'))],
_(b'[OPTION]... TYPE FILE'),
Augie Fackler
formatting: blacken the codebase...
r43346 inferrepo=True,
)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 def catfile(ui, repo, type=None, r=None, **opts):
"""cat a specific revision"""
# in stdin mode, every line except the commit is prefixed with two
# spaces. This way the our caller can find the commit without magic
# strings
#
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 prefix = b""
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 if opts['stdin']:
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 line = ui.fin.readline()
if not line:
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 return
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 (type, r) = line.rstrip(pycompat.oslinesep).split(b' ')
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 prefix = b" "
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
if not type or not r:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.warn(_(b"cat-file: type or revision not supplied\n"))
commands.help_(ui, b'cat-file')
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
while r:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if type != b"commit":
ui.warn(_(b"aborting hg cat-file only understands commits\n"))
Benoit Boissinot
fix coding style (reported by pylint)
r10394 return 1
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 n = repo.lookup(r)
Matt Mackall
transform a bunch of print statements to appropriate ui calls
r5878 catcommit(ui, repo, n, prefix)
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 if opts['stdin']:
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 line = ui.fin.readline()
if not line:
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 break
Yuya Nishihara
hgk: stop using util.bytesinput() to read a single line from stdin...
r36808 (type, r) = line.rstrip(pycompat.oslinesep).split(b' ')
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
break
Augie Fackler
formatting: blacken the codebase...
r43346
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 # git rev-tree is a confusing thing. You can supply a number of
# commit sha1s on the command line, and it walks the commit history
# telling you which commits are reachable from the supplied ones via
# a bitmask based on arg position.
# you can specify a commit to stop at by starting the sha1 with ^
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 def revtree(ui, args, repo, full=b"tree", maxnr=0, parents=False):
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 def chlogwalk():
Matt Mackall
add __len__ and __iter__ methods to repo and revlog
r6750 count = len(repo)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 i = count
l = [0] * 100
chunk = 100
while True:
if chunk > i:
chunk = i
i = 0
else:
i -= chunk
Gregory Szorc
global: use pycompat.xrange()...
r38806 for x in pycompat.xrange(chunk):
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if i + x >= count:
Augie Fackler
formatting: blacken the codebase...
r43346 l[chunk - x :] = [0] * (chunk - x)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 break
Martin Geisler
code style: prefer 'is' and 'is not' tests with singletons
r13031 if full is not None:
Andrew Shadura
hgk: don't break on repositories with obsolete changesets...
r22580 if (i + x) in repo:
l[x] = repo[i + x]
Augie Fackler
formatting: blacken the codebase...
r43346 l[x].changeset() # force reading
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
Andrew Shadura
hgk: don't break on repositories with obsolete changesets...
r22580 if (i + x) in repo:
l[x] = 1
Gregory Szorc
global: use pycompat.xrange()...
r38806 for x in pycompat.xrange(chunk - 1, -1, -1):
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if l[x] != 0:
Martin Geisler
code style: prefer 'is' and 'is not' tests with singletons
r13031 yield (i + x, full is not None and l[x] or None)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if i == 0:
break
# calculate and return the reachability bitmask for sha
def is_reachable(ar, reachable, sha):
if len(ar) == 0:
return 1
mask = 0
Gregory Szorc
global: use pycompat.xrange()...
r38806 for i in pycompat.xrange(len(ar)):
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if sha in reachable[i]:
mask |= 1 << i
return mask
reachable = []
stop_sha1 = []
want_sha1 = []
count = 0
# figure out which commits they are asking for and which ones they
# want us to stop on
Martin Geisler
replace "i in range(len(xs))" with "i, x in enumerate(xs)"...
r8632 for i, arg in enumerate(args):
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if arg.startswith(b'^'):
Martin Geisler
replace "i in range(len(xs))" with "i, x in enumerate(xs)"...
r8632 s = repo.lookup(arg[1:])
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 stop_sha1.append(s)
want_sha1.append(s)
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 elif arg != b'HEAD':
Martin Geisler
replace "i in range(len(xs))" with "i, x in enumerate(xs)"...
r8632 want_sha1.append(repo.lookup(arg))
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
# calculate the graph for the supplied commits
Martin Geisler
replace "i in range(len(xs))" with "i, x in enumerate(xs)"...
r8632 for i, n in enumerate(want_sha1):
Benoit Boissinot
fix coding style (reported by pylint)
r10394 reachable.append(set())
visit = [n]
Benoit Boissinot
hgk: use set instead of dict
r8459 reachable[i].add(n)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 while visit:
n = visit.pop(0)
if n in stop_sha1:
continue
for p in repo.changelog.parents(n):
if p not in reachable[i]:
Benoit Boissinot
hgk: use set instead of dict
r8459 reachable[i].add(p)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 visit.append(p)
if p in stop_sha1:
continue
# walk the repository looking for commits that are in our
# reachability graph
Benoit Boissinot
hgk: use contexts
r3979 for i, ctx in chlogwalk():
Andrew Shadura
hgk: don't break on repositories with obsolete changesets...
r22580 if i not in repo:
continue
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 n = repo.changelog.node(i)
mask = is_reachable(want_sha1, reachable, n)
if mask:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 parentstr = b""
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if parents:
pp = repo.changelog.parents(n)
Joerg Sonnenberger
node: replace nullid and friends with nodeconstants class...
r47771 if pp[0] != repo.nullid:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 parentstr += b" " + short(pp[0])
Joerg Sonnenberger
node: replace nullid and friends with nodeconstants class...
r47771 if pp[1] != repo.nullid:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 parentstr += b" " + short(pp[1])
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if not full:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(b"%s%s\n" % (short(n), parentstr))
elif full == b"commit":
ui.write(b"%s%s\n" % (short(n), parentstr))
catcommit(ui, repo, n, b' ', ctx)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
(p1, p2) = repo.changelog.parents(n)
Joel Rosdahl
Avoid importing mercurial.node/mercurial.repo stuff from mercurial.hg
r6217 (h, h1, h2) = map(short, (n, p1, p2))
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 (i1, i2) = map(repo.changelog.rev, (p1, p2))
Benoit Boissinot
hgk: use contexts
r3979 date = ctx.date()[0]
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(b"%s %s:%s" % (date, h, mask))
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 mask = is_reachable(want_sha1, reachable, p1)
Joel Rosdahl
Avoid importing mercurial.node/mercurial.repo stuff from mercurial.hg
r6217 if i1 != nullrev and mask > 0:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(b"%s:%s " % (h1, mask)),
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 mask = is_reachable(want_sha1, reachable, p2)
Joel Rosdahl
Avoid importing mercurial.node/mercurial.repo stuff from mercurial.hg
r6217 if i2 != nullrev and mask > 0:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(b"%s:%s " % (h2, mask))
ui.write(b"\n")
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 if maxnr and count >= maxnr:
break
count += 1
Augie Fackler
formatting: blacken the codebase...
r43346
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 # git rev-list tries to order things by date, and has the ability to stop
# at a given commit without walking the whole repo. TODO add the stop
# parameter
Augie Fackler
formatting: blacken the codebase...
r43346 @command(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'debug-rev-list',
Augie Fackler
formatting: blacken the codebase...
r43346 [
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 (b'H', b'header', None, _(b'header')),
(b't', b'topo-order', None, _(b'topo-order')),
(b'p', b'parents', None, _(b'parents')),
(b'n', b'max-count', 0, _(b'max-count')),
Augie Fackler
formatting: blacken the codebase...
r43346 ],
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'[OPTION]... REV...',
Augie Fackler
formatting: blacken the codebase...
r43346 )
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 def revlist(ui, repo, *revs, **opts):
"""print revisions"""
Kyle Lippincott
hgk: remove a "b" used on a kwargs expansion, the keys are strs...
r45167 if opts['header']:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 full = b"commit"
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 else:
full = None
copy = [x for x in revs]
Augie Fackler
cleanup: remove pointless r-prefixes on single-quoted strings...
r43906 revtree(ui, copy, repo, full, opts['max_count'], opts[r'parents'])
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432
Augie Fackler
formatting: blacken the codebase...
r43346
@command(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'view',
[(b'l', b'limit', b'', _(b'limit number of changes displayed'), _(b'NUM'))],
_(b'[-l LIMIT] [REVRANGE]'),
Augie Fackler
formatting: blacken the codebase...
r43346 helpcategory=command.CATEGORY_CHANGE_NAVIGATION,
)
Brendan Cully
hgk: add --limit, and revranges
r3093 def view(ui, repo, *etc, **opts):
Matt Harbison
cleanup: fix docstring formatting...
r44226 """start interactive history viewer"""
Pulkit Goyal
py3: handle keyword arguments in hgext/hgk.py...
r34999 opts = pycompat.byteskwargs(opts)
Vadim Gelfer
move hgk.py into hgext. now to enable "hg view" is one less step....
r2432 os.chdir(repo.root)
Gregory Szorc
global: bulk replace simple pycompat.iteritems(x) with x.items()...
r49768 optstr = b' '.join([b'--%s %s' % (k, v) for k, v in opts.items() if v])
Andrew Shadura
hgk: pass --hidden switch to hg subprocesses when needed
r24512 if repo.filtername is None:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 optstr += b'--hidden'
Andrew Shadura
hgk: pass --hidden switch to hg subprocesses when needed
r24512
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 cmd = ui.config(b"hgk", b"path") + b" %s %s" % (optstr, b" ".join(etc))
ui.debug(b"running %s\n" % cmd)
ui.system(cmd, blockedtag=b'hgk_view')