Lines Matching refs:files

448                  help="Base files will be downloaded by the server "
449 "(side-by-side diffs may not work on files with CRs).")
498 def EncodeMultipartFormData(fields, files):
503 files: A sequence of (name, filename, value) elements for data to be
504 uploaded as files.
519 for (key, filename, value) in files:
609 """Return a list of files unknown to the VCS."""
614 """Show an "are you sure?" prompt if there are unknown files."""
617 print "The following files are not added to version control:"
631 new_content: For text files, this is empty. For binary files, this is
650 files = {}
657 files[filename] = self.GetBaseFile(filename)
658 return files
662 files):
663 """Uploads the base files (and if necessary, the current ones as well)."""
702 base_content, new_content, is_binary, status = files[filename]
737 # SVN base URL is required to fetch files deleted in an older revision.
996 # the hashes of the base files, so we can upload them along with our diff.
1022 status = RunShell(["git", "ls-files", "--exclude-standard", "--others"],
1077 # NOTE: for proper handling of moved/copied files, we have to use
1091 """Return a list of files unknown to the VCS."""
1110 # "hg status -C" returns two lines for moved/copied files, one otherwise
1196 files = [("data", "data.diff", patch[1])]
1197 ctype, body = EncodeMultipartFormData(form_fields, files)
1260 The patchset id is None if the base files are not uploaded by this
1276 # Note: Fetching base files may become deprecated in future releases.
1287 files = vcs.GetBaseFiles(data)
1327 for file, info in files.iteritems():
1334 # If we're uploading base files, don't send the email before the uploads, so
1371 vcs.UploadBaseFiles(issue, rpc_server, patches, patchset, options, files)