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
82f15db9
Unverified
Commit
82f15db9
authored
Mar 20, 2019
by
Van
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
♻
parent
c1a61d6e
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
10 additions
and
9 deletions
+10
-9
src/main/java/org/b3log/solo/plugin/list/ListHandler.java
src/main/java/org/b3log/solo/plugin/list/ListHandler.java
+2
-1
src/main/webapp/admin/article-pwd.ftl
src/main/webapp/admin/article-pwd.ftl
+1
-1
src/main/webapp/common-template/kill-browser.ftl
src/main/webapp/common-template/kill-browser.ftl
+1
-1
src/main/webapp/common-template/macro-comment_script.ftl
src/main/webapp/common-template/macro-comment_script.ftl
+0
-0
src/main/webapp/common-template/macro-common_page.ftl
src/main/webapp/common-template/macro-common_page.ftl
+0
-0
src/main/webapp/common-template/start.ftl
src/main/webapp/common-template/start.ftl
+1
-1
src/main/webapp/error/401.ftl
src/main/webapp/error/401.ftl
+1
-1
src/main/webapp/error/403.ftl
src/main/webapp/error/403.ftl
+1
-1
src/main/webapp/error/404.ftl
src/main/webapp/error/404.ftl
+1
-1
src/main/webapp/error/500.ftl
src/main/webapp/error/500.ftl
+1
-1
src/main/webapp/skins
src/main/webapp/skins
+1
-1
No files found.
src/main/java/org/b3log/solo/plugin/list/ListHandler.java
View file @
82f15db9
...
...
@@ -37,6 +37,7 @@ import java.util.List;
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="http://www.annpeter.cn">Ann Peter</a>
* @author <a href="http://vanessa.b3log.org">Vanessa</a>
* @version 1.0.2.2, Mar 19, 2019
* @since 0.6.7
*/
...
...
@@ -64,7 +65,7 @@ public class ListHandler extends AbstractEventListener<JSONObject> {
final
String
id
=
"b3_solo_"
+
tagName
+
"_"
+
i
;
element
.
before
(
"<span id='"
+
id
+
"'></span>"
);
final
JSONObject
li
=
new
JSONObject
().
put
(
"class
"
,
"b3-solo-list-
"
+
tagName
).
put
(
"class
Name"
,
"toc__
"
+
tagName
).
put
(
"id"
,
id
).
put
(
"text"
,
text
);
toc
.
add
(
li
);
...
...
src/main/webapp/admin/article-pwd.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "../common-template/macro-common
-
page.ftl">
<#include "../common-template/macro-common
_
page.ftl">
<@commonPage "${articleViewPwdLabel}">
<h2>
...
...
src/main/webapp/common-template/kill-browser.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "macro-common
-
page.ftl">
<#include "macro-common
_
page.ftl">
<@commonPage "Kill IE!">
<div class="kill">
...
...
src/main/webapp/common-template/macro-comment
-
script.ftl
→
src/main/webapp/common-template/macro-comment
_
script.ftl
View file @
82f15db9
File moved
src/main/webapp/common-template/macro-common
-
page.ftl
→
src/main/webapp/common-template/macro-common
_
page.ftl
View file @
82f15db9
File moved
src/main/webapp/common-template/start.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "macro-common
-
page.ftl">
<#include "macro-common
_
page.ftl">
<@commonPage "${welcomeToSoloLabel}!">
<h2>
...
...
src/main/webapp/error/401.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "../common-template/macro-common
-
page.ftl">
<#include "../common-template/macro-common
_
page.ftl">
<@commonPage "401 Unauthorized!">
<h2>401 Unauthorized!</h2>
...
...
src/main/webapp/error/403.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "../common-template/macro-common
-
page.ftl">
<#include "../common-template/macro-common
_
page.ftl">
<@commonPage "403 Forbidden!">
<h2>403 Forbidden!</h2>
...
...
src/main/webapp/error/404.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "../common-template/macro-common
-
page.ftl">
<#include "../common-template/macro-common
_
page.ftl">
<@commonPage "404 Not Found!">
<h2>404 Not Found!</h2>
...
...
src/main/webapp/error/500.ftl
View file @
82f15db9
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#include "../common-template/macro-common
-
page.ftl">
<#include "../common-template/macro-common
_
page.ftl">
<@commonPage "500 Internal Server Error!">
<h2>500 Internal Server Error!</h2>
...
...
skins
@
1605dcee
Subproject commit
20a63cbe495cf1343557668b60eafe6946aa4b1c
Subproject commit
1605dceed8fe66f27f266881e237957248d23fb7
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