aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-27 07:26:03 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-27 07:26:03 -0400
commitce679cce52d8939fb75b4bad322738dc1d97bb4e (patch)
tree6de6a5c8d2e4d6749a67ff8353a5335351631c66
parentbc1abb010dde0fa657c43dd3777ba55e59087b11 (diff)
downloadgitea-ce679cce52d8939fb75b4bad322738dc1d97bb4e.tar.gz
gitea-ce679cce52d8939fb75b4bad322738dc1d97bb4e.zip
Update Wiki
-rw-r--r--README.md2
-rw-r--r--README_ZH.md2
-rw-r--r--models/repo.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 47f4bd515b..064b5488af 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ More importantly, Gogs only needs one binary to setup your own project hosting o
## Overview
-- Please see [Wiki](https://github.com/gogits/gogs/wiki) for project design, develop specification, change log and road map.
+- Please see [Wiki](https://github.com/gogits/gogs/wiki) for project design, known issues, change log and road map.
- See [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) to follow the develop team.
- Try it before anything? Do it [online](http://try.gogits.org/Unknown/gogs) or go down to **Installation -> Install from binary** section!
- Having troubles? Get help from [Troubleshooting](https://github.com/gogits/gogs/wiki/Troubleshooting).
diff --git a/README_ZH.md b/README_ZH.md
index 9c9f4b3980..002d9d788d 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -15,7 +15,7 @@ Gogs 完全使用 Go 语言来实现对 Git 数据的操作,实现 **零** 依
## 项目概览
-- 有关项目设计、开发说明、变更日志和路线图,请通过 [Wiki](https://github.com/gogits/gogs/wiki) 查看。
+- 有关项目设计、已知问题、变更日志和路线图,请通过 [Wiki](https://github.com/gogits/gogs/wiki) 查看。
- 您可以到 [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) 跟随开发团队的脚步。
- 想要先睹为快?通过 [在线体验](http://try.gogits.org/Unknown/gogs) 或查看 **安装部署 -> 二进制安装** 小节。
- 使用过程中遇到问题?尝试从 [故障排查](https://github.com/gogits/gogs/wiki/Troubleshooting) 页面获取帮助。
diff --git a/models/repo.go b/models/repo.go
index 0ef049cc6e..e74643577a 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -104,7 +104,7 @@ func IsRepositoryExist(user *User, repoName string) (bool, error) {
var (
// Define as all lower case!!
- illegalPatterns = []string{"[.][Gg][Ii][Tt]", "raw", "user", "help", "stars", "issues", "pulls", "commits", "admin", "repo", "template", "admin"}
+ illegalPatterns = []string{"[.][Gg][Ii][Tt]", "raw", "user", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin"}
)
// IsLegalName returns false if name contains illegal characters.