summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-19 22:13:22 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-19 22:13:22 -0400
commit8bed017557c43701d92ca3e571761cd310ed8c83 (patch)
tree6ff85398dbee22d6f439f9678826601fb3a80f45
parent0e41726ece2f7e5efcadd0069190d13b3e8be07c (diff)
downloadgitea-8bed017557c43701d92ca3e571761cd310ed8c83.tar.gz
gitea-8bed017557c43701d92ca3e571761cd310ed8c83.zip
Add build tag enable prompt
-rw-r--r--conf/app.ini2
-rw-r--r--modules/base/conf.go6
-rw-r--r--modules/middleware/repo.go1
-rw-r--r--routers/install.go5
-rw-r--r--templates/repo/single_list.tmpl2
5 files changed, 13 insertions, 3 deletions
diff --git a/conf/app.ini b/conf/app.ini
index eb3d635f38..ca0bfa84d9 100644
--- a/conf/app.ini
+++ b/conf/app.ini
@@ -22,7 +22,7 @@ CERT_FILE = cert.pem
KEY_FILE = key.pem
[database]
-; Either "mysql", "postgres" or "sqlite3"(binary release only), it's your choice
+; Either "mysql", "postgres" or "sqlite3", it's your choice
DB_TYPE = mysql
HOST = 127.0.0.1:3306
NAME = gogs
diff --git a/modules/base/conf.go b/modules/base/conf.go
index 9dccc48f9d..720b861084 100644
--- a/modules/base/conf.go
+++ b/modules/base/conf.go
@@ -174,6 +174,12 @@ func newLogService() {
func newCacheService() {
CacheAdapter = Cfg.MustValue("cache", "ADAPTER", "memory")
+ if cache.EnableRedis {
+ log.Info("Redis Enabled")
+ }
+ if cache.EnableMemcache {
+ log.Info("Memcache Enabled")
+ }
switch CacheAdapter {
case "memory":
diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go
index 07395df96a..9a23d67592 100644
--- a/modules/middleware/repo.go
+++ b/modules/middleware/repo.go
@@ -201,6 +201,7 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
// repo is bare and display enable
if displayBare && ctx.Repo.Repository.IsBare {
+ log.Debug("Bare repository: %s", ctx.Repo.RepoLink)
ctx.HTML(200, "repo/single_bare")
return
}
diff --git a/routers/install.go b/routers/install.go
index 81b164038c..12182ad300 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -49,6 +49,7 @@ func GlobalInit() {
models.LoadModelsConfig()
models.LoadRepoConfig()
models.NewRepoContext()
+ NewServices()
if base.InstallLock {
if err := models.NewEngine(); err != nil {
@@ -56,9 +57,11 @@ func GlobalInit() {
}
models.HasEngine = true
+ if models.EnableSQLite3 {
+ log.Info("SQLite3 Enabled")
+ }
cron.NewCronContext()
}
- NewServices()
checkRunMode()
}
diff --git a/templates/repo/single_list.tmpl b/templates/repo/single_list.tmpl
index b12687bd7d..7b6c6e5e9c 100644
--- a/templates/repo/single_list.tmpl
+++ b/templates/repo/single_list.tmpl
@@ -36,7 +36,7 @@
</span>
</td>
<td class="text">
- <span class="wrap"><a href="/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}}">{{$commit.Message}}</a></span>
+ <span class="wrap"><a rel="nofollow" href="/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}}">{{$commit.Message}}</a></span>
</td>
<td class="date">
<span class="wrap">{{TimeSince $commit.Committer.When}}</span>