Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump engine.io and socket.io #232

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

Contributions of all kinds are welcome!

**Reporting Issues**

\* Please use [ZK tracker](https://tracker.zkoss.org/projects/ZK) to report issues.

\* Before creating an issue, please review open issues to avoid a duplicate.

\* If you have a question, not an issue, please discuss it in [ZK Forum](https://forum.zkoss.org/questions/).

**Contributing codes**

If you wish to contribute code, please create a corresponding issue [in tracker](https://tracker.zkoss.org/projects/ZK) and a pull request containing the ID of the issue from the tracker with your comments. Your request will be reviewed before being merged.

**License and Copyright**

This project is created and maintained by Potix Corporation.

Any contributed content is licensed under the same license and terms as the project license. By contributing your code, you certify that you created the content and agree to surrender your copyright of the contributed code to Potix.


For any inquiries and questions, please contact us at [email protected].
327 changes: 154 additions & 173 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.zkoss.theme</groupId>
<artifactId>atlantic</artifactId>
<version>9.6.3-SNAPSHOT</version>
<version>9.6.4-SNAPSHOT</version>
<properties>
<zk.version>9.6.0-Eval</zk.version>
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
Expand Down
2 changes: 1 addition & 1 deletion src/archive/metainfo/zk/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<depends>zul</depends>
<version>
<version-class>org.zkoss.theme.atlantic.Version</version-class>
<version-uid>9.6.3</version-uid>
<version-uid>9.6.4</version-uid>
</version>

<listener>
Expand Down
2 changes: 1 addition & 1 deletion src/archive/metainfo/zk/lang-addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

<version>
<version-class>org.zkoss.theme.atlantic.Version</version-class>
<version-uid>9.6.3</version-uid>
<version-uid>9.6.4</version-uid>
</version>
</language-addon>
7 changes: 4 additions & 3 deletions src/archive/web/js/zul/layout/less/borderlayout.less
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@
.z-west,
.z-east {
height: 100%; // Fixed for B30-1902533.zul
&-title {
.transform('rotate(90deg)');
.applyCSS3('transform-origin', 'left bottom');
}
}

.z-west,
Expand Down Expand Up @@ -154,9 +158,6 @@
overflow: hidden;
line-height: @iconHeight;
position: absolute;

.transform('rotate(90deg)');
.applyCSS3('transform-origin', 'left bottom');
}
}
.z-north-splitter,
Expand Down
118 changes: 61 additions & 57 deletions src/archive/web/zul/less/_reset.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,27 @@

// Display in IE6-9 and FF3
// -------------------------

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
@browserDefault: "'org.zkoss.zul.theme.browserDefault'";
@browserDefaultPrefix: e('<c:if test="${not empty c:property(@{browserDefault})}">${".z-page "}</c:if>');
@{browserDefaultPrefix}article,
@{browserDefaultPrefix}aside,
@{browserDefaultPrefix}details,
@{browserDefaultPrefix}figcaption,
@{browserDefaultPrefix}figure,
@{browserDefaultPrefix}footer,
@{browserDefaultPrefix}header,
@{browserDefaultPrefix}hgroup,
@{browserDefaultPrefix}nav,
@{browserDefaultPrefix}section {
display: block;
}

// Display block in IE6-9 and FF3
// -------------------------

audio,
canvas,
video {
@{browserDefaultPrefix}audio,
@{browserDefaultPrefix}canvas,
@{browserDefaultPrefix}video {
display: inline-block;
*display: inline;
*zoom: 1;
Expand All @@ -34,51 +35,53 @@ video {
// Prevents modern browsers from displaying 'audio' without controls
// -------------------------

audio:not([controls]) {
display: none;
@{browserDefaultPrefix}audio:not([controls]) {
display: none;
}

// Base settings
// -------------------------

e('<c:if test="${empty c:property(@{browserDefault})}">');
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
e('</c:if>');
// Focus states
a:focus {
@{browserDefaultPrefix}a:focus {
outline: none;
// Disable for Potix on 5/29/2013
//.tab-focus();
}
// Hover & Active
a:hover,
a:active {
@{browserDefaultPrefix}a:hover,
@{browserDefaultPrefix}a:active {
outline: 0;
}

// Prevents sub and sup affecting line-height in all browsers
// -------------------------

sub,
sup {
@{browserDefaultPrefix}sub,
@{browserDefaultPrefix}sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
@{browserDefaultPrefix}sup {
top: -0.5em;
}
sub {
@{browserDefaultPrefix}sub {
bottom: -0.25em;
}

// Img border in a's and image quality
// -------------------------

img {
@{browserDefaultPrefix}img {
/* Responsive images (ensure images don't scale beyond their parents) */

// Potix: this style will make img invisible in ie8
Expand All @@ -92,61 +95,62 @@ img {
}

// Prevent max-width from affecting Google Maps
#map_canvas img,
.google-maps img {
.google-maps img,
#map_canvas img {
max-width: none;
}

// Forms
// -------------------------

// Font size in all browsers, margin changes, misc consistency
button,
input,
select,
textarea {
@{browserDefaultPrefix}button,
@{browserDefaultPrefix}input,
@{browserDefaultPrefix}select,
@{browserDefaultPrefix}textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
}
button,
input {
@{browserDefaultPrefix}button,
@{browserDefaultPrefix}input {
*overflow: visible; // Inner spacing ie IE6/7
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
}
button::-moz-focus-inner,
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
@{browserDefaultPrefix}label,
@{browserDefaultPrefix}select,
@{browserDefaultPrefix}button,
@{browserDefaultPrefix}input[type="button"],
@{browserDefaultPrefix}input[type="reset"],
@{browserDefaultPrefix}input[type="submit"],
@{browserDefaultPrefix}input[type="radio"],
@{browserDefaultPrefix}input[type="checkbox"] {
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
// Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
@{browserDefaultPrefix}button,
html @{browserDefaultPrefix}input[type="button"],
@{browserDefaultPrefix}input[type="reset"],
@{browserDefaultPrefix}input[type="submit"] {
-webkit-appearance: button; // Corrects inability to style clickable `input` types in iOS.
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
@{browserDefaultPrefix}button::-moz-focus-inner,
@{browserDefaultPrefix}input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
padding: 0;
border: 0;
}
button,
html input[type="button"], // Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; // Corrects inability to style clickable `input` types in iOS.
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
input[type="search"] { // Appearance in Safari/Chrome
@{browserDefaultPrefix}input[type="search"] { // Appearance in Safari/Chrome
// Potix: using zk mixins
//.box-sizing(content-box);
.applyCSS3('box-sizing', 'content-box');
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
@{browserDefaultPrefix}input[type="search"]::-webkit-search-decoration,
@{browserDefaultPrefix}input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
}
textarea {
@{browserDefaultPrefix}textarea {
overflow: auto; // Remove vertical scrollbar in IE6-9
vertical-align: top; // Readability and alignment cross-browser
}
Expand Down Expand Up @@ -199,7 +203,7 @@ textarea {
}

img {
// Potix: this style will make img invisible in ie8
// Potix: this style will make img invisible in ie8
// max-width: 100% !important;
}

Expand Down
25 changes: 13 additions & 12 deletions src/archive/web/zul/less/norm.less
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
@import "~./zul/less/_header.less";
@import "~./zul/less/_reset.less";

e('<c:if test="${empty c:property(@{browserDefault})}">');
html, body {
height: 100%;
}
e('</c:if>');

// affect ZK component only
[class^="z-"],
Expand All @@ -17,33 +19,33 @@ html, body {
}

// Reset
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
@{browserDefaultPrefix}input[type=number]::-webkit-inner-spin-button,
@{browserDefaultPrefix}input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input,
input:focus,
textarea,
textarea:focus {
@{browserDefaultPrefix}input,
@{browserDefaultPrefix}input:focus,
@{browserDefaultPrefix}textarea,
@{browserDefaultPrefix}textarea:focus {
-webkit-appearance: none;
-moz-appearance: none;
outline: none;
-webkit-user-select: text;
}

*:focus {
@{browserDefaultPrefix}*:focus {
outline: none;
}

fieldset {
@{browserDefaultPrefix}fieldset {
border: 1px solid @baseBorderColor;
.borderRadius(0);
margin: 0 2px;
padding: 0;
}

legend {
@{browserDefaultPrefix}legend {
border: 0;
padding: 0;
}
Expand All @@ -53,7 +55,6 @@ legend {
border: 0;
}
}
@browserDefault: "'org.zkoss.zul.theme.browserDefault'";
e('<c:if test="${empty c:property(@{browserDefault})}">');
body {
margin: 0;
Expand Down Expand Up @@ -152,12 +153,12 @@ e('</c:if>');
}

//radio, radiogroup
input[type="radio"] {
@{browserDefaultPrefix}input[type="radio"] {
-webkit-appearance: radio;
-moz-appearance: radio;
margin: 0 2px 4px;
}
input[type="checkbox"] {
@{browserDefaultPrefix}input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
margin: 0 2px 4px;
Expand Down
2 changes: 1 addition & 1 deletion src/org/zkoss/theme/atlantic/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
public class Version {
/** Returns the version UID.
*/
public static final String UID = "9.6.3";
public static final String UID = "9.6.4";
}
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
9.0.0
9.6.3
9.6.4
11 changes: 11 additions & 0 deletions zkdoc/release-note
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
Atlantic 9.6.4
* Features:

* Bugs:
ZK-5061: ZK Embedded loading default ZK styles causes style changes to the outer page

* Upgrade Notes:

--------
Atlantic 9.6.3
Oct 25, 2022
* Features:

* Bugs:
ZK-5253: title of borderlayout north/south shouldn't rotate 90 degrees

* Upgrade Notes:

Expand Down