2016-11-04 04:15:16 +05:30
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-11-11 17:41:45 +05:30
|
|
|
"code.gitea.io/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-11-04 04:15:16 +05:30
|
|
|
)
|
|
|
|
|
2016-11-21 15:33:37 +05:30
|
|
|
// SetEditorconfigIfExists set editor config as render variable
|
2016-11-05 21:28:53 +05:30
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2016-11-04 04:15:16 +05:30
|
|
|
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 {
|
|
|
|
ctx.Handle(500, "ErrCreatingReporitoryNotice", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
|
|
}
|
2016-11-13 08:24:04 +05:30
|
|
|
|
2016-11-21 15:33:37 +05:30
|
|
|
// SetDiffViewStyle set diff style as render variable
|
2016-11-13 08:24:04 +05:30
|
|
|
func SetDiffViewStyle(ctx *context.Context) {
|
2016-11-19 21:23:34 +05:30
|
|
|
queryStyle := ctx.Query("style")
|
|
|
|
|
2016-11-19 17:13:10 +05:30
|
|
|
if !ctx.IsSigned {
|
2016-11-19 21:23:34 +05:30
|
|
|
ctx.Data["IsSplitStyle"] = queryStyle == "split"
|
2016-11-19 17:13:10 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-13 08:24:04 +05:30
|
|
|
var (
|
2016-11-19 21:23:34 +05:30
|
|
|
userStyle = ctx.User.DiffViewStyle
|
|
|
|
style string
|
2016-11-13 08:24:04 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
|
|
|
ctx.Handle(500, "ErrUpdateDiffViewStyle", err)
|
|
|
|
}
|
|
|
|
}
|