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
c3adcd30
Commit
c3adcd30
authored
Oct 16, 2014
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.6.7 升级
parent
c274782e
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
32 additions
and
32 deletions
+32
-32
core/pom.xml
core/pom.xml
+2
-2
core/src/main/java/org/b3log/solo/SoloServletListener.java
core/src/main/java/org/b3log/solo/SoloServletListener.java
+10
-10
core/src/main/java/org/b3log/solo/processor/UpgradeProcessor.java
.../main/java/org/b3log/solo/processor/UpgradeProcessor.java
+2
-2
pom.xml
pom.xml
+2
-2
war/gae/pom.xml
war/gae/pom.xml
+2
-2
war/gae/src/main/resources/latke.properties
war/gae/src/main/resources/latke.properties
+2
-2
war/h2/pom.xml
war/h2/pom.xml
+2
-2
war/h2/src/main/resources/latke.properties
war/h2/src/main/resources/latke.properties
+2
-2
war/mysql/pom.xml
war/mysql/pom.xml
+2
-2
war/mysql/src/main/resources/latke.properties
war/mysql/src/main/resources/latke.properties
+2
-2
war/pom.xml
war/pom.xml
+2
-2
war/src/main/webapp/WEB-INF/appengine-web.xml
war/src/main/webapp/WEB-INF/appengine-web.xml
+2
-2
No files found.
core/pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo core.
Version: 2.0.1.
6, Apr 24
, 2014
Version: 2.0.1.
7, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -17,7 +17,7 @@
<parent>
<groupId>
org.b3log
</groupId>
<artifactId>
solo
</artifactId>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
</parent>
<dependencies>
...
...
core/src/main/java/org/b3log/solo/SoloServletListener.java
View file @
c3adcd30
...
...
@@ -15,7 +15,6 @@
*/
package
org
.
b3log
.
solo
;
import
java.util.ResourceBundle
;
import
javax.servlet.ServletContextEvent
;
import
javax.servlet.ServletRequestEvent
;
...
...
@@ -52,12 +51,11 @@ import org.b3log.solo.service.StatisticMgmtService;
import
org.b3log.solo.util.Skins
;
import
org.json.JSONObject
;
/**
* B3log Solo servlet listener.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.0.
3, Apr 24
, 2014
* @version 1.1.0.
4, Oct 16
, 2014
* @since 0.3.1
*/
public
final
class
SoloServletListener
extends
AbstractServletListener
{
...
...
@@ -65,7 +63,7 @@ public final class SoloServletListener extends AbstractServletListener {
/**
* B3log Solo version.
*/
public
static
final
String
VERSION
=
"0.6.
6
"
;
public
static
final
String
VERSION
=
"0.6.
7
"
;
/**
* Logger.
...
...
@@ -151,11 +149,13 @@ public final class SoloServletListener extends AbstractServletListener {
}
@Override
public
void
sessionCreated
(
final
HttpSessionEvent
httpSessionEvent
)
{}
public
void
sessionCreated
(
final
HttpSessionEvent
httpSessionEvent
)
{
}
// Note: This method will never invoked on GAE production environment
@Override
public
void
sessionDestroyed
(
final
HttpSessionEvent
httpSessionEvent
)
{}
public
void
sessionDestroyed
(
final
HttpSessionEvent
httpSessionEvent
)
{
}
@Override
public
void
requestInitialized
(
final
ServletRequestEvent
servletRequestEvent
)
{
...
...
core/src/main/java/org/b3log/solo/processor/UpgradeProcessor.java
View file @
c3adcd30
...
...
@@ -47,7 +47,7 @@ import org.json.JSONObject;
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="mailto:dongxu.wang@acm.org">Dongxu Wang</a>
* @version 1.1.1.1
2, Apr 24
, 2014
* @version 1.1.1.1
3, Oct 16
, 2014
* @since 0.3.1
*/
@RequestProcessor
...
...
@@ -106,7 +106,7 @@ public class UpgradeProcessor {
/**
* Old version.
*/
private
static
final
String
FROM_VER
=
"0.6.
5
"
;
private
static
final
String
FROM_VER
=
"0.6.
6
"
;
/**
* New version.
...
...
pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo parent POM.
Version: 2.0.4.1
4, Jul 18
, 2014
Version: 2.0.4.1
5, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -11,7 +11,7 @@
<groupId>
org.b3log
</groupId>
<artifactId>
solo
</artifactId>
<packaging>
pom
</packaging>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
<name>
B3log Solo
</name>
<url>
https://github.com/b3log/b3log-solo
</url>
<description>
...
...
war/gae/pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo GAE POM.
Version: 2.0.2.
6, Apr 24
, 2014
Version: 2.0.2.
7, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.b3log
</groupId>
<artifactId>
solo-war
</artifactId>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
</parent>
<properties>
...
...
war/gae/src/main/resources/latke.properties
View file @
c3adcd30
...
...
@@ -16,7 +16,7 @@
#
# Description: B3log Latke configurations. Configures the section "Server" carefully.
# Version: 1.0.1.
3, Apr 24
, 2014
# Version: 1.0.1.
4, Oct 16
, 2014
# Author: Liang Ding
#
...
...
@@ -52,4 +52,4 @@ cache=GAE
userService
=
LOCAL
#### Static resource version ####
staticResourceVersion
=
201404261200
\ No newline at end of file
staticResourceVersion
=
201410161830
\ No newline at end of file
war/h2/pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo (H2) standard Servlet container POM.
Version: 1.0.0.
4, Apr 24
, 2014
Version: 1.0.0.
5, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.b3log
</groupId>
<artifactId>
solo-war
</artifactId>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
</parent>
<properties>
...
...
war/h2/src/main/resources/latke.properties
View file @
c3adcd30
...
...
@@ -16,7 +16,7 @@
#
# Description: B3log Latke configurations. Configures the section "Server" carefully.
# Version: 1.0.1.
3, Apr 24
, 2014
# Version: 1.0.1.
4, Oct 16
, 2014
# Author: Liang Ding
#
...
...
@@ -52,4 +52,4 @@ cache=LOCAL
userService
=
LOCAL
#### Static resource version ####
staticResourceVersion
=
201404261200
\ No newline at end of file
staticResourceVersion
=
201410161830
\ No newline at end of file
war/mysql/pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo (MySQL) standard Servlet container POM.
Version: 1.0.1.
5, Apr 24
, 2014
Version: 1.0.1.
6, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.b3log
</groupId>
<artifactId>
solo-war
</artifactId>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
</parent>
<properties>
...
...
war/mysql/src/main/resources/latke.properties
View file @
c3adcd30
...
...
@@ -16,7 +16,7 @@
#
# Description: B3log Latke configurations. Configures the section "Server" carefully.
# Version: 1.0.1.
3, Apr 24
, 2014
# Version: 1.0.1.
4, Oct 16
, 2014
# Author: Liang Ding
#
...
...
@@ -52,4 +52,4 @@ cache=LOCAL
userService
=
LOCAL
#### Static resource version ####
staticResourceVersion
=
201404261200
\ No newline at end of file
staticResourceVersion
=
201410161830
\ No newline at end of file
war/pom.xml
View file @
c3adcd30
<?xml version="1.0" encoding="UTF-8"?>
<!--
Description: B3log Solo WAR POM.
Version: 2.0.2.1
0, Jul 9
, 2014
Version: 2.0.2.1
1, Oct 16
, 2014
Author: Liang Ding
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.b3log
</groupId>
<artifactId>
solo
</artifactId>
<version>
0.6.
6
</version>
<version>
0.6.
7
</version>
</parent>
<modules>
...
...
war/src/main/webapp/WEB-INF/appengine-web.xml
View file @
c3adcd30
...
...
@@ -20,12 +20,12 @@
Description: Web deployment descriptor on GAE. See
http://code.google.com/intl/en/appengine/docs/java/config/appconfig.html
for more details.
Version: 1.0.5.
5, Jul 8
, 2014
Version: 1.0.5.
6, Oct 16
, 2014
Author: Liang Ding
-->
<appengine-web-app
xmlns=
"http://appengine.google.com/ns/1.0"
>
<application>
solo-demo
</application>
<version>
06
6
</version>
<version>
06
7
</version>
<sessions-enabled>
true
</sessions-enabled>
...
...
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