Skip to content

Commit 50221ed

Browse files
Merge pull request #91 from webfirmframework/dev-12.x.x
wffweb-12.0.0 release changes
2 parents 843018d + 2104e62 commit 50221ed

File tree

3 files changed

+6
-38
lines changed

3 files changed

+6
-38
lines changed

README.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://img.shields.io/badge/build-passing-greensvg?style=flat)](https://app.circleci.com/pipelines/github/webfirmframework/wff?branch=master&filter=all)
22
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/410601e16dc54b0a973c03845ad790c2)](https://www.codacy.com/app/webfirm-framework/wff?utm_source=github.com&utm_medium=referral&utm_content=webfirmframework/wff&utm_campaign=Badge_Grade)
33
[![Stackoverflow](https://img.shields.io/badge/stackoverflow-wffweb-orange.svg)](https://stackoverflow.com/questions/tagged/wffweb)
4-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.webfirmframework/wffweb/badge.svg)](https://search.maven.org/#artifactdetails%7Ccom.webfirmframework%7Cwffweb%7C12.0.0-beta.12%7Cjar)
4+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.webfirmframework/wffweb/badge.svg)](https://search.maven.org/#artifactdetails%7Ccom.webfirmframework%7Cwffweb%7C12.0.0%7Cjar)
55
[![javadoc](https://img.shields.io/:wffweb-javadoc-blue.svg)](https://webfirmframework.github.io/wffweb/wffweb-javadoc)
66
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
77
[![twitter](https://img.shields.io/badge/[email protected])](https://webfirmframework.com/twitter)
@@ -46,38 +46,6 @@ rootTag.setPrependDocType(true);
4646
System.out.println(rootTag.toHtmlString(true));
4747
~~~
4848

49-
or the same in another coding style
50-
~~~
51-
Html html = new Html(null) {
52-
53-
Head head = new Head(this);
54-
55-
Body body = new Body(this) {
56-
57-
new NoTag(this, "Hello World");
58-
59-
};
60-
61-
};
62-
// prepends the doc type <!DOCTYPE html>
63-
html.setPrependDocType(true);
64-
System.out.println(html.toHtmlString(true));
65-
~~~
66-
67-
or the same in another coding style
68-
~~~
69-
Html html = new Html(null) {{
70-
new Head(this);
71-
72-
new Body(this) {{
73-
new NoTag(this, "Hello World");
74-
}};
75-
}};
76-
// prepends the doc type <!DOCTYPE html>
77-
html.setPrependDocType(true);
78-
System.out.println(html.toHtmlString(true));
79-
~~~
80-
8149
or the same in few lines
8250

8351
~~~

wffweb/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.webfirmframework</groupId>
66
<artifactId>wffweb</artifactId>
7-
<version>12.0.0-beta.12</version>
7+
<version>12.0.0</version>
88

99
<properties>
1010
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
@@ -49,7 +49,7 @@
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-release-plugin</artifactId>
52-
<version>3.0.0</version>
52+
<version>3.0.1</version>
5353
<configuration>
5454
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
5555
</configuration>
@@ -102,7 +102,7 @@
102102
<plugin>
103103
<groupId>org.apache.maven.plugins</groupId>
104104
<artifactId>maven-javadoc-plugin</artifactId>
105-
<version>3.5.0</version>
105+
<version>3.6.0</version>
106106
<executions>
107107
<execution>
108108
<id>attach-javadocs</id>

wffweb/src/main/java/com/webfirmframework/wffweb/server/page/BrowserPageContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ private void runGCTasksForBrowserPage() {
583583
* {@code maxIdleTimeout} of websocket session. It should
584584
* be greater than the minInterval given in the
585585
* {@code HeartbeatManager}. It should be equal to the
586-
* http session timeout value (maxInvactiveInterval) in
586+
* http session timeout value (maxInactiveInterval) in
587587
* its milliseconds if the session tracking is enabled and
588588
* the app depends on the session tracking.
589589
* @since 3.0.16
@@ -607,7 +607,7 @@ public void enableAutoClean(final long maxIdleTimeout) {
607607
* {@code maxIdleTimeout} of websocket session. It should
608608
* be greater than the minInterval given in the
609609
* {@code HeartbeatManager}. It should be equal to the
610-
* http session timeout value (maxInvactiveInterval) in
610+
* http session timeout value (maxInactiveInterval) in
611611
* its milliseconds if the session tracking is enabled and
612612
* the app depends on the session tracking.
613613
* @param executor the executor object from which the thread will be

0 commit comments

Comments
 (0)