diff options
author | zeripath <art27@cantab.net> | 2021-08-29 15:28:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 15:28:04 +0100 |
commit | f5b0e2c9d2336367dfcf121be6ff5154017192cf (patch) | |
tree | 85b820b9aed4583ad05c232ed1ddb7abb93d50c2 /modules/repofiles | |
parent | d24eb6e6ced43fbf198617c36686655570bb92bc (diff) | |
download | gitea-f5b0e2c9d2336367dfcf121be6ff5154017192cf.tar.gz gitea-f5b0e2c9d2336367dfcf121be6ff5154017192cf.zip |
Simplify split diff view generation and remove JS dependency (#16775)
Gitea has relied on some slow JS code to match up added and deleted lines on the
diff pages. This can cause a considerable slow down on large diff pages.
This PR makes a small change meaning that the matching up can occur much more simply.
Partial fix #1351
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/repofiles')
-rw-r--r-- | modules/repofiles/diff_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/repofiles/diff_test.go b/modules/repofiles/diff_test.go index d40f8a50fe..da50284150 100644 --- a/modules/repofiles/diff_test.go +++ b/modules/repofiles/diff_test.go @@ -83,6 +83,7 @@ func TestGetDiffPreview(t *testing.T) { { LeftIdx: 3, RightIdx: 0, + Match: 4, Type: 3, Content: "-Description for repo1", Comments: nil, @@ -90,6 +91,7 @@ func TestGetDiffPreview(t *testing.T) { { LeftIdx: 0, RightIdx: 3, + Match: 3, Type: 2, Content: "+Description for repo1", Comments: nil, @@ -97,6 +99,7 @@ func TestGetDiffPreview(t *testing.T) { { LeftIdx: 0, RightIdx: 4, + Match: -1, Type: 2, Content: "+this is a new line", Comments: nil, |