Skip to content

Commit

Permalink
Fix trim-path-prefix functionality in HTML export
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrupp committed Nov 29, 2024
1 parent b0555b9 commit 83f0792
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class Checker(TypedDict):

class HTMLReport(TypedDict):
fileId: str
path: str
reportHash: Optional[str]
checker: Checker
analyzerName: Optional[str]
Expand Down Expand Up @@ -239,6 +240,7 @@ def to_macro_expansions(
html_reports.append({
'fileId': report.file.id,
'reportHash': report.report_hash,
'path': report.file.path,
'checker': {
'name': report.checker_name,
'url': self._get_doc_url(report) or ''
Expand Down Expand Up @@ -309,7 +311,7 @@ def create_index_html(self, output_dir: str):

table_reports = map(lambda data: {
'link': os.path.basename(data['link']),
'file-path': data['report']['fileId'],
'file-path': data['report']['path'],
'report-hash': data['report']['reportHash'],
'checker-name': data['report']['checker']['name'],
'checker-url': data['report']['checker']['url'],
Expand Down Expand Up @@ -436,7 +438,6 @@ def convert(
if not reports:
LOG.info('No report data in %s file.', file_path)
return set()

html_filename = f"{os.path.basename(file_path)}.html"
html_output_path = os.path.join(output_dir_path, html_filename)
_, changed_files = html_builder.create(
Expand Down

0 comments on commit 83f0792

Please sign in to comment.