William Bowling 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

wbowling / adium (fork of adium / adium)

Fork of Adium for patches/improvements

Clone this repository (size: 338.7 MB): HTTPS / SSH
hg clone https://bitbucket.org/wbowling/adium
hg clone ssh://hg@bitbucket.org/wbowling/adium

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 3,345

Author Revision Comments Message Labels Date
William Bowling 051889f9742b Refs #13987 Check if the prefix/suffix is already present
William Bowling 3f437e1750ed Merge from hg.adium.im
mathuaerknedam 5297a5921cad merge
mathuaerknedam a27907b5a9f2 Renkoo Naked (which was removed) should fallback to Renkoo.
mathuaerknedam 8da59f3355f0 Adium has been trying to fall back from minimal to minimal_2.0, but minimal 2.0 was repalced with minimal_mod long ago. Now minimal and minimal_2.0 will fallback to minimal_mod.
mathuaerknedam 10e4103acf79 In a previous commit message styles started using a CFBundleIdentifier of im.adium.* rather than com.adiumx.*, but I forgot to change the three places in the code where this was referenced. Fixed.
Robert Vehse e4193c43eeb7 Update changes.txt.
mathuaerknedam 8e259662ede0 Manually adding SO variant Icon-Time, since it otherwise is filtered by .hgignore.
Frank Dowsett bdf6043f7816 Add a preference for AIM: allow multiple sign in locations defaulting to true. Fixes #5790, initial patch from Josh Perry.
Frank Dowsett 49a7c40f6faf Add the 'On Accounts' table to the nextKeyView in the 'Add Contact' window. Fixes #14269
Thijs Alkemade aefd67458136 Testing my commit access.
Frank Dowsett 1e4cb0fda264 Separate out Twitter entities, should fix #14265.
Robert Vehse 049fb15ae33a Attempt at consistency throughout changes.txt.
Robert Vehse 49afa719fc9e More consistency in changes.txt.
Robert Vehse 79acd5612c04 Consistency
Robert Vehse c06115b7fac4 Merge
Robert Vehse 99f0701271b2 Add some 1.5 changes to changes.txt.
Colin Barrett 8560dc66d7bc Merge
Colin Barrett 36fcee85191a Enable position indpendent code so we can take advantage of address space layout randomization.
Frank Dowsett fb6284e51795 Fix #11389 NetNewsWire link insertion, one of those off-by-one errors.
Frank Dowsett a250b3f68d8a libpurple @ 72a1ab897368e57934b7b5d2e58e897e679efabe
Robert Vehse 129515b4c9e4 Remedy some formatting inconsistencies in Credits.rtf.
William Bowling ff6fae3388e1 Refs #13987 Allow accounts to override the suffix/prefix for chat autocomplete
William Bowling bdb24b433296 Refs #13748 Don't allow group Facebook XMPP chats
William Bowling 6f80a3305e99 Refs #13748, #13054 Initial Facebook XMPP service for testing
William Bowling 5a9ea2979605 Merge from hg.adium.im
Robert Vehse 691d4e307eec Credit meestaplu in Copyright.txt.
Matthew Plough 76220f2da71d Made contact list tooltips appear only at appropriate times. Fixes #12774
Robert Vehse 840ffaddb714 Add some missing patch writers to Copyright.txt.
Robert Vehse 0cdde1d4377a Changelog Aaron Dodson's patch. Fixes #12129.
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 111
  8. 112
  9. »