go to post Dmitry Maslennikov · Jun 21, 2019 I don't see any realation between license capacity and how you describe you use it. Is it possible to get some reproducible excerpt which would prove what you said?
go to post Dmitry Maslennikov · Jun 16, 2019 GitHub sponsoring is still in Beta, and I'm on a waitlist. But GitHub published recommendation form, so, you can promote anybody to join the GitHub sponsoring program faster.
go to post Dmitry Maslennikov · Jun 12, 2019 One more interesting feature from GitHub, which now works with ObjectScript tooIt's trending for repositories and developers with filter by language.
go to post Dmitry Maslennikov · Jun 10, 2019 Looks like it needs some time when the search will give expected results.For example search by me, returns only one repository with code.And global search already gives 43 files.
go to post Dmitry Maslennikov · Jun 10, 2019 I have published a little bit more details. And there you can find info, how to count and highlight the source of MAC, INT, INC files as well.
go to post Dmitry Maslennikov · Jun 7, 2019 I would try two options:Use descendent abstract class, which will redefine some XML related parameters, as needed.SImplify XML Export, and use one or more XSLT files, so, I could transform basic view to some another one or more.
go to post Dmitry Maslennikov · Jun 6, 2019 Quite interesting results, Notepad++ got the same place with VSCode. Is anybody can explain what are you doing there?And somebody checked online editor, could you share the link, please?
go to post Dmitry Maslennikov · Jun 5, 2019 I've used gzip compression many years ago. So, don't see any problems.Does it really matter that documentation mention 32-bit library? Don't think, so. Apache on windows as I know still only 32 bit, that's why it needs a 32-bit version of zlib.
go to post Dmitry Maslennikov · Jun 5, 2019 What exactly do you want to achieve? InterSystems products already support compression for any web implementations.You can switch it on in CSP Gateway settings, and on a server side in session. Look at the documentation.
go to post Dmitry Maslennikov · Jun 3, 2019 Thanks a lot. I've changed to just PayPal instead of Yandex.
go to post Dmitry Maslennikov · May 31, 2019 I think it would be more efficient if you look at a series of articles about mapping globals to classes. So, you'll get some knowledge about how it can be configured. It is varied by different storage strategies.Next, as Robert mentioned, you have to rebuild your indices. Look at the documentation for the details, how to do it.
go to post Dmitry Maslennikov · May 31, 2019 Looks like you have a custom SQL Storage. And in this case, you have to have manually defined storage for indexes as well. And only after that, it will build indices.
go to post Dmitry Maslennikov · May 30, 2019 ZEN page means that it works somewhere outside of your server. $zf calls some executable right on the server, and with some limitations.So, short answer NO, you can't do it.It would be better if you would explain why you need it. So, we may help to find you the right way or more to solve it.
go to post Dmitry Maslennikov · May 29, 2019 There are some videos about Atelier in youtube's playlistBut I would not recommend Atelier nowadays. I would better recommend VSCode extension for ObjectScript, which I develop.Unfortunately, I don't have such good tutorial videos on how to work with VSCode, yet. But maybe this video from @Evgeny Shvarov will help you.
go to post Dmitry Maslennikov · May 29, 2019 If you have only one server for multiple developers, it will be not so easy to make it work very good.The best way is to use own server by each developer. This tool exports locally to the server, but the developer should have access to those place from their machine. Why do not move to Atelier or VSCode? There will much easier to organize work with git
go to post Dmitry Maslennikov · May 21, 2019 $system.CLS.Property accepts property by name as well, so you don't need loop
go to post Dmitry Maslennikov · May 20, 2019 This is only example and yes, for client, where community.intersystems.com is a server for request to. To simplify I just create ssl config with server's name
go to post Dmitry Maslennikov · May 20, 2019 ClassMethod GetSSLConfiguration(host) As %String { NEW $NAMESPACE SET $NAMESPACE = "%SYS" IF '##class(Security.SSLConfigs).Exists(host) { DO ##class(Security.SSLConfigs).Create(host) } QUIT host } Set tRequest = ##class(%Net.HttpRequest).%New() Set tRequest.Server = "community.intersystems.com" Set tRequest.Https = 1 Set tRequest.SSLConfiguration = ..GetSSLConfiguration(tRequest.Server) ....