Merge branch 'dev' of github.com:gogits/gogs into dev

Conflicts:
	conf/app.ini
This commit is contained in:
lunnyxiao 2014-09-17 12:04:18 +08:00
commit 061a879cea
20 changed files with 659 additions and 48 deletions

View file

@ -10,6 +10,7 @@ import (
"os/exec"
"path"
"path/filepath"
"runtime"
"strings"
"time"
@ -99,12 +100,14 @@ var (
CustomPath string // Custom directory path.
ProdMode bool
RunUser string
IsWindows bool
// I18n settings.
Langs, Names []string
)
func init() {
IsWindows = runtime.GOOS == "windows"
log.NewLogger(0, "console", `{"level": 0}`)
}