Geoffrey Foster 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

g_Off / adium (fork of adium / adium)

Clone this repository (size: 219.4 MB): HTTPS / SSH
hg clone https://bitbucket.org/g_Off/adium
hg clone ssh://hg@bitbucket.org/g_Off/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 2,809

Author Revision Comments Message Labels Date
Geoffrey Foster cf2e846fa3be merge adium changes with mine
Geoffrey Foster 4b54f559bedd Fix a few more small potential memory leaks flagged by static analysis
Geoffrey Foster a12b70b0b882 Fix memory leak (I think). NSOperationQueue retains objects that are added to it.
Zachary West 9b757472094b Include bookmarks in the contact controller's contactDict, so that a -contactEnumerator also contains them. By way of updating properly, fixes #13221.
Zachary West 2b6a6cd8c92f Examine any open chats when a bookmark is initialized to set its defaults. Fixes #12771.
Zachary West 4eb14b524627 Fix the logic a tad here; we need to commit a trimmed string in all cases, not just where AM/PM is not shown.
Stephen Holt 755b7d1984ea Fix a number of leaks in AIAppearancePreferences
Zachary West 26b877594c29 These methods are wayyyyyy too spammy.
Zachary West f6c294f75c9b Updating Credits.rtf: putting my full name, moving peopel who haven't "developed" in a long time to retired.
Zachary West 3ee009cf02f0 Fix a few date formatter issues. Fixes #11981. Fixes #12545.
Zachary West fcfc13b945fc When replacing an emoticon in an attributed string, don't copy any previous attachments that string had into the replacement string. Fixes #12186.
Zachary West 5dd8e46268e8 Only validate "Restore default formatting" if the attributes our defaults specify are modified in the current typing attributes. There's a whole mess of other attributes that the NSTextView may have, very few of which are specified as defaults.
Zachary West 341c96961054 Restore back AIHTMLDecoder's assumption that fonts are Helvetica and the sky is blue.
Zachary West 74a33a2e7467 Add a "Default font remover" plugin. Refs #12906 (though really fixes it).
Peter Hosey ca3d8c8b4a3d Use the network-order versions of the field length. Refs #8116.
William Bowling b9fd746d2a9a Dont ask for confirmation or try to delete 0 selected logs
Peter Hosey e7cd7648ffd3 More strings files that I somehow missed. Finishes the UTF-8 conversion, and fixes the last of the encoding warnings.
Peter Hosey 06c191a366cb UTF-8 conversion, mark II. Now with less corruption.
Peter Hosey 9c523fa8ae20 Backed out changeset 418ff98620bf.
Zachary West d70bc57935ad Address a few font issues that have cropped up recently. Fixes #12906.
Peter Hosey a6c967ceca8e Convert all the strings files that we told Xcode are UTF-8 to UTF-8.
Stephen Holt 08929cba4c50 New PSMTabBarControl.framework, with some fixed leaks.
Peter Hosey 6c9869fec62c Turning on hardass mode for the Spotlight Importer.
Peter Hosey 7926f7ad8266 Turning on static analysis while building. No flags.
Peter Hosey be8506d2765d Added explicit casts to suppress the last 64-to-32 warnings.
Peter Hosey 255d85217b31 Renaming this variable to fix a shadowed-declaration warning.
Peter Hosey b96cccd8e18c Fixed sign-comparison warnings by unifying variables on size_t instead of int.
Peter Hosey 7ec5d0164293 Suppress built-in functions in the Spotlight importer.
Peter Hosey 25eb9c078e5c Set kMDItemDurationSeconds to a double, not an int. Fixes a warning.
Peter Hosey 2da7f802de6e Turning on a bunch of warnings—most significantly, the 64-to-32 warning.
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 93
  8. 94
  9. »