in report-builder/src/jetbrains/coverage/report/impl/html/TemplateProcessorBase.java [58:71]
public void renderTemplate(Map<String, Object> params, @NotNull GeneratorPaths paths) throws IOException {
final HashMap map = new HashMap();
map.put("resources", new ResourceBundleModel(getResourceBundle(), new BeansWrapper()));
map.put("generateDate", new Date());
map.putAll(params);
map.put("paths", paths);
map.put("sort_option_sort_by_name", SortOption.SORT_BY_NAME);
map.put("sort_option_none", SortOption.NONE);
map.put("include_modules", myIncludeModule);
map.put("footerTextHTML", getFooterText());
map.put("reportTitle", myReportTitle);
map.put("charset", myCharSet);
createFileFromTemplate(createTemplate(), map, paths.getReportFileName());
}