##// END OF EJS Templates
base-revsets: use an author that actually exercises a lot of changesets...
Raphaël Gomès -
r52499:55e7784e default
parent child Browse files
Show More
@@ -46,8 +46,8 b' p1()'
46 # Used in revision c1546d7400ef
46 # Used in revision c1546d7400ef
47 min(0::)
47 min(0::)
48 # Used in revision 546fa6576815
48 # Used in revision 546fa6576815
49 author(lmoscovicz) or author(olivia)
49 author(lmoscovicz) or author("pierre-yves")
50 author(olivia) or author(lmoscovicz)
50 author("pierre-yves") or author(lmoscovicz)
51 # Used in revision 9bfe68357c01
51 # Used in revision 9bfe68357c01
52 public() and id("d82e2223f132")
52 public() and id("d82e2223f132")
53 # Used in revision ba89f7b542c9
53 # Used in revision ba89f7b542c9
@@ -100,7 +100,7 b' draft()'
100 draft() and ::tip
100 draft() and ::tip
101 ::tip and draft()
101 ::tip and draft()
102 author(lmoscovicz)
102 author(lmoscovicz)
103 author(olivia)
103 author("pierre-yves")
104 ::p1(p1(tip))::
104 ::p1(p1(tip))::
105 public()
105 public()
106 :10000 and public()
106 :10000 and public()
@@ -130,7 +130,7 b' roots((:42) + (tip~42:))'
130 head()
130 head()
131 head() - public()
131 head() - public()
132 draft() and head()
132 draft() and head()
133 head() and author("olivia")
133 head() and author("pierre-yves")
134
134
135 # testing the mutable phases set
135 # testing the mutable phases set
136 draft()
136 draft()
@@ -25,9 +25,9 b' draft() and ::tip'
25 0::tip
25 0::tip
26 roots(0::tip)
26 roots(0::tip)
27 author(lmoscovicz)
27 author(lmoscovicz)
28 author(olivia)
28 author("pierre-yves")
29 author(lmoscovicz) or author(olivia)
29 author(lmoscovicz) or author("pierre-yves")
30 author(olivia) or author(lmoscovicz)
30 author("pierre-yves") or author(lmoscovicz)
31 tip:0
31 tip:0
32 0::
32 0::
33 # those two `roots(...)` inputs are close to what phase movement use.
33 # those two `roots(...)` inputs are close to what phase movement use.
General Comments 0
You need to be logged in to leave comments. Login now