Browse Source

Fix import path

Unknown 11 years ago
parent
commit
d093406634
2 changed files with 5 additions and 4 deletions
  1. 4 3
      routers/repo/single.go
  2. 1 1
      web.go

+ 4 - 3
routers/repo/single.go

@@ -4,12 +4,13 @@ import (
 	"net/http"
 
 	"github.com/codegangsta/martini"
+	"github.com/martini-contrib/render"
+	"github.com/martini-contrib/sessions"
+
 	"github.com/gogits/gogs/models"
 	"github.com/gogits/gogs/modules/auth"
 	"github.com/gogits/gogs/modules/base"
-	"github.com/martini-contrib/render"
-	"github.com/martini-contrib/sessions"
-	"github.com/qiniu/log"
+	"github.com/gogits/gogs/modules/log"
 )
 
 func Single(params martini.Params, req *http.Request, r render.Render, data base.TmplData, session sessions.Session) {

+ 1 - 1
web.go

@@ -76,7 +76,7 @@ func runWeb(*cli.Context) {
 	m.Any("/repo/list", auth.SignInRequire(false), repo.List)
 	m.Get("/:username/:reponame", auth.SignInRequire(false), repo.Single)
 
-	m.Get("/:username/:reponame", repo.Repo)
+	//m.Get("/:username/:reponame", repo.Repo)
 
 	listenAddr := fmt.Sprintf("%s:%s",
 		base.Cfg.MustValue("server", "HTTP_ADDR"),