Browse Source

Change new martini impot path

pull/47/head
Unknown 11 years ago
parent
commit
d0e6a4c25a
  1. 2
      modules/auth/admin.go
  2. 2
      modules/auth/auth.go
  3. 2
      modules/auth/issue.go
  4. 2
      modules/auth/repo.go
  5. 2
      modules/auth/setting.go
  6. 5
      modules/auth/user.go
  7. 2
      modules/middleware/auth.go
  8. 2
      modules/middleware/context.go
  9. 2
      modules/middleware/logger.go
  10. 2
      modules/middleware/render.go
  11. 2
      modules/middleware/repo.go
  12. 2
      routers/admin/admin.go
  13. 2
      routers/admin/user.go
  14. 2
      routers/dev/template.go
  15. 2
      routers/install.go
  16. 3
      routers/repo/branch.go
  17. 2
      routers/repo/commit.go
  18. 2
      routers/repo/issue.go
  19. 2
      routers/repo/pull.go
  20. 2
      routers/repo/repo.go
  21. 2
      routers/user/user.go
  22. 2
      web.go

2
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"

2
modules/auth/auth.go

@ -9,7 +9,7 @@ import (
"reflect"
"strings"
"github.com/codegangsta/martini"
"github.com/go-martini/martini"
"github.com/gogits/binding"

2
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"

2
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"

2
modules/auth/setting.go

@ -9,7 +9,7 @@ import (
"reflect"
"strings"
"github.com/codegangsta/martini"
"github.com/go-martini/martini"
"github.com/gogits/binding"

5
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"

2
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"
)

2
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"

2
modules/middleware/logger.go

@ -11,7 +11,7 @@ import (
"runtime"
"time"
"github.com/codegangsta/martini"
"github.com/go-martini/martini"
)
var isWindows bool

2
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"
)

2
modules/middleware/repo.go

@ -9,7 +9,7 @@ import (
"fmt"
"strings"
"github.com/codegangsta/martini"
"github.com/go-martini/martini"
"github.com/gogits/git"

2
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"

2
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"

2
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"

2
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"

3
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"
)

2
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"

2
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"

2
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"
)

2
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"

2
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"

2
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"

Loading…
Cancel
Save