Skip to content

Commit

Permalink
add: 论坛v2完成
Browse files Browse the repository at this point in the history
add: 主版本号升级到2.0
  • Loading branch information
wendal committed Oct 3, 2015
1 parent 8072458 commit 8f2aaf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ http://nutzbook.wendal.net/jars/
* Quartz计划任务集成
* Shiro集成及权限管理
* Ehcache及DaoCache集成
* snakerflow工作流集成(未全部完成)
* 自定义表单(未全部完成)
* redis 集成(配置及拦截器应用)
* sockerio 集成及demo聊天工具
* jetbrick模板集成
* beetl模板集成及应用
* 二维码生成及跨屏登陆
* 声明式系统日志
* 基于socialauth的Oauth登陆(客户端,非服务器端实现)
* 集成极光推送(jpush)
* snakerflow工作流集成(未全部完成)
* 自定义表单(未全部完成)

## 在线演示地址

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<modelVersion>4.0.0</modelVersion>
<groupId>nutzbook</groupId>
<artifactId>nutzbook</artifactId>
<version>1.3.2</version>
<packaging>war</packaging>
<url>https://github.com/wendal/nutz-book-project</url>
<properties>
Expand Down Expand Up @@ -318,4 +317,5 @@
<version>1.8.3</version>
</dependency>
</dependencies>
<version>2.0.0</version>
</project>
2 changes: 1 addition & 1 deletion src/net/wendal/nutzbook/module/yvr/YvrModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public Object topic(String id, HttpSession session, @Attr(scope = Scope.SESSION,
topic.setVisitCount((visited == null) ? 0 : visited.intValue());
if (topic.getUserId() == 0)
topic.setUserId(1);
dao.fetchLinks(topic, "author");
topic.setAuthor(fetch_userprofile(topic.getUserId()));
dao.fetchLinks(topic, "replies", Cnd.orderBy().asc("createTime"));
for (TopicReply reply : topic.getReplies()) {
if (reply.getUserId() == 0)
Expand Down

0 comments on commit 8f2aaf6

Please sign in to comment.