aboutsummaryrefslogtreecommitdiff
path: root/routers
diff options
context:
space:
mode:
Diffstat (limited to 'routers')
-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
10 files changed, 11 insertions, 10 deletions
diff --git a/routers/admin/admin.go b/routers/admin/admin.go
index f303439f..18a43ff8 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 7f66c552..9f043507 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 d2f77ac4..63d5d9a5 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 cca652f9..2c993c55 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 c598db43..ffd118ae 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 449f6443..d29c40e6 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 b2253e9f..f2d8959a 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 93b6a9f7..430c6a81 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 5b0a165d..1cd3dd86 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 aeaf91c9..08930e22 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"