mercurial/match.py
Sun, 14 Oct 2018 11:16:22 -0400 Augie Fackler match: fix up a repr to not crash on Python 3
Sat, 13 Oct 2018 00:22:05 -0700 Martin von Zweigbergk match: optimize matcher when all patterns are of rootfilesin kind
Fri, 17 Aug 2018 19:18:53 -0700 Kyle Lippincott match: improve includematcher.visitchildrenset to be much faster and cached
Fri, 24 Aug 2018 10:19:31 -0700 Kyle Lippincott match: make exactmatcher.visitchildrenset return file children as well
Thu, 23 Aug 2018 18:04:15 -0700 Kyle Lippincott match: document that visitchildrenset might return files
Wed, 08 Aug 2018 17:03:05 -0700 Kyle Lippincott match: add missing "return set()", add FIXME to test to doc a bug
Wed, 08 Aug 2018 16:53:17 -0700 Kyle Lippincott match: correct doc for _rootsdirsandparents after 5a7df82de142
Mon, 06 Aug 2018 12:52:33 -0700 spectral match: add visitchildrenset complement to visitdir
Mon, 06 Aug 2018 12:52:22 -0700 spectral includematcher: separate "parents" from "dirs"
Sat, 28 Jul 2018 16:36:35 +0900 Yuya Nishihara doctest: convert matcher root to native path stable
Sat, 09 Jun 2018 20:53:12 +0900 Yuya Nishihara fileset: restrict getfileset() to not return a computed set (API)
Sat, 09 Jun 2018 22:04:07 +0900 Yuya Nishihara match: add prefixdirmatcher to adapt subrepo matcher back
Tue, 12 Jun 2018 22:01:59 +0900 Yuya Nishihara match: remove ctx argument from code path down to _buildmatch()
Sun, 10 Jun 2018 16:08:58 +0900 Yuya Nishihara match: compose 'set:' pattern as matcher
Sun, 10 Jun 2018 15:52:27 +0900 Yuya Nishihara match: resolve 'set:' patterns first in _buildmatch()
Sun, 10 Jun 2018 15:47:58 +0900 Yuya Nishihara match: explode if unsupported pattern passed down to _regex() builder
Sat, 09 Jun 2018 21:13:24 +0900 Yuya Nishihara match: add basic wrapper for boolean function
Tue, 26 Jun 2018 10:36:23 -0400 Augie Fackler cleanup: migrate from re.escape to stringutil.reescape
Wed, 16 May 2018 07:58:02 +0530 Pulkit Goyal py3: use pycompat.bytestr() on bytes before %r-ing it
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Fri, 02 Mar 2018 00:37:55 -0500 Augie Fackler match: some minimal pycompat fixes guided by test-hgignore.t
Sun, 11 Feb 2018 16:17:17 +0530 Pulkit Goyal py3: make sure we return str from __repr__
Tue, 16 Jan 2018 22:14:33 +0900 Yuya Nishihara match: do not weirdly include explicit files excluded by -X option
Thu, 30 Nov 2017 22:32:13 +0900 Yuya Nishihara match: remove doc about undefined behavior of visitdir()
Sat, 30 Sep 2017 07:44:45 -0400 Augie Fackler match: remove superfluous pass statements
Sun, 03 Sep 2017 14:56:31 +0900 Yuya Nishihara doctest: use print_function and convert bytes to unicode where needed
Sun, 03 Sep 2017 14:32:11 +0900 Yuya Nishihara doctest: bulk-replace string literals with b'' for Python 3
Wed, 02 Aug 2017 15:48:57 -0700 Kostia Balytskyi match: expose some data and functionality to other modules
Wed, 19 Jul 2017 14:50:50 -0700 Martin von Zweigbergk match: override visitdir() in nevermatcher to return False stable
Tue, 11 Jul 2017 10:46:55 -0700 Martin von Zweigbergk match: remove unused negatematcher
Fri, 14 Jul 2017 10:57:36 -0700 Durham Goode match: make base matcher return True for visitdir
Tue, 11 Jul 2017 10:46:10 -0700 Martin von Zweigbergk match: make unionmatcher a proper matcher
Fri, 07 Jul 2017 14:39:59 -0700 Martin von Zweigbergk match: write forceincludematcher using unionmatcher
Tue, 11 Jul 2017 09:42:32 -0700 Martin von Zweigbergk match: inverse _anypats(), making it _prefix()
Fri, 07 Jul 2017 08:55:12 -0700 Martin von Zweigbergk match: override matchfn instead of __call__ for consistency
Sun, 09 Jul 2017 17:02:09 -0700 Martin von Zweigbergk match: express anypats(), not prefix(), in terms of the others
Sun, 09 Jul 2017 15:19:27 -0700 Martin von Zweigbergk match: make nevermatcher an exact matcher and a prefix matcher
Sun, 09 Jul 2017 23:01:11 -0700 Martin von Zweigbergk match: combine regex code for path: and relpath:
Sun, 09 Jul 2017 22:53:02 -0700 Martin von Zweigbergk match: remove unnecessary '^' from regexes
Thu, 06 Jul 2017 17:39:24 -0700 Gregory Szorc match: move matchers from sparse into core
Thu, 08 Jun 2017 22:49:21 -0700 Martin von Zweigbergk match: minor cleanups to patternmatcher and includematcher
Thu, 08 Jun 2017 22:18:17 -0700 Martin von Zweigbergk match: allow pats to be None
Thu, 01 Jun 2017 08:31:21 -0700 Martin von Zweigbergk match: simplify nevermatcher
Thu, 01 Jun 2017 00:40:52 -0700 Siddharth Agarwal match: introduce nevermatcher for when no ignore files are present
Fri, 19 May 2017 13:16:15 -0700 Martin von Zweigbergk match: remove special-casing of always-matching patterns in patternmatcher
Fri, 19 May 2017 12:47:45 -0700 Martin von Zweigbergk match: move normalize() call out of matcher constructors
Fri, 19 May 2017 11:58:16 -0700 Martin von Zweigbergk match: drop support for empty pattern list in patternmatcher
Sat, 20 May 2017 23:49:14 -0700 Martin von Zweigbergk match: optimize visitdir() for when no explicit files are listed
Fri, 19 May 2017 11:50:01 -0700 Martin von Zweigbergk match: handle everything-matching using new alwaysmatcher
Fri, 26 May 2017 13:08:30 -0700 Martin von Zweigbergk match: add __repr__ for subdirmatcher
Sun, 28 May 2017 23:54:31 +0900 Yuya Nishihara match: define exactmatcher.matchfn statically
Sun, 28 May 2017 23:51:30 +0900 Yuya Nishihara match: remove override of prefix() from differencematcher
Fri, 19 May 2017 11:44:05 -0700 Martin von Zweigbergk match: remove support for includes from patternmatcher
Mon, 22 May 2017 23:31:15 -0700 Martin von Zweigbergk match: simplify includematcher a bit
Fri, 19 May 2017 13:36:34 -0700 Martin von Zweigbergk match: remove support for non-include patterns from includematcher
Fri, 19 May 2017 22:36:14 -0700 Martin von Zweigbergk match: split up main matcher into patternmatcher and includematcher
Thu, 18 May 2017 23:39:39 -0700 Martin von Zweigbergk match: remove support for exact matching from main matcher class
Wed, 17 May 2017 09:26:15 -0700 Martin von Zweigbergk match: handle exact matching using new exactmatcher
Fri, 12 May 2017 23:12:05 -0700 Martin von Zweigbergk match: handle includes using new intersectionmatcher
Thu, 25 May 2017 14:32:56 -0700 Martin von Zweigbergk match: move entire uipath() implementation to basematcher
less more (0) -100 -60 tip