File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
JDK Version:
2
- openjdk 22 .0.1 2024 -04-16
3
- OpenJDK Runtime Environment (build 22 .0.1+8-16 )
4
- OpenJDK 64-Bit Server VM (build 22 .0.1+8-16 , mixed mode, sharing)
2
+ openjdk 24 .0.1 2025 -04-15
3
+ OpenJDK Runtime Environment (build 24 .0.1+9-30 )
4
+ OpenJDK 64-Bit Server VM (build 24 .0.1+9-30 , mixed mode, sharing)
5
5
6
6
Compilation Flags:
7
7
--release 11
@@ -10,7 +10,10 @@ Runtime Dependencies:
10
10
addonsupport-api-addon-1.10.0
11
11
alarmmanager-api-addon-1.10.0
12
12
bacnet-api-core-1.10.007-20240227.1003r
13
+ datatable-api-addon-1.10.0
13
14
directaccess-api-addon-1.10.0
15
+ logicbuilder-api-addon-1.10.0
16
+ semantics-api-addon-1.10.0
14
17
tomcat-embed-core-9.0.87
15
18
webaccess-api-addon-1.10.0
16
19
xdatabase-api-addon-1.10.0
Original file line number Diff line number Diff line change 1
1
<extension version =" 1" >
2
2
<name >CLI_Web_Terminal</name >
3
3
<description >Web interface to access the local shell environment of the WebCTRL server.</description >
4
- <version >0.1.1 </version >
4
+ <version >0.1.2 </version >
5
5
<vendor >Automatic Controls Equipment Systems, Inc.</vendor >
6
6
<system-menu-provider >aces.webctrl.cli.web.SystemMenuEditor</system-menu-provider >
7
7
</extension >
Original file line number Diff line number Diff line change 103
103
const req = new XMLHttpRequest ( ) ;
104
104
req . open ( "POST" , "__PREFIX__/index?type=get" ) ;
105
105
req . setRequestHeader ( "content-type" , "application/x-www-form-urlencoded" ) ;
106
- req . timeout = 900000 ;
106
+ req . timeout = 60000 ;
107
107
req . onreadystatechange = function ( ) {
108
108
if ( this . readyState === 4 ) {
109
109
if ( this . status === 200 ) {
113
113
setTimeout ( retrieve , 0 ) ;
114
114
} else if ( this . status == 0 ) {
115
115
setStatus ( "red" , "Request timed out." ) ;
116
+ } else if ( this . status == 504 ) {
117
+ setTimeout ( retrieve , 0 ) ;
116
118
} else {
117
119
setStatus ( "red" , "HTTP Error " + this . status ) ;
118
120
}
187
189
}
188
190
}
189
191
} ) ;
192
+ cmd . focus ( ) ;
190
193
window . onbeforeunload = ( ) => {
191
194
const req = new XMLHttpRequest ( ) ;
192
195
req . open ( "POST" , "__PREFIX__/index?type=kill" ) ;
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class MainPage extends ServletBase {
34
34
}
35
35
case "get" :{
36
36
try {
37
- if (p .waitForContent (System .currentTimeMillis ()+700000L )){
37
+ if (p .waitForContent (System .currentTimeMillis ()+50000L )){
38
38
if (Initializer .stop ){
39
39
res .sendError (500 , "Add-on is shutting down." );
40
40
return ;
You can’t perform that action at this time.
0 commit comments