mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 21:16:26 +01:00 
			
		
		
		
	Some minor changes
This commit is contained in:
		
							parent
							
								
									12b5a76b0d
								
							
						
					
					
						commit
						58f0c68151
					
				@ -1,6 +1,5 @@
 | 
			
		||||
[run]
 | 
			
		||||
init_cmds = [
 | 
			
		||||
	#["grep", "-rn", "FIXME", "."],
 | 
			
		||||
	["make", "build-dev", "TAGS=sqlite"],
 | 
			
		||||
	["./gogs", "web"]
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										21
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@ -8,31 +8,12 @@ data/
 | 
			
		||||
.idea/
 | 
			
		||||
*.iml
 | 
			
		||||
public/img/avatar/
 | 
			
		||||
files/
 | 
			
		||||
*.o
 | 
			
		||||
*.a
 | 
			
		||||
*.so
 | 
			
		||||
_obj
 | 
			
		||||
_test
 | 
			
		||||
[568vq].out
 | 
			
		||||
*.cgo1.go
 | 
			
		||||
*.cgo2.c
 | 
			
		||||
_cgo_defun.c
 | 
			
		||||
_cgo_gotypes.go
 | 
			
		||||
_cgo_export.*
 | 
			
		||||
_testmain.go
 | 
			
		||||
*.exe
 | 
			
		||||
*.exe~
 | 
			
		||||
/gogs
 | 
			
		||||
profile/
 | 
			
		||||
__pycache__
 | 
			
		||||
*.pem
 | 
			
		||||
output*
 | 
			
		||||
.brackets.json
 | 
			
		||||
docker/fig.yml
 | 
			
		||||
docker/docker/Dockerfile
 | 
			
		||||
docker/docker/init_gogs.sh
 | 
			
		||||
gogs.sublime-project
 | 
			
		||||
gogs.sublime-workspace
 | 
			
		||||
.tags*
 | 
			
		||||
release
 | 
			
		||||
/release
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								Makefile
									
									
									
									
									
								
							@ -53,3 +53,9 @@ clean-mac: clean
 | 
			
		||||
 | 
			
		||||
test:
 | 
			
		||||
	go test -cover -race ./...
 | 
			
		||||
 | 
			
		||||
fixme:
 | 
			
		||||
	grep -rnw "FIXME" routers models modules
 | 
			
		||||
 | 
			
		||||
todo:
 | 
			
		||||
	grep -rnw "TODO" routers models modules
 | 
			
		||||
 | 
			
		||||
@ -7,7 +7,6 @@ package cmd
 | 
			
		||||
import (
 | 
			
		||||
	"crypto/tls"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	gotmpl "html/template"
 | 
			
		||||
	"io/ioutil"
 | 
			
		||||
	"net/http"
 | 
			
		||||
	"net/http/fcgi"
 | 
			
		||||
@ -126,7 +125,7 @@ func newMacaron() *macaron.Macaron {
 | 
			
		||||
	))
 | 
			
		||||
	m.Use(macaron.Renderer(macaron.RenderOptions{
 | 
			
		||||
		Directory:  path.Join(setting.StaticRootPath, "templates"),
 | 
			
		||||
		Funcs:      []gotmpl.FuncMap{template.Funcs},
 | 
			
		||||
		Funcs:      template.NewFuncMap(),
 | 
			
		||||
		IndentJSON: macaron.Env != macaron.PROD,
 | 
			
		||||
	}))
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,3 @@
 | 
			
		||||
Execute following command in ROOT directory when anything is changed:
 | 
			
		||||
 | 
			
		||||
$ go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/...
 | 
			
		||||
 | 
			
		||||
Add -debug flag to make life easier in development(somehow isn't working):
 | 
			
		||||
 | 
			
		||||
$ go-bindata -debug -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/...
 | 
			
		||||
$ make bindata
 | 
			
		||||
@ -22,7 +22,8 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var Funcs template.FuncMap = map[string]interface{}{
 | 
			
		||||
func NewFuncMap() []template.FuncMap {
 | 
			
		||||
	return []template.FuncMap{map[string]interface{}{
 | 
			
		||||
		"GoVer": func() string {
 | 
			
		||||
			return strings.Title(runtime.Version())
 | 
			
		||||
		},
 | 
			
		||||
@ -102,6 +103,7 @@ var Funcs template.FuncMap = map[string]interface{}{
 | 
			
		||||
		"ThemeColorMetaTag": func() string {
 | 
			
		||||
			return setting.ThemeColorMetaTag
 | 
			
		||||
		},
 | 
			
		||||
	}}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Safe(raw string) template.HTML {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user