File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
web_monitoring_diff/server Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 48
48
# applying diff-match-patch (dmp) to strings (no tokenization)
49
49
"html_text_dmp" : basic_diffs .html_text_diff ,
50
50
"html_source_dmp" : basic_diffs .html_source_diff ,
51
- # three different approaches to the same goal:
52
51
"html_token" : html_render_diff .html_diff_render ,
53
-
54
- # deprecated synonyms
55
- "links_diff" : html_links_diff .links_diff ,
56
- "html_text_diff" : basic_diffs .html_text_diff ,
57
- "html_source_diff" : basic_diffs .html_source_diff ,
58
- "html_visual_diff" : html_render_diff .html_diff_render ,
59
52
}
60
53
61
54
# Optional, experimental diffs.
62
55
try :
63
56
from ..experimental import htmltreediff
64
57
DIFF_ROUTES ["html_tree" ] = htmltreediff .diff
65
- # Deprecated synonym
66
- DIFF_ROUTES ["html_tree_diff" ] = htmltreediff .diff
67
58
except ModuleNotFoundError :
68
59
...
69
60
70
61
try :
71
62
from ..experimental import htmldiffer
72
63
DIFF_ROUTES ["html_perma_cc" ] = htmldiffer .diff
73
- # Deprecated synonym
74
- DIFF_ROUTES ["html_differ" ] = htmldiffer .diff
75
64
except ModuleNotFoundError :
76
65
...
77
66
You can’t perform that action at this time.
0 commit comments