Lines Matching refs:files

41 files ('active files') you have changed in this workspace in relation
50 those run by 'hg nits') allow files to be excluded from this checking
51 by means of NOT files kept in the .hg/cdm/ directory of the Mercurial
57 These files are in the same format as the Mercurial hgignore
134 def buildfilelist(ws, parent, files):
135 '''Build a list of files in which we're interested.
137 If no files are specified take files from the active list relative
144 if files:
145 return [(path, None) for path in sorted(files)]
266 '''list active files (those changed in this workspace)
268 Display a list of files changed in this workspace as compared to
281 and --removed. By default, all files are shown.
349 '''show renamed active files
351 Renamed files are shown in the format::
383 '''check for a valid CDDL header comment in all active files.
385 Check active files for a valid Common Development and Distribution
388 Newly added files are checked for a copy of the CDDL header
389 comment. Modified files are only checked if they contain what
421 '''check for a valid mapfile header block in active files
443 # We also ignore files with suffixes that tell us that the files
469 Check that all active files have a correctly formed copyright
501 '''check active C header files conform to the O/N header rules
503 Check that any added or modified C header files conform to the O/N
535 '''check active C source files conform to the C Style Guide
572 '''check active Java source files for common stylistic errors
759 '''check active files for SCCS keywords
761 Check that any added or modified files do not contain SCCS keywords
799 ui.write('Warning: the following files have uncommitted changes:\n')
828 '''Run CMDS (with OPTS) over active files in WS'''
849 '''check for stylistic nits in active files
944 If no files are changed in comparison to the parent workspace, the
991 if len(active.files()) <= 0:
992 ui.warn("Recommitting %d active changesets, but no active files\n" %
1012 if not yes_no(ui, "These files will be removed by recommit."
1015 raise util.Abort("recommit would clobber files")
1029 if yes_no(ui, 'Do you want to backup files first?', True):
1057 def do_eval(cmd, files, root, changedir=True):
1061 for path in sorted(files):
1095 files = [x.name for x in act if not x.is_removed()]
1097 do_eval(cmd, files, repo.root, not opts['remain'])
1101 '''apply specified command to all active files
1118 files = [x.name for x in act if not x.is_removed()]
1120 do_eval(cmd, files, repo.root, not opts['remain'])
1400 'only backup if workspace files are newer')],
1428 ('a', 'added', None, 'show added files'),
1429 ('m', 'modified', None, 'show modified files'),
1430 ('r', 'removed', None, 'show removed files')],
1443 ('a', 'text', None, 'treat all files as text'),