Skip to content

Commit

Permalink
修改协议
Browse files Browse the repository at this point in the history
  • Loading branch information
phith0n committed Jun 8, 2015
1 parent 7ec0a20 commit f6b823c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
- Mongodb: https://www.mongodb.org/
- Redis: http://redis.io/
注意,Mongodb、redis请保持端口不要对外开放(监听127.0.0.1,而不是你的外网IP),或者设置密码。
注意,mongodb版本需要在2.6及以上!不要直接apt-get安装mongodb,源里的版本普遍比较低!

- 下载Minos

Expand Down Expand Up @@ -217,12 +218,10 @@ location / {
3. Minos无需初始化数据库,直接运行mongodb即可,无需手工创建db、table等。

### TODO
1. 编写数据库初始化脚本,用来:创建索引、初始化管理员。
2. 增加SMTP方式的邮件发送方法。
3. 编写测试脚本,在py2/3环境下进行测试。
4. 增加多语言支持。
5. 增加网站底部自定义,使之可以填写:备案信息、统计代码等。
6. 增加CSS白名单过滤,防止出乱子。
1. 增加SMTP方式的邮件发送方法。
2. 编写测试脚本,在py2/3环境下进行测试。
3. 增加多语言支持。
4. 增加网站底部自定义,使之可以填写:备案信息、统计代码等。

### LICENSE
开源协议:MPL
Expand Down
2 changes: 1 addition & 1 deletion controller/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def detail_act(self, arg):
if not arg : arg = self.current_user["username"]
username = self.get_query_argument("u", default = arg)
user = yield self.db.member.find_one({
"username": {"$eq": username}
"username": username
})
if not user:
self.custom_error("不存在这个用户")
Expand Down
2 changes: 1 addition & 1 deletion templates/admin/base.htm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<footer>
<hr>
<p class="am-padding-left">© 2015 Minos, Inc. Licensed under MIT license.</p>
<p class="am-padding-left">© 2015 Minos, Inc. Licensed under MPL license.</p>
</footer>

<!--[if (gte IE 9)|!(IE)]><!-->
Expand Down

0 comments on commit f6b823c

Please sign in to comment.