Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(12) | Call(12) | Derive(0) | Import(0)
src/j/a/jaikuenginepatch-HEAD/common/im.py jaikuenginepatch(Download)
"You are already signed in, please SIGN OUT first") user_ref = api.actor_lookup_email(api.ROOT, from_jid.base()) im_ref = api.im_associate(api.ROOT, user_ref.nick, from_jid.base())
src/c/o/CollabQ-HEAD/poboxopenid/util.py CollabQ(Download)
def reponse_if_exists(id, service=None): if service is None: view = api.actor_lookup_email(api.ROOT, id) else: eprofile = api.get_external_profile(service, id)
src/c/o/CollabQ-HEAD/join/views.py CollabQ(Download)
# TODO start transaction if api.actor_lookup_email(api.ROOT, email): raise exception.ValidationError( 'That email address is already associated with a member.')
src/j/a/jaikuenginepatch-HEAD/join/views.py jaikuenginepatch(Download)
# TODO start transaction if api.actor_lookup_email(api.ROOT, email): raise exception.ValidationError( 'That email address is already associated with a member.')
for name, email in rv: logging.info('looking up "%s" %s', name, email) contacts.append(api.actor_lookup_email(request.user, email)) contacts = [x for x in contacts if x]
src/j/a/JaikuEngine-HEAD/join/views.py JaikuEngine(Download)
# TODO start transaction if api.actor_lookup_email(api.ROOT, email): raise exception.ValidationError( 'That email address is already associated with a member.')
for name, email in rv: logging.info('looking up "%s" %s', name, email) contacts.append(api.actor_lookup_email(request.user, email)) contacts = [x for x in contacts if x]
src/j/a/jaikuenginepatch-HEAD/common/user_model.py jaikuenginepatch(Download)
def create_djangouser_for_user(cls, user): from common import api actor_ref = api.actor_lookup_email(api.ROOT, user.email()) if actor_ref: return actor_ref
src/c/o/CollabQ-HEAD/actor/views.py CollabQ(Download)
for name, email in rv: logging.info('looking up "%s" %s', name, email) contacts.append(api.actor_lookup_email(request.user, email)) contacts = [x for x in contacts if x]
src/c/o/CollabQ-HEAD/common/user.py CollabQ(Download)
pass # let's try the email address next # login can be confirmed email address actor_ref = api.actor_lookup_email(api.ROOT, login) if actor_ref: return authenticate_user_login(actor_ref.nick, password)
src/j/a/JaikuEngine-HEAD/common/user.py JaikuEngine(Download)
pass # let's try the email address next # login can be confirmed email address actor_ref = api.actor_lookup_email(api.ROOT, login) if actor_ref: return authenticate_user_login(actor_ref.nick, password)
src/j/a/jaikuenginepatch-HEAD/common/user.py jaikuenginepatch(Download)
pass # let's try the email address next # login can be confirmed email address actor_ref = api.actor_lookup_email(api.ROOT, login) if actor_ref: return authenticate_user_login(actor_ref.nick, password)