Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo
Commits
f074559d
Commit
f074559d
authored
Jan 29, 2013
by
Vanessa
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.5.6' of
https://github.com/b3log/b3log-solo
into 0.5.6
parents
0b7613ce
769434f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
9 deletions
+43
-9
core/src/main/java/org/b3log/solo/processor/ArticleProcessor.java
.../main/java/org/b3log/solo/processor/ArticleProcessor.java
+6
-6
core/src/main/java/org/b3log/solo/processor/BlogProcessor.java
...src/main/java/org/b3log/solo/processor/BlogProcessor.java
+9
-2
war/src/main/webapp/CHANGE_LOGS.html
war/src/main/webapp/CHANGE_LOGS.html
+28
-1
No files found.
core/src/main/java/org/b3log/solo/processor/ArticleProcessor.java
View file @
f074559d
...
@@ -1043,8 +1043,8 @@ public final class ArticleProcessor {
...
@@ -1043,8 +1043,8 @@ public final class ArticleProcessor {
private
static
String
getTagArticlesPagedTag
(
final
String
requestURI
)
{
private
static
String
getTagArticlesPagedTag
(
final
String
requestURI
)
{
String
tagAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/tags/"
).
length
());
String
tagAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/tags/"
).
length
());
if
(
!
tagAndPageNum
.
endsWith
(
"/"
))
{
if
(
tagAndPageNum
.
endsWith
(
"/"
))
{
tagAndPageNum
+=
"/"
;
tagAndPageNum
=
StringUtils
.
removeEnd
(
tagAndPageNum
,
"/"
)
;
}
}
return
StringUtils
.
substringBefore
(
tagAndPageNum
,
"/"
);
return
StringUtils
.
substringBefore
(
tagAndPageNum
,
"/"
);
...
@@ -1069,8 +1069,8 @@ public final class ArticleProcessor {
...
@@ -1069,8 +1069,8 @@ public final class ArticleProcessor {
private
static
String
getArchivesArticlesPagedArchive
(
final
String
requestURI
)
{
private
static
String
getArchivesArticlesPagedArchive
(
final
String
requestURI
)
{
String
archiveAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/archives/"
).
length
());
String
archiveAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/archives/"
).
length
());
if
(
!
archiveAndPageNum
.
endsWith
(
"/"
))
{
if
(
archiveAndPageNum
.
endsWith
(
"/"
))
{
archiveAndPageNum
+=
"/"
;
archiveAndPageNum
=
StringUtils
.
removeEnd
(
archiveAndPageNum
,
"/"
)
;
}
}
return
StringUtils
.
substringBeforeLast
(
archiveAndPageNum
,
"/"
);
return
StringUtils
.
substringBeforeLast
(
archiveAndPageNum
,
"/"
);
...
@@ -1095,8 +1095,8 @@ public final class ArticleProcessor {
...
@@ -1095,8 +1095,8 @@ public final class ArticleProcessor {
private
static
String
getAuthorsArticlesPagedAuthorId
(
final
String
requestURI
)
{
private
static
String
getAuthorsArticlesPagedAuthorId
(
final
String
requestURI
)
{
String
authorIdAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/authors/"
).
length
());
String
authorIdAndPageNum
=
requestURI
.
substring
((
Latkes
.
getContextPath
()
+
"/articles/authors/"
).
length
());
if
(
!
authorIdAndPageNum
.
endsWith
(
"/"
))
{
if
(
authorIdAndPageNum
.
endsWith
(
"/"
))
{
authorIdAndPageNum
+=
"/"
;
authorIdAndPageNum
=
StringUtils
.
removeEnd
(
authorIdAndPageNum
,
"/"
)
;
}
}
return
StringUtils
.
substringBefore
(
authorIdAndPageNum
,
"/"
);
return
StringUtils
.
substringBefore
(
authorIdAndPageNum
,
"/"
);
...
...
core/src/main/java/org/b3log/solo/processor/BlogProcessor.java
View file @
f074559d
...
@@ -17,6 +17,7 @@ package org.b3log.solo.processor;
...
@@ -17,6 +17,7 @@ package org.b3log.solo.processor;
import
org.b3log.latke.Latkes
;
import
org.b3log.latke.Latkes
;
import
org.b3log.latke.RuntimeEnv
;
import
org.b3log.latke.servlet.HTTPRequestContext
;
import
org.b3log.latke.servlet.HTTPRequestContext
;
import
org.b3log.latke.servlet.HTTPRequestMethod
;
import
org.b3log.latke.servlet.HTTPRequestMethod
;
import
org.b3log.latke.servlet.annotation.RequestProcessing
;
import
org.b3log.latke.servlet.annotation.RequestProcessing
;
...
@@ -34,7 +35,7 @@ import org.json.JSONObject;
...
@@ -34,7 +35,7 @@ import org.json.JSONObject;
* Blog processor.
* Blog processor.
*
*
* @author <a href="mailto:DL88250@gmail.com">Liang Ding</a>
* @author <a href="mailto:DL88250@gmail.com">Liang Ding</a>
* @version 1.0.0.
1, Jul 18, 2012
* @version 1.0.0.
2, Jan 29, 2013
* @since 0.4.6
* @since 0.4.6
*/
*/
@RequestProcessor
@RequestProcessor
...
@@ -92,7 +93,13 @@ public final class BlogProcessor {
...
@@ -92,7 +93,13 @@ public final class BlogProcessor {
jsonObject
.
put
(
"servePath"
,
Latkes
.
getServePath
());
jsonObject
.
put
(
"servePath"
,
Latkes
.
getServePath
());
jsonObject
.
put
(
"staticServePath"
,
Latkes
.
getStaticServePath
());
jsonObject
.
put
(
"staticServePath"
,
Latkes
.
getStaticServePath
());
jsonObject
.
put
(
"version"
,
SoloServletListener
.
VERSION
);
jsonObject
.
put
(
"version"
,
SoloServletListener
.
VERSION
);
jsonObject
.
put
(
"runtimeEnv"
,
Latkes
.
getRuntimeEnv
());
jsonObject
.
put
(
"locale"
,
Latkes
.
getLocale
());
jsonObject
.
put
(
"locale"
,
Latkes
.
getLocale
());
jsonObject
.
put
(
"runtimeMode"
,
Latkes
.
getRuntimeMode
());
final
RuntimeEnv
runtimeEnv
=
Latkes
.
getRuntimeEnv
();
jsonObject
.
put
(
"runtimeEnv"
,
runtimeEnv
);
if
(
RuntimeEnv
.
LOCAL
==
runtimeEnv
)
{
jsonObject
.
put
(
"runtimeDatabase"
,
Latkes
.
getRuntimeDatabase
());
}
}
}
}
}
war/src/main/webapp/CHANGE_LOGS.html
View file @
f074559d
...
@@ -5,6 +5,33 @@
...
@@ -5,6 +5,33 @@
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
</head>
<body>
<body>
<h2>
Release 0.5.6 - Feb 19, 2013
</h2>
<ul>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/130"
>
130 登录用户评论时无需输入验证码
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span>
<span
style=
'background: #02e10c !important;color:#FFFFFF !important;padding: 1px 4px;'
>
feature
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/150"
>
150 支持 H2 数据库
</a>
<span
style=
'background: #02e10c !important;color:#FFFFFF !important;padding: 1px 4px;'
>
feature
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/133"
>
133 前端代理后在线人数不正常
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/141"
>
141 请求 Latke Remote APIs 时跳过初始化检查
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/142"
>
142 保存为草稿后再发布无法同步
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/148"
>
148 清空数据存储时未删除插件存储
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/149"
>
149 “随机阅读”/“相关阅读”链接错误
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/151"
>
151 OpenShift 上不显示验证码
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/159"
>
159 加密文章问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/160"
>
160 本地版内存溢出
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/164"
>
164 robots.txt 禁止抓取标签问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/169"
>
169 DateFormat 线程安全问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span>
<span
style=
'background: #e102d8 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
development
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/170"
>
170 登录页面底部链接问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/172"
>
172 GAE 版配额消耗过快问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/177"
>
177 泄漏用户密码安全问题
</a>
<span
style=
'background: #fc2929 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
bug
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/129"
>
129 摘要编辑器添加源码功能
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/132"
>
132 Markdown 编辑器显示问题
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/155"
>
155 邮件 SSL 配置
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/162"
>
162 404 页面引入公益活动
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/173"
>
173 评论快捷键提交
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/175"
>
175 社区同步文案
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/176"
>
176 更新文章提示改进
</a>
<span
style=
'background: #84b6eb !important;color:#FFFFFF !important;padding: 1px 4px;'
>
enhancement
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/147"
>
147 工程中加入 eclipse 项目配置
</a>
<span
style=
'background: #e102d8 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
development
</span></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/161"
>
161 使用 mvn 插件统一 Java 格式化
</a>
<span
style=
'background: #e102d8 !important;color:#FFFFFF !important;padding: 1px 4px;'
>
development
</span></li>
</ul>
<h2>
Release 0.5.5 - Nov 24, 2012
</h2>
<h2>
Release 0.5.5 - Nov 24, 2012
</h2>
<ul>
<ul>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/72"
>
72 非管理员登录后 TopBar 无后台入口
</a></li>
<li><a
href=
"https://github.com/b3log/b3log-solo/issues/72"
>
72 非管理员登录后 TopBar 无后台入口
</a></li>
...
@@ -390,5 +417,5 @@
...
@@ -390,5 +417,5 @@
<li><a
href=
"http://code.google.com/p/b3log-solo/issues/detail?id=2"
>
2 Tree-House 皮肤评论预览有问题
</a></li>
<li><a
href=
"http://code.google.com/p/b3log-solo/issues/detail?id=2"
>
2 Tree-House 皮肤评论预览有问题
</a></li>
</ul>
</ul>
</body>
</body>
</html>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment