Home | History | Annotate | Download | only in codereview

Lines Matching refs:email

1681 	user, email = contributors[user]
1682 return email, "%s <%s>" % (user, email)
2157 # Print warning if email is not in CONTRIBUTORS file.
2158 email = cl.dict.get("owner_email", "")
2159 if not email:
2161 him = FindContributor(ui, repo, email)
2166 cl.copied_from = email
2362 # Person <email>
2363 # Person <email> <alt-email>
2364 # The first email address is the one used in commit logs.
2370 email = m.group(2)[1:-1]
2371 contributors[email.lower()] = (name, email)
2373 contributors[extra[1:-1].lower()] = (name, email)
2384 email = None
2385 x = ui.config("codereview", "email")
2387 email = x
2395 upload_options.email = email
2413 upload_options.email = "test@example.com"
2510 """Prompts the user for their email address and returns it.
2512 The last used email address is saved to a file and offered up as a suggestion
2514 used email address is used. If the user enters a new address, it is saved
2528 email = raw_input(prompt + ": ").strip()
2529 if email:
2532 last_email_file.write(email)
2537 email = last_email
2538 return email
2577 (email, password) tuple when called. Will be called if authentication
2615 def _GetAuthToken(self, email, password):
2619 email: The user's email address
2636 "Email": email,
2842 email = options.email
2843 if email is None:
2844 email = GetEmail("Email (login for uploading to %s)" % options.server)
2845 password = getpass.getpass("Password for %s: " % email)
2849 return (email, password)
2854 email = options.email
2855 if email is None:
2856 email = "test@example.com"
2857 logging.info("Using debug user %s. Override with --email" % email)
2860 lambda: (email, "password"),
2862 extra_headers={"Cookie": 'dev_appserver_login="%s:False"' % email},
3068 if options.email:
3069 form_fields.append(("user", options.email))