xitiomet 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

xitiomet / python-twitter (fork of saiyr / python-twitter)

Mostly the same, but i added support for Mentions http://apiwiki.twitter.com/Twitter-REST-API-Met...

Clone this repository (size: 393.3 KB): HTTPS / SSH
hg clone https://bitbucket.org/xitiomet/python-twitter
hg clone ssh://hg@bitbucket.org/xitiomet/python-twitter

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 61–90 of 135

Author Revision Comments Message Labels Date
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d c68ef9d563c3 Applied Stelminator's patch to use calendar.timegm instead of time.mktime to address daylight saving's time issues, as tracked in http://code.google.com/p/python-twitter/issues/detail?id=10
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d ed04d2ff26fc Use consistent docstring quoting.
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d a3421fedecb0 Started version 0.6. Unset the exec bit on README.
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 06bafa057e2f Fixed broken description
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d d0bce98dfe70 Updated docs to 0.5
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 72edcf53b310 Prepare for 0.5 release
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d b15f5a766baf Added long_description
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 8a1b3c54b6cd Updated docs to reflect setuptools
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 7511f4b9d860 Cleaned up comments and declared dependency on simplejson
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d fed8d767c4c0 Added support for setuptools back in, but it is conditional and not required.
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d f73c99cf9b51 Always add Basic authorization headers if the username/password are set.
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 2735e339fa04 Removed spurious debugging line
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 3bef9042269d A cleaner approach to cross-platform usernames
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 795f1c9d49c9 By default, append the current user to the name of the tmp cache directory
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 950d9903edd5 Applied Omar Kilani's patch to remove the 140 character limit from PostUpdate
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 589da64c5e64 Applied Omar Kilani's patch to fixe the tests to work across all timezones
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 98ab67ff72af Trivial change
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 90cd841771cf Started version 0.5.
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d e32dc79a7596 Updated changes
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 4dfd36cb761d Always use UTF-8 on the way out to Twitter
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d b66b34fe3b78 Added missing docs for DirectMessage
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d f6ea87f30f02 Adding the MANIFEST
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d c97162679fe4 Committed missing testdata file
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d a3994a2d72f8 Added missing doc line
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 6c1724c3654d Added missing doc line
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 4dccecae73bf Added docs for DestroyStatus
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 4da5ec4d173a Added DestroyStatus
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 03d2e0e6bba5 Preparing for the 0.4 release
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d b9effe73b630 Updated the documentation
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d 14d5c0672d66 Updated CHANGES
  1. «
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. »