tests/test-revset.t
Sat, 10 Jun 2017 19:41:42 +0900 Yuya Nishihara revset: filter first/last members by __and__ operation
Sat, 10 Jun 2017 18:35:11 +0900 Yuya Nishihara revset: reject negative number to select first/last n members
Sat, 10 Jun 2017 18:04:56 +0900 Yuya Nishihara revset: fix order of last() n members where n > 1 (BC)
Sat, 27 May 2017 10:25:09 -0700 David Soria Parra revset: lookup descendents for negative arguments to ancestor operator
Fri, 19 Aug 2016 18:26:04 +0900 Yuya Nishihara revlog: add support for partial matching of wdir node id
Sat, 20 Aug 2016 18:15:19 +0900 Yuya Nishihara revset: add support for branch(wdir()) and wdir() & branch()
Sat, 03 Jun 2017 20:39:33 +0900 Yuya Nishihara revset: add support for integer and hex wdir identifiers
Wed, 24 May 2017 17:50:17 +0200 Boris Feld util: raise ParseError when parsing dates (BC)
Tue, 23 May 2017 01:22:33 +0530 Pulkit Goyal revset: add support for ancestors(wdir())
Tue, 23 May 2017 01:08:19 +0530 Pulkit Goyal revset: add support for using ~ operator on wdir() predicate
Mon, 22 May 2017 02:14:22 +0530 Pulkit Goyal revset: add support for p2(wdir()) to get second parent of working directory
Mon, 22 May 2017 01:35:53 +0530 Pulkit Goyal tests: add tests for predicates and operators which works with wdir()
Mon, 22 May 2017 01:01:45 +0530 Pulkit Goyal revset: add support for "wdir()^n"
Fri, 19 May 2017 20:06:45 +0530 Pulkit Goyal revset: make `hg log -r 'wdir()^'` work (issue4905)
Sat, 09 Jan 2016 23:07:20 +0900 Yuya Nishihara registrar: move cmdutil.command to registrar module (API)
Sat, 08 Apr 2017 20:07:37 +0900 Yuya Nishihara parser: verify excessive number of args excluding kwargs in buildargsdict()
Sat, 14 May 2016 20:51:57 +0900 Yuya Nishihara revsetlang: enable optimization of 'x + y' expression
Sun, 19 Feb 2017 18:19:33 +0900 Yuya Nishihara revset: split language services to revsetlang module (API)
Sun, 16 Oct 2016 17:28:51 +0900 Yuya Nishihara smartset: move set classes and related functions from revset module (API)
Mon, 09 Jan 2017 16:55:56 +0900 Yuya Nishihara revset: do not transform range* operators in parsed tree
Sat, 07 Jan 2017 21:26:32 -0500 Matt Harbison revset: add regular expression support to 'desc'
Wed, 11 Jan 2017 22:42:10 -0500 Matt Harbison revset: stop lowercasing the regex pattern for 'author'
Thu, 05 Jan 2017 22:53:42 +0900 Yuya Nishihara revset: document wdir() as an experimental function
Sat, 23 May 2015 11:04:11 +0900 Yuya Nishihara revset: make children() not look at p2 if null (issue5439)
Mon, 17 Oct 2016 23:16:55 +0200 Mads Kiilerich spelling: fixes of non-dictionary words
Fri, 14 Oct 2016 23:33:00 +0900 Yuya Nishihara revset: for x^2, do not take null as a valid p2 revision
Sat, 01 Oct 2016 20:20:11 +0900 Yuya Nishihara revset: do not rewrite ':y' to '0:y' (issue5385)
Tue, 03 May 2016 13:36:12 +0900 Yuya Nishihara revset: make sort() noop depending on ordering requirement (BC)
Tue, 03 May 2016 13:36:12 +0900 Yuya Nishihara revset: make reverse() noop depending on ordering requirement (BC)
Tue, 03 May 2016 12:52:50 +0900 Yuya Nishihara revset: fix order of nested 'range' expression (BC)
Wed, 01 Jun 2016 20:54:04 +0900 Yuya Nishihara revset: forward ordering requirement to argument of present()
Sun, 26 Jun 2016 18:41:28 +0900 Yuya Nishihara revset: fix order of nested '_(|int|hex)list' expression (BC)
Sun, 26 Jun 2016 18:17:12 +0900 Yuya Nishihara revset: fix order of nested 'or' expression (BC)
Sun, 07 Aug 2016 17:46:12 +0900 Yuya Nishihara revset: pass around ordering flags to operations
Sun, 07 Aug 2016 17:04:05 +0900 Yuya Nishihara revset: wrap arguments of 'or' by 'list' node
Sun, 21 Aug 2016 13:16:21 +0900 Yuya Nishihara debugrevspec: add option to verify optimized result
Sun, 21 Aug 2016 12:40:02 +0900 Yuya Nishihara debugrevspec: add option to skip optimize() and evaluate unoptimized tree
Sun, 21 Aug 2016 12:33:57 +0900 Yuya Nishihara debugrevspec: add option to print parsed tree at given stages
Sun, 21 Aug 2016 11:29:57 +0900 Yuya Nishihara revset: make analyze() a separate step from optimize()
Mon, 15 Aug 2016 12:26:02 -0400 Augie Fackler merge with stable
Sat, 06 Aug 2016 20:37:48 +0900 Yuya Nishihara revset: also parse x^: as (x^):
Sat, 06 Aug 2016 20:21:00 +0900 Yuya Nishihara revset: resolve ambiguity of x^:y before alias expansion
Sat, 06 Aug 2016 19:59:28 +0900 Yuya Nishihara revset: add test for resolution of infix/suffix ambiguity of x^:y
Sun, 07 Aug 2016 14:58:49 +0900 Yuya Nishihara revset: fix keyword arguments to go through optimization process stable
Mon, 27 Jun 2016 20:44:14 +0900 Yuya Nishihara revset: check invalid function syntax "func-name"() explicitly
Thu, 23 Jun 2016 12:37:09 -0700 Martin von Zweigbergk revset: make head() honor order of subset
Wed, 22 Jun 2016 22:02:25 +0900 Yuya Nishihara test-revset: show how inconsistent the ordering of compound expressions is
Wed, 15 Jun 2016 20:37:24 +0900 Yuya Nishihara revset: fix crash on empty sort key
Mon, 13 Jun 2016 18:20:00 +0100 Martijn Pieters revset: add new topographical sort
Fri, 03 Jun 2016 21:49:26 +0900 Yuya Nishihara test-revset: fix test vector for ordering issue of matching()
Sat, 14 May 2016 19:46:18 +0900 Yuya Nishihara revset: factor out reverse flag of sort() key
Tue, 03 May 2016 12:36:44 +0900 Yuya Nishihara revset: make dagrange preserve order of input set
Sun, 17 Apr 2016 12:31:06 +0900 Yuya Nishihara parser: shorten prefix of alias parsing errors
Sun, 17 Apr 2016 12:20:57 +0900 Yuya Nishihara parser: rephrase "'$' not for alias arguments" message
Sat, 23 Apr 2016 16:09:30 +0900 Yuya Nishihara revset: make sort() do dumb multi-pass sorting for multiple keys (issue5218) stable
Mon, 04 Apr 2016 17:45:15 -0700 Pierre-Yves David revset: stabilize repr of baseset initialized with a set
Sun, 14 Feb 2016 20:27:08 +0900 Yuya Nishihara revset: drop redundant check for unknown alias arguments
Sun, 14 Feb 2016 19:48:33 +0900 Yuya Nishihara revset: move tagging of alias arguments from tokenization to parsing phase
Sun, 14 Feb 2016 21:46:50 +0900 Yuya Nishihara revset: add test that should fail if '_aliasarg' tag is removed
Sat, 26 Mar 2016 19:01:12 +0900 Yuya Nishihara debugrevspec: show expanded/concatenated states before printing trees
less more (0) -100 -60 tip