File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -647,8 +647,10 @@ Sends to client new namespace if last was changed</Description>
647
647
<Description >
648
648
Starts clear I/O mode</Description >
649
649
<Implementation ><![CDATA[
650
+ write *-3
650
651
do ##class(%Device).ReDirectIO($$$YES)
651
652
do ..Write(..ConstClientEnterClearIO)
653
+ write *-3
652
654
]]> </Implementation >
653
655
</Method >
654
656
@@ -659,6 +661,7 @@ Ends clear I/O mode</Description>
659
661
write *-3
660
662
do ##class(%Device).ReDirectIO($$$NO)
661
663
do ..SendData("exit",..ConstClientExitClearIO)
664
+ write *-3
662
665
]]> </Implementation >
663
666
</Method >
664
667
Original file line number Diff line number Diff line change 6
6
*/
7
7
var application = new function() {
8
8
9
- var version = "0.9.7 beta";
9
+ var version = "0.9.7.1 beta";
10
10
this.debug = false; // remove for release
11
+ this.debugUrlPart = "127.0.0.1:57772"; // in-debug mode
11
12
12
13
this.browser = "gc";
13
14
this.authorizationKey = "";
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ var server = new function() {
68
68
this.getDefaultServerURL = function() {
69
69
var part = document.URL.split("/")[2]; // domain[:port]
70
70
71
- if (application.debug) part = "172.27.25.133:57772" ;
71
+ if (application.debug) part = application.debugUrlPart ;
72
72
73
73
return "ws://" + part + "/" + serverRoot.replace(/%/,"%25");
74
74
};
Original file line number Diff line number Diff line change @@ -260,12 +260,6 @@ var terminal = new function() {
260
260
CREATE_OUTPUT = false;
261
261
} // exit clear IO
262
262
263
- if (CREATE_OUTPUT) {
264
- var obj = terminal.output.forceWrite("",true);
265
- terminal.output.setTarget(obj);
266
- CREATE_OUTPUT = false;
267
- }
268
-
269
263
data = parser.clearHTML(data);
270
264
271
265
switch (terminal.mode) {
@@ -288,6 +282,12 @@ var terminal = new function() {
288
282
default: terminal.processor.write("Unknown terminal mode " + terminal.mode + ": data received:\n" + data);
289
283
}
290
284
285
+ if (CREATE_OUTPUT) {
286
+ var obj = terminal.output.forceWrite("",true);
287
+ terminal.output.setTarget(obj);
288
+ CREATE_OUTPUT = false;
289
+ }
290
+
291
291
};
292
292
293
293
/**
You can’t perform that action at this time.
0 commit comments