diff --git a/.ci/create-changes-html.sh b/.ci/create-changes-html.sh index 2cca91d81c8..ee21416cb65 100755 --- a/.ci/create-changes-html.sh +++ b/.ci/create-changes-html.sh @@ -1,12 +1,11 @@ #!/bin/sh -if [ $# != 2 ]; then - echo >&2 "usage: $0 BASE_DOC_COMMIT DOC_REPO" +if [ $# != 1 ]; then + echo >&2 "usage: $0 DIFF_TEXT" echo >&2 "creates CHANGES.html in the current directory" - echo >&2 "for the diffs of DOC_REPO against BASE_DOC_COMMIT" + echo >&2 "for the diffs in the file DIFF_TEXT" exit 1 fi -BASE_DOC_COMMIT="$1" -DOC_REPOSITORY="$2" +DIFF_TEXT="$1" # Create CHANGES.html echo '' > CHANGES.html @@ -52,11 +51,10 @@ diffParagraphs.forEach(paragraph => { EOF echo '' >> CHANGES.html echo '
' >> CHANGES.html -(cd $DOC_REPOSITORY && git diff $BASE_DOC_COMMIT -- "*.html") > diff.txt python3 - << EOF import os, re, html from itertools import chain -with open('diff.txt', 'r') as f: +with open('$DIFF_TEXT', 'r') as f: diff_text = f.read() diff_blocks = re.split(r'^(?=diff --git)', diff_text, flags=re.MULTILINE) out_blocks = [] @@ -83,12 +81,21 @@ for block in diff_blocks: hunk_lines = [] search_result = re.search(r'@@ -(\d+),(\d+) \+(\d+),(\d+)', line) if search_result: - line_number = int(search_result.group(3)) + line_number = int(search_result.group(3)) - 1 span = int(search_result.group(4)) for i in chain(range(line_number, line_number + span), range(line_number - 1, -1, -1)): - if content[i].startswith('<') and not content[i].startswith(''): + try: + ln = content[i] + except IndexError: + continue + for idx, char in enumerate(ln): + if not char.isspace(): + break + else: + idx = len(ln) + if ln.startswith('<', idx) and not ln.startswith('', idx): count += 1 - content[i] = f'' + content[i] + content[i] = ln[:idx] + f'' + ln[idx:] hunks.append(f'') break hunk_lines.append(line) @@ -107,4 +114,4 @@ EOF cat diff.html >> CHANGES.html echo '' >> CHANGES.html echo '