David Larlet is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againSearching for commits
Mercurial supports a functional language for selecting a set of revisions.
The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.
Identifiers such as branch names must be quoted with single
or double quotes if they contain characters outside of
[._a-zA-Z0-9\x80-\xff] or if they match one of the
predefined predicates.
Prefix operators
- not x
- Changesets not in x. Short form is
! x.
Infix operators
- x::y
-
A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to
ancestors(y), if the second is left out it is equivalent todescendants(x).An alternative syntax is
x..y. - x:y
- All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
- x and y
- The intersection of changesets in x and y. Short form is
x & y. - x or y
- The union of changesets in x and y. There are two alternative
short forms:
x | yandx + y. - x - y
- Changesets in x but not in y.
Predicates
- all()
- All changesets, the same as
0:tip. - ancestor(single, single)
- Greatest common ancestor of the two changesets.
- ancestors(set)
- Changesets that are ancestors of a changeset in set.
- author(string)
- Alias for
user(string). - bookmark([name])
- The named bookmark or all bookmarks.
- branch(set)
- All changesets belonging to the branches of changesets in set.
- children(set)
- Child changesets of changesets in set.
- closed()
- Changeset is closed.
- date(interval)
- Changesets within the interval, see
hg help dates. - descendants(set)
- Changesets which are descendants of changesets in set.
- file(pattern)
- Changesets affecting files matched by pattern.
- follow()
- An alias for
::.(ancestors of the working copy's first parent). - grep(regex)
- Like
keyword(string)but accepts a regex. Usegrep(r'...')to ensure special escape characters are handled correctly. - head()
- Changeset is a named branch head.
- heads(set)
- Members of set with no children in set.
- id(string)
- Revision non-ambiguously specified by the given hex string prefix.
- keyword(string)
- Search commit message, user name, and names of changed files for string.
- limit(set, n)
- First n members of set.
- max(set)
- Changeset with highest revision number in set.
- merge()
- Changeset is a merge changeset.
- min(set)
- Changeset with lowest revision number in set.
- p1([set])
- First parent of changesets in set, or the working directory.
- p2([set])
- Second parent of changesets in set, or the working directory.
- parents([set])
- The set of all parents for all changesets in set, or the working directory.
- present(set)
- An empty set, if any revision in set isn't found; otherwise, all revisions in set.
- rev(number)
- Revision with the given numeric identifier.
- roots(set)
- Changesets with no parent changeset in set.
- tag(name)
- The specified tag by name, or all tagged revisions if no name is given.
- user(string)
- User name is string.
Commits 1–30 of 42
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
127ac49785f6 |
Add Brent to authors, he deserves it. |
|
||
|
|
7cfbdd98dc7a |
Made a couple of changes to be backend compatible (works with registration's trunk), thanks @epicserve for the original work. |
|
||
|
"Brent O'Connor"
|
f5ae6a5247da |
Removed a comment |
|
||
|
"Brent O'Connor"
|
2b8486dce61d |
Made it so it now marks invites as being used when working with the master |
|
||
|
"Brent O'Connor"
|
062213aa6ad2 |
Added a message for users with no invites to the sample invitation_form.html template. |
|
||
|
Brent O'Connor
|
6669c78c3f24 |
Added the backend kwarg so that django-invitation works with django-registration. |
|
||
|
|
47bd9822f404 |
adding .mo file (compiled i18n messages) |
|
||
|
|
a321fdd7048e |
more translation |
|
||
|
|
2a690c73f2db |
improved templates and documentation |
|
||
|
|
10fefc007603 |
added german translation for templates |
|
||
|
|
ea317835146d |
added translateable default templates |
|
||
|
|
676040ac8a9c |
Using dir(settings) rather than settings.get_all_members(). Needed for Django 1.2. |
|
||
|
|
ed9e4d6b9c53 |
Better assertRedirect. |
|
||
|
|
d39771a4f5e3 |
Added InviteModeOffTests -- tests for INVITE_MODE = False |
|
||
|
|
9abce3cf31f9 |
Created utility test method assertRedirect. |
|
||
|
|
be8229c1326b |
remaining_invitations_for_user creates InvitationUser if it does not exist. |
|
||
|
|
7b31544810e9 |
Cleaned up some test code docstrings and method names. |
|
||
|
|
e1970713482d |
Documentation tweaks. |
|
||
|
|
d8d314bf7954 |
Including invitation_key in extra_context even when key is invalid. |
|
||
|
|
8d2a11dc6129 |
Added InvitationUser model to support explicit per-user invitations_remaining. |
|
||
|
|
b2977a099938 |
Stores registrant with InvitationKey, and uses it to prevent key reuse. |
|
||
|
|
e5a394941120 |
added failing test for ticket 3: reusing invitation key |
|
||
|
|
eac949f5536e |
Backward incompatible change: now the 'invitation_key' var passed to 'invitation_email.txt' context (from InvitationKey.send_to) is an InvitationKey instance and not the key string in itself anymore. It allows you to retrieve other attributes from the instance (e.g. from_user). |
|
||
|
|
c6c7fc55d55d |
Yet another bug spoted by Zebuline, thanks |
|
||
|
|
40881e327fe8 |
Typo in documentation, thanks Zebuline |
|
||
|
|
2ee1be485e41 |
Refactoring, consistency and extra_context for all views, thanks Zebuline |
|
||
|
|
343ccff7a4df |
Fixes |
|
||
|
|
2c779a2dd41a |
invitation.views.invite requires remaining_invitations > 0 to send invitation. |
|
||
|
|
19027bb758cf |
Added currently failing test that requires server-side check of remaining_invitations |
|
||
|
|
797ed1fbe4e8 |
Using TestCase.assertTemplateUsed rather than assertEqual on response.template.name. |
|