Pārlūkot izejas kodu

Change new martini impot path

tags/v0.9.99
Unknown pirms 10 gadiem
vecāks
revīzija
d0e6a4c25a

+ 1
- 1
modules/auth/admin.go Parādīt failu

@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


+ 1
- 1
modules/auth/auth.go Parādīt failu

@@ -9,7 +9,7 @@ import (
"reflect"
"strings"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


+ 1
- 1
modules/auth/issue.go Parādīt failu

@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


+ 1
- 1
modules/auth/repo.go Parādīt failu

@@ -8,7 +8,7 @@ import (
"net/http"
"reflect"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


+ 1
- 1
modules/auth/setting.go Parādīt failu

@@ -9,7 +9,7 @@ import (
"reflect"
"strings"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


+ 2
- 3
modules/auth/user.go Parādīt failu

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

+ 1
- 1
modules/middleware/auth.go Parādīt failu

@@ -7,7 +7,7 @@ package middleware
import (
"net/url"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/gogs/modules/base"
)

+ 1
- 1
modules/middleware/context.go Parādīt failu

@@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/cache"
"github.com/gogits/git"

+ 1
- 1
modules/middleware/logger.go Parādīt failu

@@ -11,7 +11,7 @@ import (
"runtime"
"time"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"
)

var isWindows bool

+ 1
- 1
modules/middleware/render.go Parādīt failu

@@ -17,7 +17,7 @@ import (
"path/filepath"
"time"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/gogs/modules/base"
)

+ 1
- 1
modules/middleware/repo.go Parādīt failu

@@ -9,7 +9,7 @@ import (
"fmt"
"strings"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/git"


+ 1
- 1
routers/admin/admin.go Parādīt failu

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

+ 1
- 1
routers/admin/user.go Parādīt failu

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

+ 1
- 1
routers/dev/template.go Parādīt failu

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

+ 1
- 1
routers/install.go Parādīt failu

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

+ 2
- 1
routers/repo/branch.go Parādīt failu

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

+ 1
- 1
routers/repo/commit.go Parādīt failu

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

+ 1
- 1
routers/repo/issue.go Parādīt failu

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

+ 1
- 1
routers/repo/pull.go Parādīt failu

@@ -5,7 +5,7 @@
package repo

import (
"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/gogs/modules/middleware"
)

+ 1
- 1
routers/repo/repo.go Parādīt failu

@@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"

"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/webdav"


+ 1
- 1
routers/user/user.go Parādīt failu

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

+ 1
- 1
web.go Parādīt failu

@@ -10,7 +10,7 @@ import (
"net/http"

"github.com/codegangsta/cli"
"github.com/codegangsta/martini"
"github.com/go-martini/martini"

"github.com/gogits/binding"


Notiek ielāde…
Atcelt
Saglabāt