Lines Matching refs:base

61 # Max size of patch or base file.
589 """Abstract base class providing an interface to the VCS."""
630 base_content: The contents of the base file.
663 """Uploads the base files (and if necessary, the current ones as well)."""
669 type = "base"
737 # SVN base URL is required to fetch files deleted in an older revision.
747 """Returns the SVN base URL.
761 logging.info("Removed username from base URL")
768 base = "http://svn.python.org/view/*checkout*%s/" % path
769 logging.info("Guessed Python base = %s", base)
773 base = "http://svn.collab.net/viewvc/*checkout*%s/" % path
774 logging.info("Guessed CollabNet base = %s", base)
777 base = urlparse.urlunparse(("http", netloc, path, params,
779 logging.info("Guessed Google Code base = %s", base)
782 base = urlparse.urlunparse((scheme, netloc, path, params,
784 logging.info("Guessed base = %s", base)
785 return base
935 # Empty base content just to force an upload.
990 # Map of filename -> hash of base file.
996 # the hashes of the base files, so we can upload them along with our diff.
1012 # We want to save the left hash, as that identifies the base file.
1031 if hash == "0" * 40: # All-zero hash indicates no base file.
1119 # retrieve base contents
1219 # Mercurial has a command to get the base directory of a repository
1260 The patchset id is None if the base files are not uploaded by this
1275 # base field is only allowed for Subversion.
1276 # Note: Fetching base files may become deprecated in future releases.
1277 base = vcs.GuessBase(options.download_base)
1279 base = None
1280 if not base and options.download_base:
1282 logging.info("Enabled upload of base file")
1299 if base:
1300 form_fields.append(("base", base))
1324 # Send a hash of all the base file so the server can determine if a copy
1334 # If we're uploading base files, don't send the email before the uploads, so