mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Whitespace in commits (#14650)
* Add whitespace to commit view * Add whitespace to /compare/a...b * Move repeated whitespaceFlags to gitdiff * Add whitespace for wiki pages
This commit is contained in:
		@@ -967,7 +967,13 @@ func GetDiffRangeWithWhitespaceBehavior(repoPath, beforeCommitID, afterCommitID
 | 
			
		||||
 | 
			
		||||
// GetDiffCommit builds a Diff representing the given commitID.
 | 
			
		||||
func GetDiffCommit(repoPath, commitID string, maxLines, maxLineCharacters, maxFiles int) (*Diff, error) {
 | 
			
		||||
	return GetDiffRange(repoPath, "", commitID, maxLines, maxLineCharacters, maxFiles)
 | 
			
		||||
	return GetDiffRangeWithWhitespaceBehavior(repoPath, "", commitID, maxLines, maxLineCharacters, maxFiles, "")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDiffCommitWithWhitespaceBehavior builds a Diff representing the given commitID.
 | 
			
		||||
// The whitespaceBehavior is either an empty string or a git flag
 | 
			
		||||
func GetDiffCommitWithWhitespaceBehavior(repoPath, commitID string, maxLines, maxLineCharacters, maxFiles int, whitespaceBehavior string) (*Diff, error) {
 | 
			
		||||
	return GetDiffRangeWithWhitespaceBehavior(repoPath, "", commitID, maxLines, maxLineCharacters, maxFiles, whitespaceBehavior)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CommentAsDiff returns c.Patch as *Diff
 | 
			
		||||
@@ -995,3 +1001,14 @@ func CommentMustAsDiff(c *models.Comment) *Diff {
 | 
			
		||||
	}
 | 
			
		||||
	return diff
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetWhitespaceFlag returns git diff flag for treating whitespaces
 | 
			
		||||
func GetWhitespaceFlag(whiteSpaceBehavior string) string {
 | 
			
		||||
	whitespaceFlags := map[string]string{
 | 
			
		||||
		"ignore-all":    "-w",
 | 
			
		||||
		"ignore-change": "-b",
 | 
			
		||||
		"ignore-eol":    "--ignore-space-at-eol",
 | 
			
		||||
		"":              ""}
 | 
			
		||||
 | 
			
		||||
	return whitespaceFlags[whiteSpaceBehavior]
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user