Browse Source

rename import path

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
8ac9d9b4c7
22 changed files with 23 additions and 21 deletions
  1. +1
    -1
      cmd/web.go
  2. +2
    -0
      conf/locale/TRANSLATORS
  3. +1
    -1
      models/action.go
  4. +1
    -1
      models/git_diff.go
  5. +1
    -1
      models/pull.go
  6. +1
    -1
      models/release.go
  7. +1
    -1
      models/repo.go
  8. +1
    -1
      models/update.go
  9. +1
    -1
      models/user.go
  10. +1
    -1
      models/webhook_slack.go
  11. +1
    -1
      models/wiki.go
  12. +1
    -1
      modules/middleware/context.go
  13. +1
    -1
      modules/middleware/repo.go
  14. +1
    -1
      routers/api/v1/repo/file.go
  15. +1
    -1
      routers/install.go
  16. +1
    -1
      routers/repo/commit.go
  17. +1
    -1
      routers/repo/download.go
  18. +1
    -1
      routers/repo/pull.go
  19. +1
    -1
      routers/repo/repo.go
  20. +1
    -1
      routers/repo/setting.go
  21. +1
    -1
      routers/repo/view.go
  22. +1
    -1
      routers/repo/wiki.go

+ 1
- 1
cmd/web.go View File

@@ -29,7 +29,7 @@ import (
"gopkg.in/ini.v1"
"gopkg.in/macaron.v1"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


+ 2
- 0
conf/locale/TRANSLATORS View File

@@ -8,12 +8,14 @@ Andrey Nering <andrey AT nering DOT com DOT br>
Arthur Aslanyan <arthur DOT e DOT aslanyan AT gmail DOT com>
Barış Arda Yılmaz <ardayilmazgamer AT gmail DOT com>
Christoph Kisfeld <christoph DOT kisfeld AT gmail DOT com>
Cysioland
Daniel Speichert <daniel AT speichert DOT pl>
Dmitriy Nogay <me AT catwhocode DOT ga>
Gregor Santner <gdev AT live DOT de>
Hamid Feizabadi <hamidfzm AT gmail DOT com>
Huimin Wang <wanghm2009 AT hotmail DOT co DOT jp>
ilko
Ilya Makarov
Lafriks <lafriks AT gmail DOT com>
Lauri Ojansivu <x AT xet7 DOT org>
Luc Stepniewski <luc AT stepniewski DOT fr>


+ 1
- 1
models/action.go View File

@@ -17,7 +17,7 @@ import (
"github.com/Unknwon/com"
"github.com/go-xorm/xorm"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"
api "github.com/gogits/go-gogs-client"

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


+ 1
- 1
models/git_diff.go View File

@@ -18,7 +18,7 @@ import (
"golang.org/x/net/html/charset"
"golang.org/x/text/transform"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
models/pull.go View File

@@ -14,7 +14,7 @@ import (
"github.com/Unknwon/com"
"github.com/go-xorm/xorm"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"
api "github.com/gogits/go-gogs-client"

"github.com/gogits/gogs/modules/log"


+ 1
- 1
models/release.go View File

@@ -12,7 +12,7 @@ import (

"github.com/go-xorm/xorm"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
models/repo.go View File

@@ -27,7 +27,7 @@ import (
"github.com/mcuadros/go-version"
"gopkg.in/ini.v1"

git "github.com/gogits/git-shell"
"github.com/gogits/git-module"
api "github.com/gogits/go-gogs-client"

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


+ 1
- 1
models/update.go View File

@@ -10,7 +10,7 @@ import (
"os/exec"
"strings"

git "github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
models/user.go View File

@@ -25,7 +25,7 @@ import (
"github.com/go-xorm/xorm"
"github.com/nfnt/resize"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
models/webhook_slack.go View File

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

"github.com/gogits/git-shell"
"github.com/gogits/git-module"
api "github.com/gogits/go-gogs-client"
)



+ 1
- 1
models/wiki.go View File

@@ -15,7 +15,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
modules/middleware/context.go View File

@@ -18,7 +18,7 @@ import (
"github.com/go-macaron/session"
"gopkg.in/macaron.v1"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


+ 1
- 1
modules/middleware/repo.go View File

@@ -11,7 +11,7 @@ import (

"gopkg.in/macaron.v1"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/log"


+ 1
- 1
routers/api/v1/repo/file.go View File

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

import (
"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
routers/install.go View File

@@ -17,7 +17,7 @@ import (
"gopkg.in/ini.v1"
"gopkg.in/macaron.v1"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/models/cron"


+ 1
- 1
routers/repo/commit.go View File

@@ -10,7 +10,7 @@ import (

"github.com/Unknwon/paginater"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
routers/repo/download.go View File

@@ -8,7 +8,7 @@ import (
"io"
"path"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
routers/repo/pull.go View File

@@ -11,7 +11,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


+ 1
- 1
routers/repo/repo.go View File

@@ -12,7 +12,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


+ 1
- 1
routers/repo/setting.go View File

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

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


+ 1
- 1
routers/repo/view.go View File

@@ -12,7 +12,7 @@ import (

"github.com/Unknwon/paginater"

git "github.com/gogits/git-shell"
"github.com/gogits/git-module"

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


+ 1
- 1
routers/repo/wiki.go View File

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

"github.com/gogits/git-shell"
"github.com/gogits/git-module"

"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"


Loading…
Cancel
Save