mercurial/scmutil.py
Sat, 14 Apr 2018 18:50:45 -0400 Matt Harbison scmutil: teach the file prefetch hook to handle multiple commits
Sat, 14 Apr 2018 00:13:08 -0700 Martin von Zweigbergk scmutil: make shortesthexnodeidprefix() take a full binary nodeid
Fri, 13 Apr 2018 10:36:03 -0700 Martin von Zweigbergk scmutil: make shortesthexnodeidprefix() use unfiltered repo
Fri, 13 Apr 2018 22:55:01 -0700 Martin von Zweigbergk scmutil: introduce shortesthexnodeidprefix()
Fri, 13 Apr 2018 11:00:30 -0700 Martin von Zweigbergk scmutil: use resolvehexnodeidprefix() from revsymbol()
Fri, 13 Apr 2018 22:46:37 -0700 Martin von Zweigbergk scmutil: rename resolvepartialhexnodeid() to resolvehexnodeidprefix()
Fri, 13 Apr 2018 09:48:22 -0700 Martin von Zweigbergk scmutil: document that isrevsymbol() raises on ambiguous node prefix
Sun, 08 Apr 2018 09:28:08 -0700 Martin von Zweigbergk revsymbol: stop delegating to repo.__getitem__ for unhandled symbols (API)
Sun, 08 Apr 2018 09:28:49 -0700 Martin von Zweigbergk context: handle partial nodeids in revsymbol()
Fri, 06 Apr 2018 23:46:17 -0700 Martin von Zweigbergk context: handle namespaces in revsymbol()
Fri, 06 Apr 2018 23:43:52 -0700 Martin von Zweigbergk scmutil: handle full hex nodeids in revsymbol()
Fri, 06 Apr 2018 23:39:40 -0700 Martin von Zweigbergk context: handle stringified ints in revsymbol()
Sun, 08 Apr 2018 08:06:34 -0700 Martin von Zweigbergk context: extract partial nodeid lookup method to scmutil
Sat, 07 Apr 2018 21:23:42 +0900 Yuya Nishihara procutil: make explainexit() simply return a message (API)
Thu, 05 Apr 2018 00:04:09 -0700 Martin von Zweigbergk context: move handling of filtering error to revsymbol() (API)
Wed, 04 Apr 2018 22:36:21 -0700 Martin von Zweigbergk extdatasource: use revsymbol() for converting to node
Sun, 01 Apr 2018 22:48:32 -0700 Martin von Zweigbergk revset: use revsymbol() for checking if a symbol is valid
Tue, 03 Apr 2018 22:24:50 +0900 Yuya Nishihara addremove: pass command-level similarity value down to scmutil.addremove()
Mon, 02 Apr 2018 16:18:33 -0700 Martin von Zweigbergk scmutil: add method for looking up a context given a revision symbol
Sat, 31 Mar 2018 23:49:58 +0530 Sushil khanchi addremove: remove dry_run, similarity from scmutil.addremove (API)
Sat, 31 Mar 2018 23:34:15 -0700 Martin von Zweigbergk scmutil: deprecate revpairnodes()
Sat, 31 Mar 2018 23:10:46 -0700 Martin von Zweigbergk scmutil: make revpair() return context objects (API)
Sat, 31 Mar 2018 23:37:25 -0700 Martin von Zweigbergk scmutil: introduce deprecated alias for revpair()
Sat, 24 Mar 2018 15:10:51 +0900 Yuya Nishihara procutil: bulk-replace function calls to point to new module
Sat, 24 Mar 2018 17:19:32 +0900 Yuya Nishihara directaccess: do not abort by 'ff...' hash
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Tue, 06 Mar 2018 07:24:12 -0600 Yuya Nishihara py3: drop b'' from debug message "moving bookmarks"
Sun, 04 Mar 2018 10:20:41 -0500 Augie Fackler scmutil: fix oversight in b76248e51605c6 where I forgot to use msg
Sat, 03 Mar 2018 17:08:05 -0500 Augie Fackler scmutil: avoid using basestring and add explicit handling of unicodes
Sat, 03 Mar 2018 15:41:12 -0500 Yuya Nishihara py3: accept both unicode and byte strings as filename carried by IOError
Sat, 03 Mar 2018 10:02:36 -0500 Yuya Nishihara py3: fix some unicode madness in global exception catcher
Fri, 02 Mar 2018 00:19:30 -0500 Augie Fackler scmutil: fix a repr in an error message on Python 3
Sun, 25 Feb 2018 23:08:41 -0500 Augie Fackler py3: hunt down str(exception) instances and use util.forcebytestr
Tue, 06 Feb 2018 08:48:05 -0800 Martin von Zweigbergk walkrepos: don't reimplement any()
Sun, 18 Feb 2018 14:37:36 -0500 Augie Fackler scmutil: fix requires-file isalnum() check on first byte
Sat, 17 Feb 2018 00:29:23 -0500 Augie Fackler scmutil: bytes-ify IOErrors before wrapping them in abort message
Mon, 12 Feb 2018 16:09:31 +0100 Boris Feld label: enforce the lack of leading or trailing white space
Sun, 11 Feb 2018 00:23:57 -0500 Matt Harbison cmdutil: convert the prefetchfiles() hook to a callback mechanism (API)
Mon, 05 Feb 2018 12:58:51 +0530 Pulkit Goyal py3: slice on bytes to prevent getting the ascii values
Sun, 21 Jan 2018 13:03:03 +0900 Yuya Nishihara cmdutil: drop aliases for logcmdutil functions (API)
Fri, 19 Jan 2018 11:35:55 -0800 Martin von Zweigbergk scmutil: 0-pad transaction report callback category
Sun, 14 Jan 2018 00:02:40 -0800 Martin von Zweigbergk evolution: make reporting of new unstable changesets optional
Sun, 14 Jan 2018 23:59:17 -0800 Martin von Zweigbergk evolution: report new unstable changesets
Tue, 26 Dec 2017 22:56:07 +0530 Pulkit Goyal scmutil: use a tuple of possible values instead of using startswith()
Fri, 15 Dec 2017 04:31:29 +0530 Pulkit Goyal scmutil: add utility fn to return repo object with user passed revs unhidden
Sun, 01 Oct 2017 12:21:50 +0100 Yuya Nishihara extdata: abort if external command exits with non-zero status (BC)
Fri, 08 Dec 2017 01:23:34 +0100 Joerg Sonnenberger transaction: build changes['revs'] as range instead of a set
Mon, 04 Dec 2017 09:39:37 +0100 Boris Feld scmutil: improve format pattern used in nodesummaries
Thu, 16 Nov 2017 03:52:42 +0100 Boris Feld server: introduce a 'experimental.single-head-per-branch' option
Thu, 16 Nov 2017 03:52:38 +0100 Boris Feld scmutil: extra utility to display a reasonable amount of nodes
Sun, 26 Nov 2017 14:59:39 -0500 Matt Harbison convert: allow the sink object to be wrapped when the extension isn't loaded
Fri, 24 Nov 2017 21:51:41 -0500 Boris Feld tr-summary: keep a weakref to the unfiltered repository stable
Fri, 03 Nov 2017 09:27:36 -0700 Mark Thomas scmutil: don't try to delete origbackup symlinks to directories (issue5731) stable
Wed, 04 Oct 2017 15:27:43 +0200 Denis Laxalde revset: extract a parsefollowlinespattern helper function
Sun, 15 Oct 2017 14:34:24 +0530 Pulkit Goyal scmutil: add capability to cleanupnodes to take obsmarker metadata
Mon, 16 Oct 2017 15:35:08 +0200 Denis Laxalde transaction-summary: use a revset to filter obsoletes in reportnewcs()
Thu, 12 Oct 2017 09:39:50 +0200 Denis Laxalde transaction-summary: show the range of new revisions upon pull/unbundle (BC)
Thu, 12 Oct 2017 23:30:46 -0700 Jun Wu codemod: use pycompat.iswindows
Wed, 04 Oct 2017 18:49:09 +0200 Denis Laxalde scmutil: factor out building of transaction summary callback
Sun, 01 Oct 2017 09:52:44 +0200 Denis Laxalde scmutil: factor out transaction name lookup in registersummarycallback()
less more (0) -300 -100 -60 tip