Search found 1701 matches

by Ivan Denisov
Wed Mar 09, 2022 7:37 am
Forum: Infrastructure
Topic: VRS support terminated by hosting provider
Replies: 7
Views: 7601

Re: VRS support terminated by hosting provider

Upgraded Redmine to version 3.4.13, now it works with current Debian 11 and Ruby ruby 2.5.8
Next milestone is to check BlackBox build pipeline :-)
by Ivan Denisov
Tue Aug 18, 2020 1:07 am
Forum: Features
Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
Replies: 4
Views: 12670

Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported

Yes!
Install CPfront, then run commands from Build/build.odc file.
by Ivan Denisov
Sun Aug 16, 2020 10:35 am
Forum: Features
Topic: issue-#210 SYSTEM.ADR(ProcedureType) should be supported
Replies: 4
Views: 12670

Re: issue-#210 SYSTEM.ADR(ProcedureType) should be supported

This is used in armBox project
https://community.blackboxframework.org ... f=29&t=252

So Build/build.odc should executed well with CPfront installed

CPfront uses front-end of BlackBox compiler.
by Ivan Denisov
Sat Jul 18, 2020 1:51 pm
Forum: Bugs
Topic: about SYSTEM.ADR(BasicType)
Replies: 11
Views: 10427

Re: about SYSTEM.ADR(BasicType)

The fix of luowy allowing to get descriptor of type.

This is important for such case

Code: Select all

MODULE Test;

IMPORT SYSTEM;

TYPE
	Command* = PROCEDURE;
	
VAR
	adr: INTEGER;
	
BEGIN
	adr := SYSTEM.ADR(Command)
	
END Test.
This is relevant for some lowlevel project.
by Ivan Denisov
Sat Jun 06, 2020 3:03 pm
Forum: Bugs
Topic: Trap 25 on start
Replies: 11
Views: 7290

Re: Trap 25 on start

As reported by Mathieu Westerweele this problem also took place. I suggested to add prt = NIL just after selecting current printer in Documents.StdDocument.SetView. IF Printers.dir # NIL THEN prt := Printers.dir.Current() ELSE prt := NIL END; prt = NIL; (* <----------- *) IF prt # NIL THEN prt.SetOr...
by Ivan Denisov
Wed Nov 06, 2019 6:36 pm
Forum: Resolved (Infrastructure)
Topic: issue-#203 Release 1.7.2
Replies: 19
Views: 15689

Re: issue-#203 Release 1.7.2

Unfortunately I don't have working certificate now.
by Ivan Denisov
Fri Oct 25, 2019 5:51 am
Forum: Resolved (Infrastructure)
Topic: issue-#203 Release 1.7.2
Replies: 19
Views: 15689

Re: issue-#203 Release 1.7.2

Josef, I think that fixing the dates in the changelog in DevDebug and StdDebug even does not require voting. You can change it with last commit, when you will change the version file.
by Ivan Denisov
Fri Sep 20, 2019 2:30 am
Forum: Infrastructure
Topic: service interruption
Replies: 5
Views: 5355

Re: service interruption

Certificates extended until 19th Dec. Also cleaned logs for free space in the server. My small contribution for the Center community ;)
by Ivan Denisov
Thu Aug 08, 2019 5:35 pm
Forum: Bugs
Topic: Slow printing speed
Replies: 4
Views: 4815

Re: Slow printing speed

Here the trouble can be, that TextModel.Model contains many "peaces". The space is ASCII "Piece" and ● is unicode "LPiece". So TextModels chunk the data with many such peaces and precess them separately. Some people think, that TextModels should be redesigned for realit...