mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 13:24:17 +00:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
// Copyright 2015 The Gogs 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 repo
|
|
|
|
import (
|
|
"github.com/Unknwon/com"
|
|
|
|
"github.com/gogits/gogs/models"
|
|
"github.com/gogits/gogs/modules/base"
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
)
|
|
|
|
const (
|
|
WIKI_START base.TplName = "repo/wiki/start"
|
|
WIKI_VIEW base.TplName = "repo/wiki/view"
|
|
WIKI_NEW base.TplName = "repo/wiki/new"
|
|
)
|
|
|
|
func Wiki(ctx *middleware.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
wikiPath := models.WikiPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
|
if !com.IsDir(wikiPath) {
|
|
ctx.HTML(200, WIKI_START)
|
|
return
|
|
}
|
|
|
|
ctx.HTML(200, WIKI_VIEW)
|
|
}
|
|
|
|
func NewWiki(ctx *middleware.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
ctx.Data["PageIsWiki"] = true
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
wikiPath := models.WikiPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
|
if !com.IsDir(wikiPath) {
|
|
ctx.Data["title"] = "Home"
|
|
}
|
|
|
|
ctx.HTML(200, WIKI_NEW)
|
|
}
|
|
|
|
func EditWiki(ctx *middleware.Context) {
|
|
ctx.PlainText(200, []byte(ctx.Params(":page")))
|
|
}
|