Home | History | Annotate | Download | only in codereview

Lines Matching refs:email

980 		#	Person <email>
981 # Person <email> <alt-email>
982 # The first email address is the one used in commit logs.
988 email = m.group(2)[1:-1]
989 contributors[email.lower()] = (name, email)
991 contributors[extra[1:-1].lower()] = (name, email)
1019 user, email = contributors[user]
1020 return email, "%s <%s>" % (user, email)
2406 # Print warning if email is not in CONTRIBUTORS file.
2407 email = cl.dict.get("owner_email", "")
2408 if not email:
2410 him = FindContributor(ui, repo, email)
2415 cl.copied_from = email
2578 email = None
2579 x = ui.config("codereview", "email")
2581 email = x
2589 upload_options.email = email
2607 upload_options.email = "test@example.com"
2703 """Prompts the user for their email address and returns it.
2705 The last used email address is saved to a file and offered up as a suggestion
2707 used email address is used. If the user enters a new address, it is saved
2721 email = raw_input(prompt + ": ").strip()
2722 if email:
2725 last_email_file.write(email)
2730 email = last_email
2731 return email
2770 (email, password) tuple when called. Will be called if authentication
2808 def _GetAuthToken(self, email, password):
2812 email: The user's email address
2829 "Email": email,
3035 email = options.email
3036 if email is None:
3037 email = GetEmail("Email (login for uploading to %s)" % options.server)
3038 password = getpass.getpass("Password for %s: " % email)
3042 return (email, password)
3047 email = options.email
3048 if email is None:
3049 email = "test@example.com"
3050 logging.info("Using debug user %s. Override with --email" % email)
3053 lambda: (email, "password"),
3055 extra_headers={"Cookie": 'dev_appserver_login="%s:False"' % email},
3261 if options.email:
3262 form_fields.append(("user", options.email))