Lines Matching refs:files

90 def buildfilelist(ws, parent, files):
91 '''Build a list of files in which we're interested.
93 If no files are specified take files from the active list relative
100 if files:
101 return [(path, None) for path in sorted(files)]
210 '''list files changed relative to parent workspace
270 'show checkin comments for active files'
278 '''show renamed active files
280 Renamed files are shown in the format
293 '''check checkin comments for active files
307 '''check for a valid CDDL block in active files
337 '''check for a valid MAPFILE header block in active files
354 # We also ignore files with suffixes that tell us that the files
378 '''check active files for valid copyrights
380 Check that all active files have a valid copyright containing the
405 '''check active header files conform to O/N rules'''
429 '''check active C source files conform to the C Style Guide
457 'check active Java source files for common stylistic errors'
481 '''check active files permission - warn +x (execute) mode'''
618 '''check source files do not contain SCCS keywords'''
651 ui.write('Warning: the following files have uncommitted changes:\n')
680 '''Run CMDS (with OPTS) over active files in WS'''
701 '''check for stylistic nits in active files
719 '''pre-putback check all active files
760 If no files are changed in comparison to the parent workspace, the
807 if len(active.files()) <= 0:
808 ui.warn("Recommitting %d active changesets, but no active files\n" %
828 if not yes_no(ui, "These files will be removed by recommit."
831 raise util.Abort("recommit would clobber files")
842 if yes_no(ui, 'Do you want to backup files first?', True):
870 def do_eval(cmd, files, root, changedir=True):
874 for path in sorted(files):
901 files = [x.name for x in act if not x.is_removed()]
903 do_eval(cmd, files, repo.root, not opts['remain'])
907 '''apply cmd to all active files
909 For example 'hg apply wc -l' outputs a line count of active files.'''
919 files = [x.name for x in act if not x.is_removed()]
921 do_eval(cmd, files, repo.root, not opts['remain'])
1138 'only backup if workspace files are newer')],
1166 ('r', 'removed', None, 'show removed files'),
1167 ('a', 'added', None, 'show added files'),
1168 ('m', 'modified', None, 'show modified files')],
1180 ('a', 'text', None, 'treat all files as text'),