Erik Grinaker 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

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.0 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

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 511–540 of 580

Author Revision Comments Message Labels Date
Erik Grinaker c8cf337f7fa4 added a search toolbar
Erik Grinaker 3e7822789625 minor code tweaks
Erik Grinaker 9d7e2482d907 added handler for KeyboardInterrupt
Erik Grinaker 51f801ba546f added initial launcher support
Erik Grinaker 936d7e85c4eb added config_get() and config_connect() functions
Erik Grinaker b9ee81c1ceaf fixed a bug causing entry descriptions not to be set when adding/updating entries
Erik Grinaker 96a566d69e06 display unhandled exceptions in a dialog
Erik Grinaker 02fc1b2867d4 removed loading of druid module, and bumped version to 0.3.2
Tag
revelation-0.3.2
Erik Grinaker 7d9375f894bb set release date
Tag
revelation-0.3.1
Erik Grinaker f4e8220f0a3a window position is stored on exit
Erik Grinaker 784a991e653d fixed some bugs introduced during development
Erik Grinaker fd3e65dfc154 moved a changelog entry
Erik Grinaker fd5f1af41bae merged the ui module and the widget module
Erik Grinaker a78b3bc44c12 minor code cleanups
Erik Grinaker f5321aba18db bumped version number to 0.3.1
Erik Grinaker 487a1cfcc667 updated NEWS file
Erik Grinaker 1555a2ef9f59 removed loading of MD5 module in gpass datahandler
Erik Grinaker 72a3912b10ef fpm datahandler didn't set update time of imported entries
Erik Grinaker 8fe4886d22c7 finished gpass datahandler
Erik Grinaker 5e73d779ae0d fixed some bugs introduced in recent changes
Erik Grinaker 98840ff90c9d Find dialog entry grabs focus after nomatch-dialog
Erik Grinaker 3f8bea3587af added prototype gpass datahandler
Erik Grinaker b181693cfdc7 small changes like cleanups and bugfixes
Erik Grinaker a877d43f0987 moved file data into EntryStore class
Erik Grinaker 9f5c1f647d44 removed gconf schema registration
Erik Grinaker 8de61fe329a0 added widget generation methods to field objects
Erik Grinaker fe0f16515591 added various password dialogs
Erik Grinaker f54fce826711 cleaned up dialog code
Erik Grinaker 5c5c063d3896 check and install configuration on startup
Erik Grinaker 3794d9b38446 cleaned up widget code, and added docstrings
  1. «
  2. 1
  3. 2
  4. 15
  5. 16
  6. 17
  7. 18
  8. 19
  9. 20
  10. »