2016-11-04 04:15:16 +05:30
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/go-gitea/gitea/models"
|
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
2016-11-06 18:48:34 +05:30
|
|
|
"github.com/go-gitea/git"
|
2016-11-04 04:15:16 +05:30
|
|
|
)
|
|
|
|
|
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
|
|
|
|
}
|