aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-30 12:11:28 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-30 12:11:28 -0400
commitd0e6a4c25acc3414f6d0f93cc50e6dcb41111c19 (patch)
treec26f1b1e097e60bdd12da78cbfef8a3fd6d3b0cf
parent3698431fc11f740ecc043822fba8af895fc12423 (diff)
downloadgitea-d0e6a4c25acc3414f6d0f93cc50e6dcb41111c19.tar.gz
gitea-d0e6a4c25acc3414f6d0f93cc50e6dcb41111c19.zip
Change new martini impot path
-rw-r--r--modules/auth/admin.go2
-rw-r--r--modules/auth/auth.go2
-rw-r--r--modules/auth/issue.go2
-rw-r--r--modules/auth/repo.go2
-rw-r--r--modules/auth/setting.go2
-rw-r--r--modules/auth/user.go5
-rw-r--r--modules/middleware/auth.go2
-rw-r--r--modules/middleware/context.go2
-rw-r--r--modules/middleware/logger.go2
-rw-r--r--modules/middleware/render.go2
-rw-r--r--modules/middleware/repo.go2
-rw-r--r--routers/admin/admin.go2
-rw-r--r--routers/admin/user.go2
-rw-r--r--routers/dev/template.go2
-rw-r--r--routers/install.go2
-rw-r--r--routers/repo/branch.go3
-rw-r--r--routers/repo/commit.go2
-rw-r--r--routers/repo/issue.go2
-rw-r--r--routers/repo/pull.go2
-rw-r--r--routers/repo/repo.go2
-rw-r--r--routers/user/user.go2
-rw-r--r--web.go2
22 files changed, 24 insertions, 24 deletions
diff --git a/modules/auth/admin.go b/modules/auth/admin.go
index eccab00718..fe889c2385 100644
--- a/modules/auth/admin.go
+++ b/modules/auth/admin.go
@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
diff --git a/modules/auth/auth.go b/modules/auth/auth.go
index 361f55b2d3..4561dd831d 100644
--- a/modules/auth/auth.go
+++ b/modules/auth/auth.go
@@ -9,7 +9,7 @@ import (
"reflect"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
diff --git a/modules/auth/issue.go b/modules/auth/issue.go
index 8bf49684c6..36c8762791 100644
--- a/modules/auth/issue.go
+++ b/modules/auth/issue.go
@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
diff --git a/modules/auth/repo.go b/modules/auth/repo.go
index 2cc93744ce..eddd647528 100644
--- a/modules/auth/repo.go
+++ b/modules/auth/repo.go
@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
diff --git a/modules/auth/setting.go b/modules/auth/setting.go
index 0bc6afd4a6..cada7eea66 100644
--- a/modules/auth/setting.go
+++ b/modules/auth/setting.go
@@ -9,7 +9,7 @@ import (
"reflect"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
diff --git a/modules/auth/user.go b/modules/auth/user.go
index 6242a11c18..2d3c29fde1 100644
--- a/modules/auth/user.go
+++ b/modules/auth/user.go
@@ -8,11 +8,10 @@ import (
"net/http"
"reflect"
- "github.com/codegangsta/martini"
-
- "github.com/gogits/session"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"
+ "github.com/gogits/session"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
diff --git a/modules/middleware/auth.go b/modules/middleware/auth.go
index f50fde99e5..bde3be7269 100644
--- a/modules/middleware/auth.go
+++ b/modules/middleware/auth.go
@@ -7,7 +7,7 @@ package middleware
import (
"net/url"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/modules/base"
)
diff --git a/modules/middleware/context.go b/modules/middleware/context.go
index 5f1d42b1e4..d2b268cd87 100644
--- a/modules/middleware/context.go
+++ b/modules/middleware/context.go
@@ -15,7 +15,7 @@ import (
"strings"
"time"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/cache"
"github.com/gogits/git"
diff --git a/modules/middleware/logger.go b/modules/middleware/logger.go
index dcf8524608..fc8e1a8115 100644
--- a/modules/middleware/logger.go
+++ b/modules/middleware/logger.go
@@ -11,7 +11,7 @@ import (
"runtime"
"time"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
)
var isWindows bool
diff --git a/modules/middleware/render.go b/modules/middleware/render.go
index 869ef9abaa..98d485afec 100644
--- a/modules/middleware/render.go
+++ b/modules/middleware/render.go
@@ -17,7 +17,7 @@ import (
"path/filepath"
"time"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/modules/base"
)
diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go
index 6912cd8380..f446d6a85b 100644
--- a/modules/middleware/repo.go
+++ b/modules/middleware/repo.go
@@ -9,7 +9,7 @@ import (
"fmt"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/git"
diff --git a/routers/admin/admin.go b/routers/admin/admin.go
index f303439fd1..18a43ff817 100644
--- a/routers/admin/admin.go
+++ b/routers/admin/admin.go
@@ -10,7 +10,7 @@ import (
"strings"
"time"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
diff --git a/routers/admin/user.go b/routers/admin/user.go
index 7f66c5528c..9f043507d1 100644
--- a/routers/admin/user.go
+++ b/routers/admin/user.go
@@ -7,7 +7,7 @@ package admin
import (
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
diff --git a/routers/dev/template.go b/routers/dev/template.go
index d2f77ac4d5..63d5d9a5bb 100644
--- a/routers/dev/template.go
+++ b/routers/dev/template.go
@@ -5,7 +5,7 @@
package dev
import (
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
diff --git a/routers/install.go b/routers/install.go
index cca652f9cf..2c993c559e 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -10,7 +10,7 @@ import (
"strings"
"github.com/Unknwon/goconfig"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/lunny/xorm"
"github.com/gogits/gogs/models"
diff --git a/routers/repo/branch.go b/routers/repo/branch.go
index c598db436c..ffd118ae14 100644
--- a/routers/repo/branch.go
+++ b/routers/repo/branch.go
@@ -5,7 +5,8 @@
package repo
import (
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
+
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/middleware"
)
diff --git a/routers/repo/commit.go b/routers/repo/commit.go
index 449f644391..d29c40e67e 100644
--- a/routers/repo/commit.go
+++ b/routers/repo/commit.go
@@ -8,7 +8,7 @@ import (
"container/list"
"path"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index b2253e9f48..f2d8959a04 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -9,7 +9,7 @@ import (
"net/url"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index 93b6a9f7cc..430c6a815f 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -5,7 +5,7 @@
package repo
import (
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/modules/middleware"
)
diff --git a/routers/repo/repo.go b/routers/repo/repo.go
index 5b0a165d5c..1cd3dd86ba 100644
--- a/routers/repo/repo.go
+++ b/routers/repo/repo.go
@@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/webdav"
diff --git a/routers/user/user.go b/routers/user/user.go
index aeaf91c97d..08930e22df 100644
--- a/routers/user/user.go
+++ b/routers/user/user.go
@@ -9,7 +9,7 @@ import (
"net/url"
"strings"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
diff --git a/web.go b/web.go
index 6f25271977..412dcb622b 100644
--- a/web.go
+++ b/web.go
@@ -10,7 +10,7 @@ import (
"net/http"
"github.com/codegangsta/cli"
- "github.com/codegangsta/martini"
+ "github.com/go-martini/martini"
"github.com/gogits/binding"