Home | History | Annotate | Download | only in tools

Lines Matching refs:input_dir

76 def combine_notice_files_html(file_hash, input_dir, output_filename):
79 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
134 def combine_notice_files_text(file_hash, input_dir, output_filename, file_title):
137 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
149 def combine_notice_files_xml(files_with_same_hash, input_dir, output_filename):
152 SRC_DIR_STRIP_RE = re.compile(input_dir + "(/.*).txt")
233 input_dir = os.path.normpath(args.source_dir)
235 for root, dir, files in os.walk(input_dir):
241 if root.startswith(input_dir + '/' + subdir):
246 if root.startswith(input_dir + '/' + subdir):
257 combine_notice_files_text(filesets, input_dir, txt_output_file, file_title)
261 combine_notice_files_html(filesets, input_dir, html_output_file)
265 combine_notice_files_xml(files_with_same_hash, input_dir, xml_output_file)