|
|
@ -1,6 +1,9 @@
|
|
|
|
import difflib
|
|
|
|
import difflib
|
|
|
|
from typing import List, Iterator, Union
|
|
|
|
from typing import List, Iterator, Union
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
REMOVED_STYLE = "background-color: #fadad7; color: #b30000;"
|
|
|
|
|
|
|
|
ADDED_STYLE = "background-color: #eaf2c2; color: #406619;"
|
|
|
|
|
|
|
|
|
|
|
|
def same_slicer(lst: List[str], start: int, end: int) -> List[str]:
|
|
|
|
def same_slicer(lst: List[str], start: int, end: int) -> List[str]:
|
|
|
|
"""Return a slice of the list, or a single element if start == end."""
|
|
|
|
"""Return a slice of the list, or a single element if start == end."""
|
|
|
|
return lst[start:end] if start != end else [lst[start]]
|
|
|
|
return lst[start:end] if start != end else [lst[start]]
|
|
|
@ -33,24 +36,26 @@ def customSequenceMatcher(
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
cruncher = difflib.SequenceMatcher(isjunk=lambda x: x in " \t", a=before, b=after)
|
|
|
|
cruncher = difflib.SequenceMatcher(isjunk=lambda x: x in " \t", a=before, b=after)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for tag, alo, ahi, blo, bhi in cruncher.get_opcodes():
|
|
|
|
for tag, alo, ahi, blo, bhi in cruncher.get_opcodes():
|
|
|
|
if include_equal and tag == 'equal':
|
|
|
|
if include_equal and tag == 'equal':
|
|
|
|
yield before[alo:ahi]
|
|
|
|
yield before[alo:ahi]
|
|
|
|
elif include_removed and tag == 'delete':
|
|
|
|
elif include_removed and tag == 'delete':
|
|
|
|
if html_colour:
|
|
|
|
if html_colour:
|
|
|
|
yield [f'<span style="background-color: #ffcecb;">{line}</span>' for line in same_slicer(before, alo, ahi)]
|
|
|
|
yield [f'<span style="{REMOVED_STYLE}">{line}</span>' for line in same_slicer(before, alo, ahi)]
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
yield [f"(removed) {line}" for line in same_slicer(before, alo, ahi)] if include_change_type_prefix else same_slicer(before, alo, ahi)
|
|
|
|
yield [f"(removed) {line}" for line in same_slicer(before, alo, ahi)] if include_change_type_prefix else same_slicer(before, alo, ahi)
|
|
|
|
elif include_replaced and tag == 'replace':
|
|
|
|
elif include_replaced and tag == 'replace':
|
|
|
|
if html_colour:
|
|
|
|
if html_colour:
|
|
|
|
yield [f'<span style="background-color: #ffcecb;">{line}</span>' for line in same_slicer(before, alo, ahi)] + \
|
|
|
|
yield [f'<span style="{REMOVED_STYLE}">{line}</span>' for line in same_slicer(before, alo, ahi)] + \
|
|
|
|
[f'<span style="background-color: #dafbe1;">{line}</span>' for line in same_slicer(after, blo, bhi)]
|
|
|
|
[f'<span style="{ADDED_STYLE}">{line}</span>' for line in same_slicer(after, blo, bhi)]
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
yield [f"(changed) {line}" for line in same_slicer(before, alo, ahi)] + \
|
|
|
|
yield [f"(changed) {line}" for line in same_slicer(before, alo, ahi)] + \
|
|
|
|
[f"(into) {line}" for line in same_slicer(after, blo, bhi)] if include_change_type_prefix else same_slicer(before, alo, ahi) + same_slicer(after, blo, bhi)
|
|
|
|
[f"(into) {line}" for line in same_slicer(after, blo, bhi)] if include_change_type_prefix else same_slicer(before, alo, ahi) + same_slicer(after, blo, bhi)
|
|
|
|
elif include_added and tag == 'insert':
|
|
|
|
elif include_added and tag == 'insert':
|
|
|
|
if html_colour:
|
|
|
|
if html_colour:
|
|
|
|
yield [f'<span style="background-color: #dafbe1;">{line}</span>' for line in same_slicer(after, blo, bhi)]
|
|
|
|
yield [f'<span style="{ADDED_STYLE}">{line}</span>' for line in same_slicer(after, blo, bhi)]
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
yield [f"(added) {line}" for line in same_slicer(after, blo, bhi)] if include_change_type_prefix else same_slicer(after, blo, bhi)
|
|
|
|
yield [f"(added) {line}" for line in same_slicer(after, blo, bhi)] if include_change_type_prefix else same_slicer(after, blo, bhi)
|
|
|
|
|
|
|
|
|
|
|
|