Skip to content

Commit 79f70d8

Browse files
committed
chore!(all): update go import path
BREAKING CHANGE: use github.com/mindoc-org/mindoc as import path
1 parent 886bc8e commit 79f70d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+275
-244
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ script:
1414
- dep ensure && GO_ENABLED=1 go build -v -x -tags "pam" && go install
1515

1616
before_deploy:
17-
- dep ensure -v && CGO_ENABLED=1 GOARCH=amd64 GOOS=linux go build -o mindoc_linux_amd64 -ldflags="-w -X github.com/lifei6671/mindoc/conf.VERSION=$TRAVIS_TAG -X 'github.com/lifei6671/mindoc/conf.BUILD_TIME=`date`' -X 'conf.GO_VERSION=`github.com/lifei6671/mindoc/go version`'"
17+
- dep ensure -v && CGO_ENABLED=1 GOARCH=amd64 GOOS=linux go build -o mindoc_linux_amd64 -ldflags="-w -X github.com/mindoc-org/mindoc/conf.VERSION=$TRAVIS_TAG -X 'github.com/mindoc-org/mindoc/conf.BUILD_TIME=`date`' -X 'conf.GO_VERSION=`github.com/mindoc-org/mindoc/go version`'"
1818
- rm -rf simsun.ttc start.sh commands controllers models modules data routers tasks vendor docs search utils graphics .git Godeps uploads/* .gitignore .travis.yml Dockerfile Gopkg.toml LICENSE main.go README.md conf/enumerate.go conf/mail.go install.lock *.md
1919
- cp conf/app.conf.example conf/app.conf
2020
- zip -r mindoc_linux_amd64.zip conf static uploads views lib mindoc_linux_amd64

Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ ENV PATH $PATH:/opt/calibre/bin
2727

2828
RUN curl -Lo /var/linux-installer.py https://download.calibre-ebook.com/linux-installer.py
2929

30-
#RUN mkdir -p /go/src/github.com/lifei6671/ && cd /go/src/github.com/lifei6671/ && git clone https://github.com/lifei6671/mindoc.git && cd mindoc
30+
#RUN mkdir -p /go/src/github.com/lifei6671/ && cd /go/src/github.com/lifei6671/ && git clone https://github.com/mindoc-org/mindoc.git && cd mindoc
3131

32-
ADD . /go/src/github.com/lifei6671/mindoc
32+
ADD . /go/src/github.com/mindoc-org/mindoc
3333

34-
WORKDIR /go/src/github.com/lifei6671/mindoc
34+
WORKDIR /go/src/github.com/mindoc-org/mindoc
3535

3636
RUN go get -u github.com/golang/dep/cmd/dep && dep ensure && \
37-
CGO_ENABLE=1 go build -v -a -o mindoc_linux_amd64 -ldflags="-w -s -X main.VERSION=$TAG -X 'main.BUILD_TIME=`date`' -X 'main.GO_VERSION=`go version`'" && \
37+
CGO_ENABLE=1 go build -v -a -o mindoc_linux_amd64 -ldflags="-w -s -X main.VERSION=$TAG -X 'main.BUILD_TIME=`date`' -X 'main.GO_VERSION=`go version`'" && \
3838
rm -rf commands controllers models modules routers tasks vendor docs search data utils graphics .git Godeps uploads/* .gitignore .travis.yml Dockerfile gide.yaml LICENSE main.go README.md conf/enumerate.go conf/mail.go install.lock simsun.ttc
3939

40-
ADD start.sh /go/src/github.com/lifei6671/mindoc
40+
ADD start.sh /go/src/github.com/mindoc-org/mindoc
4141
ADD simsun.ttc /usr/share/fonts/win/
4242

4343
FROM alpine:latest
@@ -67,7 +67,7 @@ COPY --from=build /etc/apk/keys/sgerrand.rsa.pub /etc/apk/keys/sgerrand.rsa.pub
6767
COPY --from=build /var/linux-installer.py .
6868
COPY --from=build /usr/share/fonts/win/simsun.ttc /usr/share/fonts/win/
6969
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
70-
COPY --from=build /go/src/github.com/lifei6671/mindoc /mindoc
70+
COPY --from=build /go/src/github.com/mindoc-org/mindoc /mindoc
7171

7272
RUN apk add glibc-bin.apk glibc.apk && \
7373
/usr/glibc-compat/sbin/ldconfig /lib /usr/glibc-compat/lib && \

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MinDoc 的前身是 SmartWiki 文档系统。SmartWiki 是基于 PHP 框架 lara
2525
维护权限需要作者添加,有意向者请添加下方QQ群,或通过发送邮件(`gsw945#foxmail.com`, 请替换`#``@`),私聊我加入作者所在的微信群。
2626
</details>
2727

28-
遇到问题请提 [Issues](https://github.com/lifei6671/mindoc/issues ),欢迎使用者和贡献者加入QQ群 `1051164153`
28+
遇到问题请提 [Issues](https://github.com/mindoc-org/mindoc/issues ),欢迎使用者和贡献者加入QQ群 `1051164153`
2929
<a target="_blank" href="https://qm.qq.com/cgi-bin/qm/qr?k=bHFR7P3Qp1nsSPbsTw4KN_ZpFLUAblIU&jump_from=webapi"><img border="0" src="https://pub.idqqimg.com/wpa/images/group.png" alt="MinDoc使用&amp;开发交流群" title="MinDoc使用&amp;开发交流群"></a>
3030

3131
---
@@ -36,12 +36,12 @@ MinDoc 的前身是 SmartWiki 文档系统。SmartWiki 是基于 PHP 框架 lara
3636

3737
更多信息请查看手册: [MinDoc 使用手册](https://www.iminho.me/wiki/docs/mindoc/mindoc-summary.md)
3838

39-
对于没有Golang使用经验的用户,可以从 [https://github.com/lifei6671/mindoc/releases](https://github.com/lifei6671/mindoc/releases) 这里下载编译完的程序。
39+
对于没有Golang使用经验的用户,可以从 [https://github.com/mindoc-org/mindoc/releases](https://github.com/mindoc-org/mindoc/releases) 这里下载编译完的程序。
4040

4141
如果有Golang开发经验,建议通过编译安装,在此之前,您需要先安装Golang官方包管理工具,详见[Install dep](https://golang.github.io/dep/docs/installation.html)
4242

4343
```bash
44-
git clone https://github.com/lifei6671/mindoc.git
44+
git clone https://github.com/mindoc-org/mindoc.git
4545

4646
dep ensure
4747

appveyor.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@ environment:
1616
GOARCH: amd64
1717

1818
install:
19-
2019
- ps: if($env:tbs_tools -eq 'mingw' -and $env:tbs_arch -eq 'x64')
21-
{
22-
Start-FileDownload "http://libgd.blob.core.windows.net/mingw/x86_64-4.9.1-release-posix-seh-rt_v3-rev1.7z" -FileName mingw_x86_64.7z;
23-
7z x -oC:\ mingw_x86_64.7z | out-null;
24-
}
20+
{
21+
Start-FileDownload "http://libgd.blob.core.windows.net/mingw/x86_64-4.9.1-release-posix-seh-rt_v3-rev1.7z" -FileName mingw_x86_64.7z;
22+
7z x -oC:\ mingw_x86_64.7z | out-null;
23+
}
2524
- ps: if($env:tbs_tools -eq 'mingw' -and $env:tbs_arch -eq 'x86')
26-
{
27-
Start-FileDownload "http://libgd.blob.core.windows.net/mingw/i686-4.9.1-release-posix-dwarf-rt_v3-rev1.7z" -FileName mingw_x86.7z;
28-
7z x -oC:\ mingw_x86.7z | out-null;
29-
}
25+
{
26+
Start-FileDownload "http://libgd.blob.core.windows.net/mingw/i686-4.9.1-release-posix-dwarf-rt_v3-rev1.7z" -FileName mingw_x86.7z;
27+
7z x -oC:\ mingw_x86.7z | out-null;
28+
}
3029
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
3130
- echo %PATH%
3231
- echo %GOPATH%
@@ -40,7 +39,7 @@ build_script:
4039
- for /f "delims=" %%i in ('go version') do (set GO_VERSION=%%i)
4140
- cd c:\gopath\src\github.com\lifei6671\mindoc
4241
- go mod tidy
43-
- go build -v -o "mindoc_windows_%GOARCH%.exe" -ldflags="-w -X github.com/lifei6671/mindoc/conf.VERSION=%APPVEYOR_REPO_TAG_NAME% -X 'github.com/lifei6671/mindoc/conf.BUILD_TIME=%date% %time%' -X 'conf.GO_VERSION=%GO_VERSION%'"
42+
- go build -v -o "mindoc_windows_%GOARCH%.exe" -ldflags="-w -X github.com/mindoc-org/mindoc/conf.VERSION=%APPVEYOR_REPO_TAG_NAME% -X 'github.com/mindoc-org/mindoc/conf.BUILD_TIME=%date% %time%' -X 'conf.GO_VERSION=%GO_VERSION%'"
4443
- 7z a -t7z -r mindoc_windows_%GOARCH%.7z conf/*.conf* static/* mindoc_windows_%GOARCH%.exe views/* uploads/*
4544
test_script:
4645
- mindoc_windows_%GOARCH%.exe version
@@ -58,9 +57,9 @@ artifacts:
5857
deploy:
5958
- provider: GitHub
6059
auth_token:
61-
secure: "Qkhxloft5lBKti7O+vVS+Vrxh7CBAUVhlfdZ9ptBXjFtjt6jHXnaBA2uv2OYbISB"
60+
secure: "Qkhxloft5lBKti7O+vVS+Vrxh7CBAUVhlfdZ9ptBXjFtjt6jHXnaBA2uv2OYbISB"
6261
draft: false
6362
prerelease: false
64-
artifact: mindoc_windows_%GOARCH%.7z
63+
artifact: mindoc_windows_%GOARCH%.7z
6564
on:
6665
appveyor_repo_tag: true

commands/command.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import (
1313

1414
"bytes"
1515
"encoding/json"
16+
"net/http"
17+
1618
"github.com/astaxie/beego"
1719
beegoCache "github.com/astaxie/beego/cache"
1820
_ "github.com/astaxie/beego/cache/memcache"
@@ -22,11 +24,10 @@ import (
2224
"github.com/astaxie/beego/orm"
2325
"github.com/howeyc/fsnotify"
2426
"github.com/lifei6671/gocaptcha"
25-
"github.com/lifei6671/mindoc/cache"
26-
"github.com/lifei6671/mindoc/conf"
27-
"github.com/lifei6671/mindoc/models"
28-
"github.com/lifei6671/mindoc/utils/filetil"
29-
"net/http"
27+
"github.com/mindoc-org/mindoc/cache"
28+
"github.com/mindoc-org/mindoc/conf"
29+
"github.com/mindoc-org/mindoc/models"
30+
"github.com/mindoc-org/mindoc/utils/filetil"
3031
)
3132

3233
// RegisterDataBase 注册数据库

commands/daemon/daemon.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ import (
44
"fmt"
55
"os"
66

7+
"path/filepath"
8+
79
"github.com/astaxie/beego"
810
"github.com/kardianos/service"
9-
"github.com/lifei6671/mindoc/commands"
10-
"github.com/lifei6671/mindoc/conf"
11-
"github.com/lifei6671/mindoc/controllers"
12-
"path/filepath"
11+
"github.com/mindoc-org/mindoc/commands"
12+
"github.com/mindoc-org/mindoc/conf"
13+
"github.com/mindoc-org/mindoc/controllers"
1314
)
1415

1516
type Daemon struct {

commands/install.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ import (
55
"os"
66
"time"
77

8-
"github.com/astaxie/beego/orm"
9-
"github.com/lifei6671/mindoc/conf"
10-
"github.com/lifei6671/mindoc/models"
118
"flag"
12-
"github.com/lifei6671/mindoc/utils"
9+
1310
"github.com/astaxie/beego"
11+
"github.com/astaxie/beego/orm"
12+
"github.com/mindoc-org/mindoc/conf"
13+
"github.com/mindoc-org/mindoc/models"
14+
"github.com/mindoc-org/mindoc/utils"
1415
)
1516

1617
//系统安装.

commands/migrate/migrate.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ import (
1818

1919
"container/list"
2020
"fmt"
21+
"log"
22+
2123
"github.com/astaxie/beego"
2224
"github.com/astaxie/beego/orm"
23-
"github.com/lifei6671/mindoc/models"
24-
"log"
25+
"github.com/mindoc-org/mindoc/models"
2526
)
2627

2728
var (

commands/migrate/migrate_v03.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ package migrate
33
import (
44
"errors"
55
"fmt"
6-
"github.com/astaxie/beego/orm"
7-
"github.com/lifei6671/mindoc/models"
86
"strings"
97
"time"
8+
9+
"github.com/astaxie/beego/orm"
10+
"github.com/mindoc-org/mindoc/models"
1011
)
1112

1213
type MigrationVersion03 struct {

commands/update.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99

1010
"github.com/astaxie/beego"
11-
"github.com/lifei6671/mindoc/conf"
11+
"github.com/mindoc-org/mindoc/conf"
1212
)
1313

1414
//检查最新版本.

controllers/AccountController.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import (
66
"strings"
77
"time"
88

9+
"html/template"
10+
911
"github.com/astaxie/beego"
1012
"github.com/lifei6671/gocaptcha"
11-
"github.com/lifei6671/mindoc/conf"
12-
"github.com/lifei6671/mindoc/mail"
13-
"github.com/lifei6671/mindoc/models"
14-
"github.com/lifei6671/mindoc/utils"
15-
"html/template"
13+
"github.com/mindoc-org/mindoc/conf"
14+
"github.com/mindoc-org/mindoc/mail"
15+
"github.com/mindoc-org/mindoc/models"
16+
"github.com/mindoc-org/mindoc/utils"
1617
)
1718

1819
// AccountController 用户登录与注册

controllers/BaseController.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ import (
88
"strings"
99
"time"
1010

11-
"github.com/astaxie/beego"
12-
"github.com/lifei6671/mindoc/conf"
13-
"github.com/lifei6671/mindoc/models"
14-
"github.com/lifei6671/mindoc/utils"
15-
"path/filepath"
16-
"io/ioutil"
1711
"html/template"
12+
"io/ioutil"
13+
"path/filepath"
14+
15+
"github.com/astaxie/beego"
16+
"github.com/mindoc-org/mindoc/conf"
17+
"github.com/mindoc-org/mindoc/models"
18+
"github.com/mindoc-org/mindoc/utils"
1819
)
1920

2021
type BaseController struct {

controllers/BlogController.go

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
package controllers
22

33
import (
4-
"strings"
5-
"github.com/lifei6671/mindoc/models"
6-
"time"
7-
"github.com/astaxie/beego"
8-
"github.com/lifei6671/mindoc/conf"
9-
"github.com/lifei6671/mindoc/utils/pagination"
10-
"strconv"
4+
"encoding/json"
115
"fmt"
12-
"os"
6+
"html/template"
137
"net/http"
8+
"net/url"
9+
"os"
1410
"path/filepath"
11+
"strconv"
12+
"strings"
13+
"time"
14+
15+
"github.com/astaxie/beego"
1516
"github.com/astaxie/beego/orm"
16-
"html/template"
17-
"encoding/json"
18-
"github.com/lifei6671/mindoc/utils"
19-
"net/url"
17+
"github.com/mindoc-org/mindoc/conf"
18+
"github.com/mindoc-org/mindoc/models"
19+
"github.com/mindoc-org/mindoc/utils"
20+
"github.com/mindoc-org/mindoc/utils/pagination"
2021
)
2122

2223
type BlogController struct {

controllers/BookController.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"encoding/json"
55
"errors"
66
"fmt"
7-
"github.com/lifei6671/mindoc/utils/sqltil"
87
"html/template"
98
"os"
109
"path/filepath"
@@ -13,16 +12,18 @@ import (
1312
"strings"
1413
"time"
1514

15+
"github.com/mindoc-org/mindoc/utils/sqltil"
16+
1617
"net/http"
1718

1819
"github.com/astaxie/beego"
1920
"github.com/astaxie/beego/logs"
2021
"github.com/astaxie/beego/orm"
21-
"github.com/lifei6671/mindoc/conf"
22-
"github.com/lifei6671/mindoc/graphics"
23-
"github.com/lifei6671/mindoc/models"
24-
"github.com/lifei6671/mindoc/utils"
25-
"github.com/lifei6671/mindoc/utils/pagination"
22+
"github.com/mindoc-org/mindoc/conf"
23+
"github.com/mindoc-org/mindoc/graphics"
24+
"github.com/mindoc-org/mindoc/models"
25+
"github.com/mindoc-org/mindoc/utils"
26+
"github.com/mindoc-org/mindoc/utils/pagination"
2627
"gopkg.in/russross/blackfriday.v2"
2728
)
2829

controllers/BookMemberController.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package controllers
33
import (
44
"errors"
55

6+
"github.com/astaxie/beego"
67
"github.com/astaxie/beego/logs"
78
"github.com/astaxie/beego/orm"
8-
"github.com/lifei6671/mindoc/conf"
9-
"github.com/lifei6671/mindoc/models"
10-
"github.com/astaxie/beego"
9+
"github.com/mindoc-org/mindoc/conf"
10+
"github.com/mindoc-org/mindoc/models"
1111
)
1212

1313
type BookMemberController struct {

controllers/DocumentController.go

+14-13
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,6 @@ package controllers
33
import (
44
"encoding/json"
55
"fmt"
6-
"github.com/astaxie/beego"
7-
"github.com/astaxie/beego/logs"
8-
"github.com/astaxie/beego/orm"
9-
"github.com/boombuler/barcode"
10-
"github.com/boombuler/barcode/qr"
11-
"github.com/lifei6671/mindoc/conf"
12-
"github.com/lifei6671/mindoc/models"
13-
"github.com/lifei6671/mindoc/utils"
14-
"github.com/lifei6671/mindoc/utils/cryptil"
15-
"github.com/lifei6671/mindoc/utils/filetil"
16-
"github.com/lifei6671/mindoc/utils/gopool"
17-
"github.com/lifei6671/mindoc/utils/pagination"
18-
"gopkg.in/russross/blackfriday.v2"
196
"html/template"
207
"image/png"
218
"net/http"
@@ -26,6 +13,20 @@ import (
2613
"strconv"
2714
"strings"
2815
"time"
16+
17+
"github.com/astaxie/beego"
18+
"github.com/astaxie/beego/logs"
19+
"github.com/astaxie/beego/orm"
20+
"github.com/boombuler/barcode"
21+
"github.com/boombuler/barcode/qr"
22+
"github.com/mindoc-org/mindoc/conf"
23+
"github.com/mindoc-org/mindoc/models"
24+
"github.com/mindoc-org/mindoc/utils"
25+
"github.com/mindoc-org/mindoc/utils/cryptil"
26+
"github.com/mindoc-org/mindoc/utils/filetil"
27+
"github.com/mindoc-org/mindoc/utils/gopool"
28+
"github.com/mindoc-org/mindoc/utils/pagination"
29+
"gopkg.in/russross/blackfriday.v2"
2930
)
3031

3132
// DocumentController struct

controllers/HomeController.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ package controllers
22

33
import (
44
"math"
5-
"github.com/astaxie/beego"
6-
"github.com/lifei6671/mindoc/models"
7-
"github.com/lifei6671/mindoc/utils/pagination"
8-
"github.com/lifei6671/mindoc/conf"
95
"net/url"
6+
7+
"github.com/astaxie/beego"
8+
"github.com/mindoc-org/mindoc/conf"
9+
"github.com/mindoc-org/mindoc/models"
10+
"github.com/mindoc-org/mindoc/utils/pagination"
1011
)
1112

1213
type HomeController struct {

0 commit comments

Comments
 (0)