2016-11-03 18:45:16 -04:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 05:33:00 -04:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-03 18:45:16 -04:00
|
|
|
)
|
|
|
|
|
2016-11-21 05:03:37 -05:00
|
|
|
// SetEditorconfigIfExists set editor config as render variable
|
2016-11-05 11:58:53 -04:00
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2016-11-03 18:45:16 -04:00
|
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
|
|
|
if err := models.CreateRepositoryNotice(description); err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("ErrCreatingReporitoryNotice", err)
|
2016-11-03 18:45:16 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
|
|
}
|
2016-11-12 21:54:04 -05:00
|
|
|
|
2016-11-21 05:03:37 -05:00
|
|
|
// SetDiffViewStyle set diff style as render variable
|
2016-11-12 21:54:04 -05:00
|
|
|
func SetDiffViewStyle(ctx *context.Context) {
|
2016-11-19 10:53:34 -05:00
|
|
|
queryStyle := ctx.Query("style")
|
|
|
|
|
2016-11-19 06:43:10 -05:00
|
|
|
if !ctx.IsSigned {
|
2016-11-19 10:53:34 -05:00
|
|
|
ctx.Data["IsSplitStyle"] = queryStyle == "split"
|
2016-11-19 06:43:10 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-12 21:54:04 -05:00
|
|
|
var (
|
2016-11-19 10:53:34 -05:00
|
|
|
userStyle = ctx.User.DiffViewStyle
|
|
|
|
style string
|
2016-11-12 21:54:04 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
if queryStyle == "unified" || queryStyle == "split" {
|
|
|
|
style = queryStyle
|
|
|
|
} else if userStyle == "unified" || userStyle == "split" {
|
|
|
|
style = userStyle
|
|
|
|
} else {
|
|
|
|
style = "unified"
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsSplitStyle"] = style == "split"
|
|
|
|
if err := ctx.User.UpdateDiffViewStyle(style); err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("ErrUpdateDiffViewStyle", err)
|
2016-11-12 21:54:04 -05:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 13:49:33 -04:00
|
|
|
|
|
|
|
// SetWhitespaceBehavior set whitespace behavior as render variable
|
|
|
|
func SetWhitespaceBehavior(ctx *context.Context) {
|
|
|
|
whitespaceBehavior := ctx.Query("whitespace")
|
|
|
|
switch whitespaceBehavior {
|
|
|
|
case "ignore-all", "ignore-eol", "ignore-change":
|
|
|
|
ctx.Data["WhitespaceBehavior"] = whitespaceBehavior
|
|
|
|
default:
|
|
|
|
ctx.Data["WhitespaceBehavior"] = ""
|
|
|
|
}
|
|
|
|
}
|