Skip to content

Commit 0a545e4

Browse files
2.* versions are not compiling classes during update fix, readme update
1 parent 19616d9 commit 0a545e4

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

export/template.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -848,8 +848,11 @@ This method transforms error </Description>
848848
do ..SendData($C(13,10))
849849
do ..SendData("35", ..ConstClientOutputLocalized)
850850
do ..SendData($C(13,10))
851-
do $system.OBJ.LoadStream(httprequest.HttpResponse.Data,"",.error,.items)
852-
if (error) {
851+
set stload = $system.OBJ.LoadStream(httprequest.HttpResponse.Data,"",.error,.items)
852+
if $$$ISERR(stload) { do ..SendData(System.Status.GetErrorText(stload)) quit $$$NOTOK }
853+
set st2 = $system.OBJ.CompileList(.items)
854+
if $$$ISERR(st2) { do ..SendData(System.Status.GetErrorText(st2)) quit $$$NOTOK }
855+
if $$$ISERR(error) {
853856
do ..SendData($C(27)_"[31mFAILED" _ $C(27) _ "[0m" _ $C(13,10))
854857
quit $$$NOTOK
855858
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"title": "Cache WEB Terminal",
44
"description": "Web-based terminal emulator for Caché administering.",
55
"author": "ZitRo",
6-
"version": "3.0.0-alpha.5",
7-
"releaseNumber": 11,
6+
"version": "3.0.0-alpha.6",
7+
"releaseNumber": 12,
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/intersystems-ru/webterminal.git"

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Caché Web Terminal
1+
# Caché Web Terminal (v3.0 alpha is available)
22
Web-based terminal application for InterSystems Caché database. Access your database from everywhere!
33

44
Visit [project page](http://intersystems-ru.github.io/webterminal) for more details.
@@ -7,7 +7,8 @@ Visit [project page](http://intersystems-ru.github.io/webterminal) for more deta
77
Download latest version from <a href="http://intersystems-ru.github.io/webterminal/#downloads">project page</a> and import XML file into %SYS namespace. Make sure that you have enabled write access to CACHELIB database during installation process. Later you can update application by typing "/update" command.
88

99
### Usage
10-
After installation, you will be able to access application at http://[host]:[port]/csp/sys/WebTerminal/index.csp. Type "/help" there to get more information. Enable authorization manually over index.csp page.
10+
After installation, you will be able to access application at `http://[host]:[port]/terminal/` (slash at the end is required).
11+
Type "/help" there to get more information.
1112

1213
### Features
1314
<table>

0 commit comments

Comments
 (0)