2014-03-19 22:20:44 +05:30
|
|
|
// Copyright 2014 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 dev
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-06-22 22:44:03 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-19 22:20:44 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-19 22:20:44 +05:30
|
|
|
)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
func TemplatePreview(ctx *middleware.Context) {
|
2014-03-19 22:20:44 +05:30
|
|
|
ctx.Data["User"] = models.User{Name: "Unknown"}
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["AppName"] = setting.AppName
|
|
|
|
ctx.Data["AppVer"] = setting.AppVer
|
|
|
|
ctx.Data["AppUrl"] = setting.AppUrl
|
2014-03-19 22:20:44 +05:30
|
|
|
ctx.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["ActiveCodeLives"] = setting.Service.ActiveCodeLives / 60
|
|
|
|
ctx.Data["ResetPwdCodeLives"] = setting.Service.ResetPwdCodeLives / 60
|
2014-05-01 16:25:39 +05:30
|
|
|
ctx.Data["CurDbValue"] = ""
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, base.TplName(ctx.Params("*")))
|
2014-03-19 22:20:44 +05:30
|
|
|
}
|