Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
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-1
Commits
c62050b9
Unverified
Commit
c62050b9
authored
Feb 10, 2020
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
♻
重构请求路由 #61
parent
74cabe38
Changes
8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
91 additions
and
92 deletions
+91
-92
package-lock.json
package-lock.json
+81
-81
pom.xml
pom.xml
+4
-4
src/main/java/org/b3log/solo/model/Option.java
src/main/java/org/b3log/solo/model/Option.java
+1
-1
src/main/java/org/b3log/solo/processor/FeedProcessor.java
src/main/java/org/b3log/solo/processor/FeedProcessor.java
+1
-2
src/main/java/org/b3log/solo/processor/console/PreferenceConsole.java
...a/org/b3log/solo/processor/console/PreferenceConsole.java
+1
-1
src/main/java/org/b3log/solo/service/UserMgmtService.java
src/main/java/org/b3log/solo/service/UserMgmtService.java
+1
-1
src/test/java/org/b3log/solo/service/UserMgmtServiceTestCase.java
.../java/org/b3log/solo/service/UserMgmtServiceTestCase.java
+1
-1
src/test/java/org/b3log/solo/service/UserQueryServiceTestCase.java
...java/org/b3log/solo/service/UserQueryServiceTestCase.java
+1
-1
No files found.
package-lock.json
View file @
c62050b9
This diff is collapsed.
Click to expand it.
pom.xml
View file @
c62050b9
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
<!--
Description: Solo POM.
Description: Solo POM.
Version: 3.18.3.8
3, Feb 3
, 2020
Version: 3.18.3.8
4, Feb 10
, 2020
Author: <a href="http://88250.b3log.org">Liang Ding</a>
Author: <a href="http://88250.b3log.org">Liang Ding</a>
Author: <a href="http://www.annpeter.cn">Ann Peter</a>
Author: <a href="http://www.annpeter.cn">Ann Peter</a>
Author: <a href="http://vanessa.b3log.org">Vanessa</a>
Author: <a href="http://vanessa.b3log.org">Vanessa</a>
Author: <a href="https://
github.com
/nanolikeyou">nanolikeyou</a>
Author: <a href="https://
hacpai.com/member
/nanolikeyou">nanolikeyou</a>
Author: <a href="https://
github.com
/hzchendou">hzchendou</a>
Author: <a href="https://
hacpai.com/member
/hzchendou">hzchendou</a>
-->
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
</scm>
</scm>
<properties>
<properties>
<org.b3log.latke.version>
3.2.4
-SNAPSHOT
</org.b3log.latke.version>
<org.b3log.latke.version>
3.2.4
</org.b3log.latke.version>
<jsoup.version>
1.12.1
</jsoup.version>
<jsoup.version>
1.12.1
</jsoup.version>
<flexmark.version>
0.50.40
</flexmark.version>
<flexmark.version>
0.50.40
</flexmark.version>
...
...
src/main/java/org/b3log/solo/model/Option.java
View file @
c62050b9
...
@@ -25,7 +25,7 @@ import org.json.JSONObject;
...
@@ -25,7 +25,7 @@ import org.json.JSONObject;
* This class defines option model relevant keys.
* This class defines option model relevant keys.
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://
github.com
/hzchendou">hzchendou</a>
* @author <a href="https://
hacpai.com/member
/hzchendou">hzchendou</a>
* @version 1.6.0.5, Jan 25, 2020
* @version 1.6.0.5, Jan 25, 2020
* @since 0.6.0
* @since 0.6.0
*/
*/
...
...
src/main/java/org/b3log/solo/processor/FeedProcessor.java
View file @
c62050b9
...
@@ -56,8 +56,7 @@ import java.util.List;
...
@@ -56,8 +56,7 @@ import java.util.List;
* Feed (Atom/RSS) processor.
* Feed (Atom/RSS) processor.
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://github.com/feroozkhanchintu">feroozkhanchintu</a>
* @author <a href="https://hacpai.com/member/nanolikeyou">nanolikeyou</a>
* @author <a href="https://github.com/nanolikeyou">nanolikeyou</a>
* @version 3.0.0.0, Feb 9, 2020
* @version 3.0.0.0, Feb 9, 2020
* @since 0.3.1
* @since 0.3.1
*/
*/
...
...
src/main/java/org/b3log/solo/processor/console/PreferenceConsole.java
View file @
c62050b9
...
@@ -39,7 +39,7 @@ import org.json.JSONObject;
...
@@ -39,7 +39,7 @@ import org.json.JSONObject;
* Preference console request processing.
* Preference console request processing.
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://
github.com
/hzchendou">hzchendou</a>
* @author <a href="https://
hacpai.com/member
/hzchendou">hzchendou</a>
* @version 2.0.0.0, Feb 9, 2020
* @version 2.0.0.0, Feb 9, 2020
* @since 0.4.0
* @since 0.4.0
*/
*/
...
...
src/main/java/org/b3log/solo/service/UserMgmtService.java
View file @
c62050b9
...
@@ -46,7 +46,7 @@ import org.json.JSONObject;
...
@@ -46,7 +46,7 @@ import org.json.JSONObject;
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://hacpai.com/member/DASHU">DASHU</a>
* @author <a href="https://hacpai.com/member/DASHU">DASHU</a>
* @author <a href="https://
github.com
/nanolikeyou">nanolikeyou</a>
* @author <a href="https://
hacpai.com/member
/nanolikeyou">nanolikeyou</a>
* @version 1.1.0.19, Jun 6, 2019
* @version 1.1.0.19, Jun 6, 2019
* @since 0.4.0
* @since 0.4.0
*/
*/
...
...
src/test/java/org/b3log/solo/service/UserMgmtServiceTestCase.java
View file @
c62050b9
...
@@ -30,7 +30,7 @@ import org.testng.annotations.Test;
...
@@ -30,7 +30,7 @@ import org.testng.annotations.Test;
* {@link UserMgmtService} test case.
* {@link UserMgmtService} test case.
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://
github.com
/nanolikeyou">nanolikeyou</a>
* @author <a href="https://
hacpai.com/member
/nanolikeyou">nanolikeyou</a>
* @version 1.0.0.5, Aug 2, 2018
* @version 1.0.0.5, Aug 2, 2018
*/
*/
@Test
(
suiteName
=
"service"
)
@Test
(
suiteName
=
"service"
)
...
...
src/test/java/org/b3log/solo/service/UserQueryServiceTestCase.java
View file @
c62050b9
...
@@ -29,7 +29,7 @@ import org.testng.annotations.Test;
...
@@ -29,7 +29,7 @@ import org.testng.annotations.Test;
* {@link UserQueryService} test case.
* {@link UserQueryService} test case.
*
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="https://
github.com
/nanolikeyou">nanolikeyou</a>
* @author <a href="https://
hacpai.com/member
/nanolikeyou">nanolikeyou</a>
* @version 1.0.0.3, Feb 11, 2019
* @version 1.0.0.3, Feb 11, 2019
*/
*/
@Test
(
suiteName
=
"service"
)
@Test
(
suiteName
=
"service"
)
...
...
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