forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle too long PR titles correctly (go-gitea#16517)
The CompareAndPullRequestPost handler for POST to /compare incorrectly handles returning errors to the user. For a start it does not set the necessary markers to switch SimpleMDE but it also does not immediately return to the form. This PR fixes this by setting the appropriate values, fixing the templates and preventing the suggestion of a too long title. Fix go-gitea#16507 Signed-off-by: Andrew Thornton <art27@cantab.net>
- Loading branch information
1 parent
f5b4544
commit af956f5
Showing
4 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package util | ||
|
||
import "unicode/utf8" | ||
|
||
// SplitStringAtByteN splits a string at byte n accounting for rune boundaries. (Combining characters are not accounted for.) | ||
func SplitStringAtByteN(input string, n int) (left, right string) { | ||
if len(input) <= n { | ||
left = input | ||
return | ||
} | ||
|
||
if !utf8.ValidString(input) { | ||
left = input[:n-3] + "..." | ||
right = "..." + input[n-3:] | ||
return | ||
} | ||
|
||
// in UTF8 "…" is 3 bytes so doesn't really gain us anything... | ||
end := 0 | ||
for end <= n-3 { | ||
_, size := utf8.DecodeRuneInString(input[end:]) | ||
if end+size > n-3 { | ||
break | ||
} | ||
end += size | ||
} | ||
|
||
left = input[:end] + "…" | ||
right = "…" + input[end:] | ||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters