Dan Buch is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

meatballhat / HgCRecord (fork of edgimar / crecord)

my fork of the crecord mercurial extension

Clone this repository (size: 149.9 KB): HTTPS / SSH
hg clone https://bitbucket.org/meatballhat/hgcrecord
hg clone ssh://hg@bitbucket.org/meatballhat/hgcrecord

Searching 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 to descendants(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 | y and x + 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. Use grep(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 70

Author Revision Comments Message Labels Date
Dan Buch 02fcbece918d incrementing version since the namespacing of the thing was fairly invasive
Dan Buch 8d78224db433 closing out old dev head (when dist-i-fying with paver)
Dan Buch 9eb03b1be228 making relative imports absolute to reduce risk of name collisions, other badness (plus it's the way of the future)
Dan Buch de3ce1bec486 creating an `hgext` namespace package and moving `crecord` into it
Dan Buch 26541d7377cc TRIVIAL: adding an .hgignore file to ignore .pyc files
Dan Buch 59874ae39512 adding a more traditional setup.py for distribution
Christian Ebert 7ef671d7d75d Support keyword expansion with crecord and qcrecord
Christian Ebert ee97b8215eaa Move user commands back to __init__
edgimar edc42ee97c41 - handle encodings other than ASCII / UTF-8 gracefully -- if a string can't be
Christian Ebert 648a08c398a1 Avoid fake conflicts due to keyword expansion
Christian Ebert 69718b21b5bb Function variable naming and signature cleanup
edgimar a77a8002662f - add ability to review / edit patch prior to committing
edgimar ea893a572965 - clean up some extraneous import statements
Christian Ebert 03f6f5a3ffad Promote qnew as in 301633755dec
Greg Ward 0a2eebee219c Change import style to allow demandimport to do its thing.
Dan Buch 1fefa8194c6c making easy_install-friendly
edgimar fc29a1d8901f Display ctrl characters in ^[char] notation to avoid them messing up the display
Daniel Beck 22a8bc9f4fd8 bugfix: filterpatch requires three arguments
edgimar c0e5e65165c1 crecord: bugfix - confirmation prompt was not appearing when 'c' was pressed for the first time
edgimar df8d9afdaf2c - fix crash caused when editing large commit-text lines (required modifying textpad)
edgimar a8f5ac16cf16 crecord: update number of lines in chunk-pad upon resize
edgimar 6c09bfa94396 crecord: fix resizing of main window to work better, and remove initscr()
edgimar 0e36e278bc62 crecord: use getkey() method instead of getch() in main loop. Also call as
edgimar 7f54a33a69d3 crecord: remove debugging lines
edgimar 946b2961c490 crecord: small improvements of code related to encoding
edgimar 88dcdf9fc50c crecord: modify to permit use of either encoding or util module (prevents problems with older mercurial versions)
Greg Ward 3da2e3be7333 crecord: adjust to refactoring of util (use encoding module)
edgimar 2af4836f6d61 crecord: modify left-arrow behavior slightly -- first tries to fold if node is foldable
edgimar 032bba868ec0 - split things up into different files -- still runs... ;)
edgimar 33ae101d3887 crecord: use a python package directory in order to begin refactoring into multiple-files
  1. 1
  2. 2
  3. 3
  4. »